954,568 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Combine/Merge Multiple EXE file (urgent help!)

Hello experts. I have 2 vbp (namely Project1.vbp and Project2.vbp) I Group them into 1 Project, my problem is how can the user choose on what project they want to use using VB6?

My initial idea is when the user login a form will prompt, and the user will be given a choice w/c project to run the Project1.vbp or the Project2.vbp.. Please help me on this. tnx in advance

werks
Junior Poster in Training
57 posts since Jan 2008
Reputation Points: 10
Solved Threads: 1
 

Solved the problem tnx to debasisdas.. By using SHELL i can call different Application..

werks
Junior Poster in Training
57 posts since Jan 2008
Reputation Points: 10
Solved Threads: 1
 

i have some solution, change startup project to sub main

public userID as integer
public sub main()
dim frmLogin as new clsLogin
dim frmMain as form

frmlogin.show 1
if userid = 1 then
set frmMain = frm1
else
set frmMain = frm2
end if

frmMain.show 1

'') done,

end sub

nemosmart
Newbie Poster
1 post since Nov 2007
Reputation Points: 10
Solved Threads: 0
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You