Jump to content
opiumhautopium1

change between 2 http sides

Recommended Posts

i got a problem to change between 2 http sides (main and seacard by seafight)

i dont know how to

example

identify http page onlinespiele

set on top.... and activate onlinespiele

do something until event is happen

minimize onlinespiele

then

identify http page seafight.bigpoint

set on top seafight.bigpoint and aktivate

do someething until event is happen

minimize seafight.bigpoint.com

and so on ...

 

i know to find the sides with FindWindowTitlePart

but i dont know to minimize and return it to big (under win7)

to do the right things with the right side ^^

thx in advance

 

mfg

Link to comment
Share on other sites

[scar]

var a,b : integer;

 

procedure findWindows; // finds windows

begin

if FindWindowTitlePart('partname1',false) = false then writeln('not found...');

a := GetClientWindowHandle;

FindWindowTitlePart('partname2',false) = false then writeln('not found...');

b := GetClientWindowHandle;

end;

 

 

procedure show_a;

begin

SetClientWindowHandle(a);

ActivateClient;

end;

 

procedure show_b;

begin

SetClientWindowHandle(b);

ActivateClient;

end;

[/scar]

 

But windows musn't be minimized! I dont know how to minimize - maximize windows

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
  • Create New...