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...
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" &...
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...