Topic: Uses and multiple instances of an event
Trying to make use of 'USES' function as I start to like it.
I tried to implement multiple instances of 'Form1_OnShow' event as:
procedure Form1_OnShow (Sender: string; Action: string);
begin
Frm1onShow1; // Calendar
Frm1onShow2; // General + RTF Font
Frm1onShow3; // password
Frm1onShow4; // Menu
with the following .pas files:
'calend.pas', // Calendar code
'passw.pas', // Password code
'menu.pas'; // Menu code
However, couldn't get it working. It's coming up with script error saying 'BEGIN expected at ...'
Please see the attached app.
God... please help me become the person my dog thinks I am.