Store values of unbound controls in a table

  • Thread starter Thread starter Wasim Yasin via AccessMonster.com
  • Start date Start date
W

Wasim Yasin via AccessMonster.com

I have four unbounded textboxes on my form.Value of textbox1 validate with
table 'Master'.If found then the relevant fields of the table'Master' fill
the textbox2, textbox3and textbox4. after that user enter the values in
bounded textboxes (bounded with 'trans' table).at last the all values of
bounded and unbounded textboxes should store in table 'trans'.any one help
me for this.

Thanks in advance.
 
Wasim,

Are you using SQL Server as your backend database?

If you are, what are you trying to find?

A simple query of the 'Master' database can be done through ADO.

Saving a record to the 'Trans' table can also be done through ADO Recordsets
or Commands.
 
Back
Top