Search results

  1. A

    How to add a module to a form when you use the create form method

    ok i have a lot of forms with just 2 fields in i want to createte the forms as and when they are need hence the create form clsForm Resize Module is to try and resize the controls through Tag Proptey have not quite got that working yet the code goes where it should be but it apears not to...
  2. A

    How to add a module to a form when you use the create form method

    OK FOUND A SOULTION HERE IT IS Dim db As DAO.Database Dim frm As Form Dim mdl As Module Dim strFormOpenCode As String Set db = CurrentDb Set frm = Application.CreateForm Set mdl = Forms!Form1.Module strFormOpenCode = "Option Explicit" & vbCrLf & "Dim frmResize As New clsFormResize" &...
  3. A

    How to add a module to a form when you use the create form method

    thanks pat yes not being sold for any commercial purposes thanks andt
  4. A

    How to add a module to a form when you use the create form method

    i am trying to add an module to a form when i press a button here is my code so far Dim db As DAO.Database Dim frm As Form Dim mdl As Module Dim lngReturn As Long Dim ctr1 As Control Dim ctr2 As Control Dim frmResize As New clsFormResize Set frmResize = New clsFormResize Set...
Top Bottom