Hello,
I am a VBA neophyte learning on the job. I have two userforms that I am programming for a spreadsheet. Each user form uses many of the same fields, and so in the code for each userform I have to set the fields up in the same way, i.e. below
txtTodayDate.Text = Format(Now(), "m/d/yyyy")
cboDischargeType.AddItem "Administrative"
I have a number of these items, and to streamline I thought that it might be best to put the code in its own module so that I could have the userform_initialize in each userform call that module to set the fields - rather than needing duplicate code in each userform. After testing and getting an object error, I realized that outside of the userform_initialize, I need to prefix each field with the name of the userform, like so:
frmInput.txtTodayDate...
frmInput.cboDischargeType...
Is it possible, using a global variable and a With...End command, to run this code so that fields are set for the proper userform, therefore using the same field settings for both userforms? If so, how do I structure the With...End? In summary, what I envision is something as follows:
Calling module code
Sets global variable formtype "iform" or "eform"
Calls userform
Userform code
Calls field setup module
Field setup module
If iform
Sets prefix variable to "frmInput"
Else
Sets prefix variable to "frmEdit"
End If
Runs With...End setting fields using proper form (frmInput or frmEdit)
(I don't know how to structure that. Would it be "With prefix...field setting commands...End"?
Am I making this too complex? Is With...End not appropriate? My goal is for a more streamlined product.
Thank you in advance for any assistance.
I am a VBA neophyte learning on the job. I have two userforms that I am programming for a spreadsheet. Each user form uses many of the same fields, and so in the code for each userform I have to set the fields up in the same way, i.e. below
txtTodayDate.Text = Format(Now(), "m/d/yyyy")
cboDischargeType.AddItem "Administrative"
I have a number of these items, and to streamline I thought that it might be best to put the code in its own module so that I could have the userform_initialize in each userform call that module to set the fields - rather than needing duplicate code in each userform. After testing and getting an object error, I realized that outside of the userform_initialize, I need to prefix each field with the name of the userform, like so:
frmInput.txtTodayDate...
frmInput.cboDischargeType...
Is it possible, using a global variable and a With...End command, to run this code so that fields are set for the proper userform, therefore using the same field settings for both userforms? If so, how do I structure the With...End? In summary, what I envision is something as follows:
Calling module code
Sets global variable formtype "iform" or "eform"
Calls userform
Userform code
Calls field setup module
Field setup module
If iform
Sets prefix variable to "frmInput"
Else
Sets prefix variable to "frmEdit"
End If
Runs With...End setting fields using proper form (frmInput or frmEdit)
(I don't know how to structure that. Would it be "With prefix...field setting commands...End"?
Am I making this too complex? Is With...End not appropriate? My goal is for a more streamlined product.
Thank you in advance for any assistance.