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

PLEASE HELP---modules to load on the mdi main form

Status
Not open for further replies.

wujen

Programmer
Aug 21, 2001
79
US
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


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top