FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Coordinates of a browser page
Posts: 1392
Joined: Mon May 14, 2007 09:49 AM
Coordinates of a browser page
Posted: Sun Jun 19, 2022 07:37 AM

Hi,

The browser is expanded to full screen. Is it possible to determine the screen coordinates of a browser page ?

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Coordinates of a browser page
Posted: Sun Jun 19, 2022 07:39 AM

Dear Yuri,

Do you mean using WebView ?

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1392
Joined: Mon May 14, 2007 09:49 AM
Re: Coordinates of a browser page
Posted: Sun Jun 19, 2022 07:49 AM

Since there is no FW with WebView support yet, I use PowerShell :?

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Coordinates of a browser page
Posted: Sun Jun 19, 2022 07:58 AM

And what do you do from powershell ?

Please explain it :-)

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1392
Joined: Mon May 14, 2007 09:49 AM
Re: Coordinates of a browser page
Posted: Sun Jun 19, 2022 08:11 AM

From my FW program, I do a screen grabber via PS. Everything works. But when creating a screenshot via .CopyFromScreen I would like to receive only the working application window/browser page (without title, menu, frames, etc.)

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Coordinates of a browser page
Posted: Sun Jun 19, 2022 08:15 AM

> From my FW program, I do a screen grabber via PS. Everything works.

How you do it ? please explain it :-)

> But when creating a screenshot via .CopyFromScreen I would like to receive only the working application window/browser page (without title, menu, frames, etc.)

What is CopyFromScreen ? Is it a PS command ? Please explain it in detail so we can help

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1392
Joined: Mon May 14, 2007 09:49 AM
Re: Coordinates of a browser page
Posted: Sun Jun 19, 2022 08:39 AM

Through Enum I get a list of visible application windows and through WMI the process name for each window.
In the loop, I bring the windows to the foreground and maximize them. At this moment I am executing a PS script in which by means of the PS method .CopyFromScreen I take a screenshot, which I save to a file

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Coordinates of a browser page
Posted: Sun Jun 19, 2022 08:44 AM

could you please copy the code here to test it ?

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1392
Joined: Mon May 14, 2007 09:49 AM
Re: Coordinates of a browser page
Posted: Sun Jun 19, 2022 08:49 AM

Sorry Antonio, I didn't understand - the code of what.. PS-script ?

Posts: 1772
Joined: Thu Sep 05, 2019 05:32 AM
Re: Coordinates of a browser page
Posted: Sun Jun 19, 2022 04:16 PM
hi

i do use VK_SNAPSHOT

Code (fw): Select all Collapse
   System.EmptyClipboard
   SENDKEY( VK_SNAPSHOT )

   // Wait to get hBitmap
   hBitmap1 := 0
   DO WHILE hBitmap1 = 0


---

to get Result of PowerShell i use " | CLIP "
Code (fw): Select all Collapse
LOCAL cStep1   := "Get-SmbServerConfiguration "
LOCAL cClip    := " | CLIP "
LOCAL cRun     := "PowerShell.EXE "
LOCAL cPara    := "-ExecutionPolicy Bypass -Command "
LOCAL cFile1   := HB_DirBase() + "GETSMB.PS1"

   nHandle := FCREATE( cFile1, FC_NORMAL )
   IF nHandle == - 1
      MsgInfo( "Error create File : " + cFile1, STR( FERROR() ) )
      RETURN
   ELSE
      FWRITE( nHandle, cStep1 + cClip )
      FWRITE( nHandle, CRLF + "EXIT" )
      FCLOSE( nHandle )
   ENDIF

   cMore := cPara + cFile1
   IF ShellExecute( 0, "open", cRun, cMore,, SW_HIDE ) > 32
      nCount := 0
      DO WHILE EMPTY( System.Clipboard )
greeting,

Jimmy
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Coordinates of a browser page
Posted: Sun Jun 19, 2022 06:56 PM

Dear Yuri,

> Sorry Antonio, I didn't understand - the code of what.. PS-script ?

Yes, all the process you are doing, to reproduce it here and see how we can help you

regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion