Large piecemeal application

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have developed a large accounting application piecemeal. . . A/R, A/P,
P/R, Inventory, G/L, etc. Uses 3 databases, 3 DLLs, and 6 EXEs.

I need to combine them so going from one EXE to another EXE isn’t a problem.
I am now using instances of both of the following code snippets:

Dim proc As New Process()
proc.StartInfo.FileName = "EXE3.exe"
proc.StartInfo.WorkingDirectory = "C:\A_VS.Net"
proc.Start()
proc.WaitForExit()


Dim sPath As String
sPath = "C:\A_VS.Net\EXE3.exe"
System.Diagnostics.Process.Start(sPath)

Unless all members are in the same directory there are problems. If I make
a change, I have to copy the new EXE member from it’s default folder to the
combine directory folder.

I am ready to create a deployment for the application and I’m not sure what
the best way to proceed is. . . Need some help.

Thanks
 
Unless all members are in the same directory there are problems. If I
make a change, I have to copy the new EXE member from itƒ Ts default
folder to the combine directory folder.

Just change your default build path to the combined directory output path.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top