Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How do i make my textbox value appear on grid?
Message
From
22/08/2001 07:51:47
 
 
To
21/08/2001 04:42:34
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00546596
Message ID:
00547151
Views:
13
Hi Virgilio.

>> how about instead of using listbox i used grib how can i make the value of textbox appear on grid column when i click the button i made? <<

You mean that you have a text box ourside the grid that you are typing something into and you want to pop the value of that text box into your grid? The easiest way to do this is to manipulate the grid's RecordSource. So code like this in the text box's valid will work for you:

REPLACE < Myfield > WITH This.Value IN < grid.RecordSource >

OR

INSERT INTO < grid.RecordSource > ( MyField ) VALUES ( This.Value )

Marcia
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform