S
singeredel
I am trying to set initial variables and bring up the Userform in Project
"Julie" from a Project named "Variables" because these initial variables
change regularly, and if I edit the variables in frmCreate_Julie_Report
manually using the VB Editor and then save the Project, I lose my digital
certificate. I attempted the following code, but I get a compile error
"method or data not found". The Variables template has been placed in the
Start folder so that it is a global template.
With Julie.frmCreate_Julie_Report
.txtReportDateMonth.Text = "02"
.txtReportDateDay.Text = "17"
.txtReportDateYear.Text = "2005"
.txtDictationDateMonth.Text = "02"
.txtDictationDateDay.Text = "17"
.txtDictationDateYear.Text = "2005"
.txtBillingPeriod.Text = "021605-022805"
.Show
End With
What is the code needed to access the Userform in the Julie Project from
another project? Are Public variables necessary at all as well?
"Julie" from a Project named "Variables" because these initial variables
change regularly, and if I edit the variables in frmCreate_Julie_Report
manually using the VB Editor and then save the Project, I lose my digital
certificate. I attempted the following code, but I get a compile error
"method or data not found". The Variables template has been placed in the
Start folder so that it is a global template.
With Julie.frmCreate_Julie_Report
.txtReportDateMonth.Text = "02"
.txtReportDateDay.Text = "17"
.txtReportDateYear.Text = "2005"
.txtDictationDateMonth.Text = "02"
.txtDictationDateDay.Text = "17"
.txtDictationDateYear.Text = "2005"
.txtBillingPeriod.Text = "021605-022805"
.Show
End With
What is the code needed to access the Userform in the Julie Project from
another project? Are Public variables necessary at all as well?