Hi,
I want to be able to assign a variable with a subform name the following code allows me to get the main form name but I also need the subform within the form
Also i need to be able to combine the value of two fields from a form so i will end up with a variable that contains monday08:00
Any help is much appreciated
Cheers Phill
I want to be able to assign a variable with a subform name the following code allows me to get the main form name but I also need the subform within the form
Code:
Dim strFormName As String strFormName = Me.name
Code:
Monday = [Forms]![FrmCalendarMain].[SfrCalS104]![TxtMon] txtMon0800 = [Forms]![FrmCalendarMain].[SfrCalS104]![Txt08:00]
Cheers Phill
Comment