Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

select in a tableframe

Status
Not open for further replies.

christoffel

Programmer
Jun 29, 2004
15
0
0
NL
Hello,
What is the easiest way to select a few records in a tableframe in a form with the same value in one field. This field is not an indexed field.
Thanks.

I find it not easy to use SetChange and switchIndex.

Also i have problems when the field is an indexed field.
 
It doesnot work.

method open(var eventInfo Event)
var
ui uiobject
dy dynarray[] anytype ; string
endvar

dy["Opdrachtgever"]=hbedrijfnaam ; opdrachtgever is field in tableframe, hbedrijfnaam is field in form
ui.attach(zoekdeb)
ui.setGenFilter(dy)
endMethod
 
YEs it works in a button and i know why. The field i use in the form that i opened with "wait" must first open the form and the tableframe. After that it can use the value of the field i filled in the other form.
thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top