Articles   Members Online: 3
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to open an application inside a TForm at a predefined position Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
28-Oct-02
Category
VCL-Forms
Language
Delphi 2.x
Views
92
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Jonas Bilinkevicius

How do I open an executable in a determined form's area? Example: Open an 
executable and show it on the left forms part with a size of 400 x 300.

Answer:

This works for me. Keep in mind that some apps have their startup settings set 
somewhere which may override the Startup structure you pass.

1   procedure TForm1.Button1Click(Sender: TObject);
2   var
3     StartupInfo: TStartupInfo;
4     ProcessInfo: TProcessInformation;
5   begin
6     FillChar(StartupInfo, Sizeof(StartupInfo), #0);
7     StartupInfo.cb := Sizeof(StartupInfo);
8     StartupInfo.dwFlags := STARTF_USEPOSITION or STARTF_USESIZE;
9     StartupInfo.wShowWindow := SW_SHOWNORMAL;
10    StartupInfo.dwX := Left;
11    StartupInfo.dwY := Top;
12    StartupInfo.dwXSize := 400;
13    StartupInfo.dwYSize := 300;
14    CreateProcess(nil, 'yourapp.exe', nil, nil, false, CREATE_NEW_CONSOLE or
15      NORMAL_PRIORITY_CLASS, nil, nil, StartupInfo, ProcessInfo);
16  end;


			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC