Welcome To The Home Of The Visual FoxPro Experts  
home. signup. forum. archives. search. google. articles. downloads. faq. members. weblogs. sponsors. rss.
 From: Christian Tabligan
  Where is Christian Tabligan?
 Bacolod City, Neg. Occ.
 Philippines
 Christian Tabligan
 To: reevimae olea
  Where is reevimae olea?
 
 Philippines
 reevimae olea
 Tags
Subject: RE: cursor and combo
Thread ID: 191854 Message ID: 191859 # Views: 42 # Ratings: 0
Version: Visual FoxPro 6 Category: Databases, Tables and SQL Server
Date: Friday, August 29, 2008 4:25:49 AM         
   


> Hello,
>
> Form's load:
>
> SQLEXEC( gnSQLID, "select * from thetable", "thecursor")
> 

>
> thefield
> DILI
> SAKTO
> DILI
> SAKTO
>
> I want to display thefield in the combobox but the values "DILI" must not be selected by the user, only visible.
>
> Thank you and God bless.. (a)

put this in your comboxbox interactivechange or click event

if this.value == "DILI"
   return 0
else
   *** proceed to your valid statement here
endif


CriZ (,")

"Everyone is entitled to their own opinion, but not their own facts."



COMPLETE THREAD
cursor and combo Posted by reevimae olea @ 8/29/2008 2:45:45 AM
RE: cursor and combo Posted by Glenn Villar @ 8/29/2008 2:55:44 AM
RE: cursor and combo Posted by Christian Tabligan @ 8/29/2008 4:25:49 AM