Search results

  1. seth_belgium

    Setting table field default property in VBA

    Create a new form based on your Parameters-table. Lets call it frmParams. The form that contains the header and the integer-value fields, we'll call that one frmScheme. In the OnLoad() property of frmScheme, use this code: DoCmd.OpenForm "frmParams" Me.txtHeader.Value =...
  2. seth_belgium

    Macros to VBA

    Normally Access should have created a Function in the module. You can refer to that function from a form just by 'calling' it... For example: Module1 contains this '------------------------------------------------------------ ' Macro1 '...
  3. seth_belgium

    Can't get listbox link to form right

    I'd still try to do this, so you can be sure that the value returned by "Me.lstServices.Column(2)" is the right one. Try this: Msgbox Me.lstServices.Column(2) It should return you the value of the third column in your list (I have tested this). Also remember that (0) = column 1, (1) = column 2...
Back
Top Bottom