Hi,
I have a number of Modules in my database and I want to reference some code in my first module from my last module and I'm having a problem identifying how I can reference the code I need in my first module.
I want to obtain the value of the this code to carryout a calculation in my last module.
So in my module called Process_01 I have this following slice of code:
and in my module called Process_04 and I want to get the value of StartTime so that I can perform my calculation, so in this module I have the following code:
So in order for the TimeTaken to work I need to get the value of the StartTime from my module called Process_01.
Any help/pointers in the right direction would be most appreciated.
Regards
John
I have a number of Modules in my database and I want to reference some code in my first module from my last module and I'm having a problem identifying how I can reference the code I need in my first module.
I want to obtain the value of the this code to carryout a calculation in my last module.
So in my module called Process_01 I have this following slice of code:
Code:
[FONT=Arial]StartTime = Format(Now(), "hh:mm:ss") [/FONT]
[FONT=Arial][/FONT]
and in my module called Process_04 and I want to get the value of StartTime so that I can perform my calculation, so in this module I have the following code:
Code:
[FONT=Arial] EndTime = Format(Now(), "hh:mm:ss") [/FONT]
[FONT=Arial] [/FONT]
[FONT=Arial] TimeTaken = Format(EndTime - StartTime, "hh:mm:ss") [/FONT]
So in order for the TimeTaken to work I need to get the value of the StartTime from my module called Process_01.
Any help/pointers in the right direction would be most appreciated.
Regards
John