Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Grid refresh on form
Message
 
To
30/06/2004 01:22:19
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00918839
Message ID:
00918864
Views:
9
This message has been marked as a message which has helped to the initial question of the thread.
What you need to do is this:
WITH Thisform.airgrid1.column1
   .RemoveObject("Text1")
   .AddObject("Check1","checkbox")
   .ControlSource = "Alias.LogicalField"
   WITH .Check1
      .Style = 1
      .Caption = ''
      .Picture = "UncheckedPicture"  && Substitute the name of your picture file
      .DownPicture = "CheckedPicture"  && Substitute the name of your picture file
      .Visible = .T.
   ENDWITH
ENDWITH 
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform