Ridwan Haris wrote: > Hello all, > I have a trouble here,heres the story: > I create a database application and its a multiuser application..for the > reason of memory use in my application,i store several form for > inputting data in other application..the problem is,the 'other' > application for inputting data is must be cannot direct executed,it must > be executed from main application with passing parameters like user > information,password,etc.. > The questions is,how to execute the other application which i created > for inputting data from main application,and passing parameters to them? > Any help i appreciated..Thanks. > > Best regards,
I'm having difficulty understanding the problem (and I'm usually pretty good at determining what people are asking). It sounds to me that you want to know how to create an instance of a different application and run it using parameters you pass to it. I have two difficulties comprehending your scenario: 1) It sounds like the two applications need to "talk" to each other. That is, it sounds to me that the second application you are starting needs to communicate with the application starting it. If this is true, you have to pick from any number of IPC mechanisms and let us know which one you want to use. 2) We don't know anything about the target application. Does it even accept parameters? If so, is there a special format that has to be followed? Will anything being input from the source application be considered an "illegal" character (i.e. pipe operations '|', redirection operations '<' and '>', etc.)? If so, can the target application handle input from 'stdin'? -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 Safe C++ Design Principles (First Edition) Learn how to write memory leak-free, secure, portable, and user-friendly software. Learn more and view a sample chapter: http://www.CubicleSoft.com/SafeCPPDesign/ ----------------------------------------------------- Home page: http://groups.yahoo.com/group/delphi-en/ To unsubscribe: [EMAIL PROTECTED] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/delphi-en/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

