Click here to Skip to main content
15,893,487 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to move the record from one subform to another subform in vb6
Posted
Comments
Aydin Homay 9-Apr-13 4:47am    
Please explain about your target record.

1 solution

Using With operator u can access record of any form from any form. E.g.

If Form1 contains

txtName
txtAge

and u want to fetch data from Form2 then following action u can perform

in form2 load or any event where u want to call data write following code

with Form1
Dim name as string= .txtName.Text
Dim Age as string=.txtAge.text
end with

i guess this is what you were asking.
 
Share this answer
 
Comments
Ram349 12-Apr-13 2:24am    
hi Raj,
i want to one record data moved to another subform please give a your valueable solution
Raj Parashar 12-Apr-13 5:09am    
Kittu tell me the detail exactly what is requirement so that i can help u out. Is the data in a grid and u want to have same data in another subfom grid?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900