Click here to Skip to main content
15,879,474 members
Home / Discussions / C#
   

C#

 
GeneralRe: Windows XP Icons Pin
Heath Stewart23-Jan-04 9:47
protectorHeath Stewart23-Jan-04 9:47 
GeneralRe: Windows XP Icons Pin
leppie23-Jan-04 23:03
leppie23-Jan-04 23:03 
GeneralRe: Windows XP Icons Pin
Heath Stewart24-Jan-04 5:38
protectorHeath Stewart24-Jan-04 5:38 
GeneralRe: Windows XP Icons Pin
eggie524-Jan-04 7:17
eggie524-Jan-04 7:17 
GeneralRe: Windows XP Icons Pin
Heath Stewart24-Jan-04 8:40
protectorHeath Stewart24-Jan-04 8:40 
GeneralRe: Windows XP Icons Pin
eggie524-Jan-04 8:41
eggie524-Jan-04 8:41 
GeneralCheck for the dialog box. Pin
tonu23-Jan-04 6:41
tonu23-Jan-04 6:41 
GeneralRe: Check for the dialog box. Pin
Heath Stewart23-Jan-04 8:26
protectorHeath Stewart23-Jan-04 8:26 
If this is another .NET application, you could use .NET Remoting to communicate across the two AppDomain hosted by each process. Another way - and if the process is a native application - is to P/Invoke FindWindow to find a Window with the given text (assuming the dialog has a unique caption):
[DllImport("user32.dll", CharSet=CharSet.Auto)]
IntPtr FindWindow(string class, string caption);
...
IntPtr hWnd = FindWindow(null, "My Dialog Caption");


 

-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
GeneralServer 2003 DDK, ZMODEM Pin
Shahin7723-Jan-04 5:51
Shahin7723-Jan-04 5:51 
GeneralRe: Server 2003 DDK, ZMODEM Pin
leppie23-Jan-04 6:01
leppie23-Jan-04 6:01 
GeneralRe: Server 2003 DDK, ZMODEM Pin
Shahin7723-Jan-04 6:31
Shahin7723-Jan-04 6:31 
GeneralRe: Server 2003 DDK, ZMODEM Pin
Heath Stewart23-Jan-04 6:38
protectorHeath Stewart23-Jan-04 6:38 
GeneralRe: Server 2003 DDK, ZMODEM Pin
leppie23-Jan-04 9:02
leppie23-Jan-04 9:02 
Generalneed to import weird C struct Pin
sammyh23-Jan-04 5:28
sammyh23-Jan-04 5:28 
GeneralRe: need to import weird C struct Pin
Heath Stewart23-Jan-04 5:40
protectorHeath Stewart23-Jan-04 5:40 
GeneralRe: need to import weird C struct Pin
sammyh23-Jan-04 6:00
sammyh23-Jan-04 6:00 
GeneralRe: need to import weird C struct Pin
Heath Stewart23-Jan-04 6:08
protectorHeath Stewart23-Jan-04 6:08 
GeneralRe: need to import weird C struct Pin
leppie23-Jan-04 6:08
leppie23-Jan-04 6:08 
GeneralRe: need to import weird C struct Pin
sammyh23-Jan-04 8:27
sammyh23-Jan-04 8:27 
GeneralRe: need to import weird C struct Pin
leppie23-Jan-04 8:47
leppie23-Jan-04 8:47 
GeneralRe: need to import weird C struct Pin
sammyh23-Jan-04 9:25
sammyh23-Jan-04 9:25 
Questionhow do i enable directx? Pin
godzooky23-Jan-04 5:20
godzooky23-Jan-04 5:20 
AnswerRe: how do i enable directx? Pin
sammyh23-Jan-04 5:33
sammyh23-Jan-04 5:33 
AnswerRe: how do i enable directx? Pin
Heath Stewart23-Jan-04 5:35
protectorHeath Stewart23-Jan-04 5:35 
GeneralRe: how do i enable directx? Pin
godzooky23-Jan-04 6:13
godzooky23-Jan-04 6:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.