Hey all,
need some help to get 6 modules loaded on my main mdi form
(not the child form)
I have used get. load. call
each module has treeview on it,
a command button on_click loads the treeveiw
Help please
here is is the beginning parts of the code
mod1
private sub getEH()
dim nL as node
set nL = frmMain.tvwTrans.nodes.add(,,"EH", "English"
etc
.....
end sub
mod2
private sub getFI()
set nL = frmMain.tvwTrans.nodes.add(,, "FI", "Farsi"
etc
.....
end sub
mod3
private sub getAC()
.....
end sub
mod4
private sub getTH()
.....
end sub
mod5
private sub getAM()
.....
end sub
mod6
private sub getAI()
.....
end sub
I have six command buttons...on click i wish for it to get the data from the modules?
Aaron
need some help to get 6 modules loaded on my main mdi form
(not the child form)
I have used get. load. call
each module has treeview on it,
a command button on_click loads the treeveiw
Help please
here is is the beginning parts of the code
mod1
private sub getEH()
dim nL as node
set nL = frmMain.tvwTrans.nodes.add(,,"EH", "English"
etc
.....
end sub
mod2
private sub getFI()
set nL = frmMain.tvwTrans.nodes.add(,, "FI", "Farsi"
etc
.....
end sub
mod3
private sub getAC()
.....
end sub
mod4
private sub getTH()
.....
end sub
mod5
private sub getAM()
.....
end sub
mod6
private sub getAI()
.....
end sub
I have six command buttons...on click i wish for it to get the data from the modules?
Aaron