Search results

  1. T

    Compile Error with Left(string) or Right(string)

    OK, I have the following code Dim joblen Dim jobroot As String Dim activeRoot As String Dim lclRoot As String joblen = Len(Me.Enhanced) joblen = joblen - 11 activeRoot = Me.Enhanced activeRoot = Left(activeRoot, joblen) Sometimes when the code is...
  2. T

    WebBrowser Control

    I need to see all the files in a given folder at all times. I need to be able to drag the files to an email as an attachmanet or other application for processing also. I just was hoping for a way to know which file has been selected in the control for special processing from a command button. I...
  3. T

    WebBrowser Control

    I am using a web browser activex control on a form to display the files and folders of a given path like windows explorer. Is there a way to get the filename of the the user selected file in the control? Thanks in Advance for any help.
  4. T

    Search Lookup

    Yes, I have a textbox where a user can enter some text and then search a list of fields for that text. The value of the textbox sets the variable. DPM1 is one of the fields I want to search. It is a combobox with 4 columns. I want the search to be limited to column 1 whioch is a persons name...
  5. T

    Search Lookup

    The Combobox is named DPM1 which is a lookup field in the table which is the datasource for the form.
  6. T

    Search Lookup

    I have a combobox with the which is a lookup and the rowsource is as follows: SELECT [Contacts Extended].ID, [Contacts Extended].[Contact Name] , [Contacts Extended].[Business Phone], [Contacts Extended].[E-Mail Address]FROM [Contacts Extended] WHERE (([Contacts Extended]![Category]="DPM"))...
Back
Top Bottom