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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help in a Form! 1

Status
Not open for further replies.

Collin79

Programmer
Dec 31, 2000
31
0
0
MX
Hi!!

Hope that someone could give me a tip. I'm a baby programing, so I don't know how to do it.

I've done a program called altarep.pgr, in it, the program goes like this:
@ 10,20 say "Solicitante:" get Sol_
@ 12,20 say "Asegurado:" get nomaseg
@ 14,20 say "Dirección:" get dirase
@ 16,20 say "Entrevistar a:" get perent
@ 18,20 say "Cargo:" get cargoper
@ 20,20 say "Telefonos" get tel11
@ 20,41 get tel12

etc. (old way)

depending the value of a variable, it will open 3 databases and store all the values, if I run the program, it works ok, my problem is that I've tried to do it with the Wizard form, but I don't know how to do store the values, 'couse in the wizard i've to choose the table that I'll use to store the values.

Somebody please help me...
 
U C, controls like textbox,editbox,combobox, etc...
have properties call 'controlsource'
and u can reference your variable to them.

For eg:
Thisform.text1.ControlSource=m.Sol_
Thisform.text2.ControlSource=m.nomaseg
Thisform.text3.ControlSource=m.dirase
...
..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top