Search results

  1. B

    Problem formatting telephonenumber

    Grumble..... :mad: I have a multiple select list in which I select a line that includes a telephonenumber. This telephone number is displayed okay here, like 06######## (# is a digit) Dim As String = telephoneNumber telephoneNumber = Me.List0.Column(1, varItm) later on I write this to a...
  2. B

    Filtering a number from a String

    Hello friends, My problem is that I have a string with text and a single number in it. The size of this number can variate in number of digits but is always located on the right side of the string. I want to retrieve this number out of this string. Are there any nifty functions for this ...
  3. B

    Working with a List

    Hello VBA Wiseguys ;-) I'm not too familiar with VBA programming (I do have Java experience) and I would like to do the following: From a multiple select listbox I want the selected rows to be exported in a Excel document. Furthermore I want to keep track of the rows that I have exported...
  4. B

    Problems on joining result from 2 queries

    Hello, I have two queries generating the following information: Query 1: bank relation bank Query 2: relation relation bank1 bank2 I want to see relation.relation, bank.relation, bank.bank where bank1 or bank2 matches bank.bank I try to run the following query: select relation.relation...
  5. B

    Delete with inner join

    Hi, I tried to search on google for this but I kept on having problems to get it working so I hope I can get some help here. Simple question, I got 2 tables RESULTTABEL and DELETETABEL I want every row to be deleted in RESULTTABEL that matches with DELETETABEL on 2 fields (RESULTTABEL.Hks ->...
Back
Top Bottom