NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: rjolda on June 12, 2024, 08:09:07 AM

Title: Passing parameters on a Button
Post 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
Title: Re: Passing parameters on a Button
Post by: Alberto on June 12, 2024, 09:01:58 AM
May be you have to use:

'GID=' & FIL1:GUID & '&FROMTABLE =' & 'Table1'
Title: Re: Passing parameters on a Button
Post by: Bruce on June 13, 2024, 06:41:10 AM
'GID=' & FIL1:GUID & '&FROMTABLE=Table1'