how to pass value from first form to third form [message #112995] |
Wed, 30 March 2005 07:10 |
raje_here
Messages: 14 Registered: February 2005
|
Junior Member |

|
|
i have 4 forms called A,B,C,D
A has a,b,c fields and B has two command buttons and c has g,h,i as fields
the flow of form is
1) A(log in form)->based on the login the navigation is transferred to the form B or D
2)from B based on the button clicked i am choosing to go to certain canvas
o Button 1( to choose form C)
I am declaring a global variable
:global.my_var:=1;
o Button 2(to choose form D)I am declaring a global variable
:global.my_var:=2;
3)if button 1 is clicked ,the global variable is passed as 1 ,so that only a particular canvas can be viewed
question:
I need the value of form A in the form C. how can I get this value?
|
|
|