Search results

  1. M

    changing the cursor with event?

    thanks.. didnt think it would be something that minor!
  2. M

    changing the cursor with event?

    is it possible to change the cursor depending on a users actions? i want the cursor to change when a user hovers over a label - as it would do if it was a hyperlink? any help appreciated
  3. M

    adding date from a form to a table ( or two )

    give this a whirl, just add on to the end of your current code for cmdsave Set rs = db.OpenRecordset("TBLEleSesTrk", dbOpenTable) With rs .AddNew .Fields("UserID") = vbasuid .Fields("PackRef") = vbpackref .Update End With rs.Close Set rs = Nothing
  4. M

    check value against table?

    ive had a look in help and it says that dlookup returns a value to the form.. i just want it to check the value in my textbox (ShipNo) against the value in the query (BDPE_LOV_Data) and the field (ROUTE_ID) i tried putting this into the control of the text box ...
  5. M

    check value against table?

    is it possible to check a value entered in a text box to see if it exists in a specific table? all help appreciated..
  6. M

    Populate ComboBox on Form Load

    is there a way to pre load all the records even before you start playing with the combo box? my users are quite impatient people! :) i dont want the user to be waiting for all the records to load in the combo box but for the combobox to be ready to be selected.
  7. M

    Count ComboBox records

    thats perfect mate. thanks alot
  8. M

    Count ComboBox records

    anyone know how to do a count of the records in a combo box. need the count in a field on the form. not in a query.
  9. M

    Populate ComboBox on Form Load

    i need to populate a combobox on form load as it holds a lot of records. the problem is that when the user clicks the combobox to select a record it takes too long to populate the combo with values. any help appreciated..
  10. M

    Filtering?

    Is there a command button that can be created to filter by form? i had a look in the wizard but its not there.. or even the vba code would be useful thanks
  11. M

    Lock some fields in a table

    is it possible to some lock fields in a table. this is going to be a simple datasheet which users can enter values in some fields but some are already populated and need to be locked... any help is appreciated..
  12. M

    Saving record but including Fields in Subform

    This might be a stupid question.. but how do i do that?
  13. M

    Saving record but including Fields in Subform

    structure: Form and sub form - need to include firlds from both the form and subform in the save. Have a tabe which includes all the fields i want to save and are coded to save. .Fields("Country") = Me.txtCountry .Fields("Shipment #") = Me.cboShip .Fields("PBL") =...
  14. M

    input mask for general date

    I need to have it masked for validation... i have created an input mask on a field which is formatted as general date. on form load the date and time is shown ( Now() ) The mask i have used is 99/99/00\ 09:00:00 it works in that it lets me enter a date and time but it always gives an error...
  15. M

    Story

    dont explode when
  16. M

    Help! Masking Problem

    i have created an input mask on a field which is formatted as general date. on form load the date and time is shown ( Now() ) The mask i have used is 99/99/00\ 09:00:00 it works in that it lets me enter a date and time but it always gives an error. even if the value is a valid date and time...
  17. M

    input mask for general date

    does anyone know the correct code for an input mask for the general date. i.e. 10/08/04 11:54:45 (dd/mm/yy HH:MM:SS)
  18. M

    ODBC - Tough one!

    thanks to both of you! much appreciated guys
  19. M

    ODBC - Tough one!

    (making link active again)
  20. M

    populating form from query

    i have a query linked to a selection box on a form, which selects specific records and shows them ona subform. is there anyway to show all the records first and then let the user narrow this down thorugh the combo boX?
Back
Top Bottom