Search results

  1. S

    Reports

    format if you aren't already, and if the printer can deal with it (i don't know much about printers (!)), i'd use landscape format paper. Trying to squeeze fonts into an area is never advisable. alternatively.... we have reporting program that displays records over two lines rather than...
  2. S

    Synchronize a combo-box and a text box

    these threads are useful things You live and learn.... :)
  3. S

    Synchronize a combo-box and a text box

    combo box / date box Hi Bizkaiko, I use two possible approaches in this situation: 1) Use the DLookup function on the afterupdate event of the combo box e.g. cmb_ordernumber_afterupdate txt_date.value = DLookup("OrderDate","Orders","OrderNumber = '" & cmb_ordernumber.value & "'") 2) Put the...
  4. S

    Select record to display on form

    If your users will only be finding records with the combo boxes (rather than scrolling through records using the navigation buttons) I would have the details for each record as a seperate form rather than a subform. In this way the user could: 1) find the record they want with the combo box 2)...
  5. S

    Form accidentally moving to a new record

    more mouse wheel stuff I realise the mouse issue has probably long gone but I've been using the following method to prevent users moving records with a mouse wheel. This method takes advantage of the fact that when a form's record is advanced by the mouse wheel the form_current event is...
Back
Top Bottom