Normal Topic GlobalValue Question. (Read 411 times)
drastixnz
Full Member
***
Offline


A Newbie....

Posts: 146
Location: New Zealand
Joined: Nov 29th, 2006
GlobalValue Question.
Mar 16th, 2008 at 9:41pm
Print Post Print Post  
I am trying to create a globalvalue called Contract_Full and take 3 LE's from the main form first, middle, last, and it doesnt work what have i one wrong.

GlobalValue("Contract_Full", "First" + "Middle" + "Full")
  
Back to top
IP Logged
 
Carl Underwood
Senior Member
Members
*****
Offline



Posts: 1351
Location: New Hampshire
Joined: Mar 11th, 2003
Re: GlobalValue Question.
Reply #1 - Mar 16th, 2008 at 11:12pm
Print Post Print Post  
Remove the quotes from around the LE names.

Like this:
GlobalValue("Contract_Full", First + Middle + Full)


You also may want to include a space between each one like this:
GlobalValue("Contract_Full", First + " " + Middle + " " + Full)
  


Carl Underwood
CDU Computer Consulting LLC
Epsom, New Hampshire
Back to top
IP Logged