NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: rjolda on June 12, 2024, 08:09:07 AM
-
Hi,
NT14.21 C11.01
I have a button which calls a procedure. I need to pass 2 parameters to the procedure. I am using the GetValue in the called procedure
1. GUID of calling record
2. FROMTABLE ( I have 2 separate tables which call the same procedure and I need to know which one called it).
On the Parameters button: I can pass 1 parameter with 'GID=' & FIL1:GUID
However, in trying to pass 2 parameters I can't seem to get it right - compiler errors. etc
This is what I have so far: 'GID=' & FIL1:GUID & 'FROMTABLE =' & 'Table1'
What am I missing ?? Maybe a comma between the 2 values?
TIA,
Ron
-
May be you have to use:
'GID=' & FIL1:GUID & '&FROMTABLE =' & 'Table1'
-
'GID=' & FIL1:GUID & '&FROMTABLE=Table1'