Just when I think I am finally starting to understand things I get tripped up by a simple problem -
I need the user to enter the Project Name and Number and then store that information. On each use of this mini-app the Project Name and Number will be the same. I want it to be a one time entry and it will be used in report headers.
I made a form with 2 fields - StoreJobNumber, StoreJobName. I added a button to "save" the data with the following code :
Public Sub SetNames_Click()
Dim JobName As String
Dim JobNumber As String
JobName = StoreJobTitle
JobNumber = StoreJobNumber
End Sub
Help Thanks
I need the user to enter the Project Name and Number and then store that information. On each use of this mini-app the Project Name and Number will be the same. I want it to be a one time entry and it will be used in report headers.
I made a form with 2 fields - StoreJobNumber, StoreJobName. I added a button to "save" the data with the following code :
Public Sub SetNames_Click()
Dim JobName As String
Dim JobNumber As String
JobName = StoreJobTitle
JobNumber = StoreJobNumber
End Sub
Help Thanks