Normal Topic Check Box trouble (Read 450 times)
NHUser
Full Member
***
Offline



Posts: 320
Location: Amherst, NH
Joined: Aug 2nd, 2010
Check Box trouble
Apr 4th, 2013 at 8:03pm
Print Post Print Post  
I have a form with nine check boxes.  I've programmed it so only one box can be TRUE at the same time using the following programming:

If CheckCustomerComplaint=True
{
     CheckCalibration=False
     CheckExternalAudit=False
     CheckGoals=False
     CheckInternalAudit=False
     CheckNonConformingIssues=False
     CheckImprovementOpportunities=False
     CheckManagementReview=False
     CheckSupplierIssue=False
     ThrowFocus(AssignNumber)
           RestoreTabPages(LE1)
           HideTabPage(LE1,2)
           HideTabPage(LE1,3)
}



I'm having trouble with one of the boxes.  The one named CheckNonConformingMaterial has two issues; first, I have to use the statement:

If CheckNonConformingMaterial=1 to make the IF statement true and get to the remaining programming. 

second, i've found that it will not remember that it is TRUE when I save the record and come back to it.  It returns to the undecided state (not TRUE or FALSE). 

I suspect the name is tool long.  Is that possible?  What else could be causing this issue?
  
Back to top
 
IP Logged
 
Ray the Reaper
Global Moderator
Members
Lantica Support
*****
Offline


The One & The Only

Posts: 2482
Joined: Aug 20th, 2003
Re: Check Box trouble
Reply #1 - Apr 4th, 2013 at 8:20pm
Print Post Print Post  
Hello Paul,

What you are going to want to do is check the Properties of that check box as it sounds to me like it is unbound. The tab labeled 'Other' in the Property Viewer will show you this information.

-Ray
  

Raymond Yoxall Consulting
ray.yoxall@gmail.com
ryoxall@lantica.com
Sesame Applications, Design and Support
Back to top
IP Logged
 
NHUser
Full Member
***
Offline



Posts: 320
Location: Amherst, NH
Joined: Aug 2nd, 2010
Re: Check Box trouble
Reply #2 - Apr 4th, 2013 at 8:33pm
Print Post Print Post  
Yup.  That's it.  Thanks for the help!!
  
Back to top
 
IP Logged