Normal Topic [Solved] Combo Box Mass Update (Read 664 times)
CapitalG
Full Member
Members
***
Offline



Posts: 143
Location: Phoenix, Arizona
Joined: Mar 4th, 2003
[Solved] Combo Box Mass Update
Oct 8th, 2008 at 10:22pm
Print Post Print Post  
Is there a trick to doing a mass update on a combo Box?

The Programming is:  Loan Type0 = Refinance

The Error is:

Error while parsing module "Loan Type0":
Unknown Identifier.
Line 1, position 15: [Identifier: refinance]
loan type0 = refinance
                    ^

thanks
« Last Edit: Oct 9th, 2008 at 2:13pm by Hammer »  
Back to top
 
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Combo Box Mass Update
Reply #1 - Oct 8th, 2008 at 10:37pm
Print Post Print Post  
Do you have an element named Refinance, or are you trying to set the combo box to equal "Refinance"? If it's the second option, then you need the quotes.

Code
Select All
Loan Type0 = "Refinance" 

  

- Hammer
The plural of anecdote is not data.
Back to top
IP Logged
 
CapitalG
Full Member
Members
***
Offline



Posts: 143
Location: Phoenix, Arizona
Joined: Mar 4th, 2003
Re: Combo Box Mass Update
Reply #2 - Oct 9th, 2008 at 1:56pm
Print Post Print Post  
Thank you.   Smiley

It was the later and of course it worked.
  
Back to top
 
IP Logged