I have an application that takes various command line parameters. This works fine but I need to make a change and I was wanting some input as to the best way to handle this change.
Currently:
The application two gets called from application one. I do not have control over application one to pass it through as a reference to application two.
I pass the command line parameters needed from application one to application two as such:
applicationtwo.exe /AA username filename.txt
Change:
The initial load of the program is slow due to the connection to SQL Server. It's not horribly slow, we just have people on the phone with customers that do not want to wait 3-4 each time it opens.
I was thinking I could keep it running in the task bar and bringing it to the front once it's a called again, only allowing one instance of the program to open. I wasn't sure how to get the parameters back to it like I do the command line way though.
Anyone have a good suggestion on how to handle this?
Thanks as usual!