Search results

  1. naygl

    Win98 does'nt like my db

    Win98 doesn't like my db My Access 2000 db is playing up on computers that have windows 98 installed. Combo boxes are not able to find records. In the after update event I have code like this: Dim rs As Object Set rs = Me.Recordset.Clone rs.FindFirst "[JobID] = " & str(Me![CmbJobID])...
  2. naygl

    count number of characters while they are being typed

    I have a form which allows the user to enter info into various controls and then send all that data, as a text message, to a cell phone. I need to limit the number of characters to be sent. I want to be able to change the colour of the text to red, in whatever control is being used at the time...
  3. naygl

    List Box

    I have a list box with three columns. I want to change the data in the third column by double clicking on a row then choosing 'yes' in a message box that pops up. It's a yes/no field. So far I have: If MsgBox("Do you wish to change Technician Status for " + Me.List19.Column(1), vbYesNo) =...
  4. naygl

    esc key

    When I press the escape key I want it to do it's noramal thing then set focus on a control. How would I do this?
  5. naygl

    Filters

    I have a subform on my main form which is in datasheet view. It is not linked to my main form but whenever I filter the datasheet another subform which is linked mainform (which is data entry), displays the first record of each customer when I select the customer number. The main form is set...
Back
Top Bottom