Search found 53 matches

by Giovany Vecchi
Sun Nov 17, 2024 1:43 pm
Forum: FiveWin for Harbour/xHarbour
Topic: emulate CTRL+V
Replies: 7
Views: 1213

Re: emulate CTRL+V

Try using WScript

Code: Select all | Expand

lc_oShell := tOleAuto():New( "WScript.Shell" )
lc_oShell:SendKeys("^V")
 
by Giovany Vecchi
Sun Nov 10, 2024 12:47 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp does not work popup menus
Replies: 7
Views: 752

Re: ButtonBmp does not work popup menus

How do I put a pop up menu on a button of the TButtonBmp class?

Only TBtnBmp supports oPopupMenu natively in addition to bAction.
TButtonBmp or its parent class TButton, do not natively support oPoupMenus.
In the case of these buttons, we can use ACTION clause to show popup menus.

This is a ...
by Giovany Vecchi
Sat Nov 09, 2024 4:25 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp does not work popup menus
Replies: 7
Views: 752

Re: ButtonBmp does not work popup menus

João, é ButtonBmp e não BtnBmp

John, it's ButtonBmp and not BtnBmp
by Giovany Vecchi
Thu Nov 07, 2024 8:21 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp does not work popup menus
Replies: 7
Views: 752

ButtonBmp does not work popup menus

How do I put a pop up menu on a button of the TButtonBmp class?
I'm doing it like this:

MENU ::oMenuPlanejamentos POPUP 2015

MENUITEM lc_oaMnuItensPlanejamentos[1] Prompt "Imprimir Planejamento" ;
Resource "B16M_PRINTERNORMAL" ;
OF ::oMenuPlanejamentos

lc_oaMnuItensPlanejamentos[1 ...
by Giovany Vecchi
Fri Nov 01, 2024 1:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ADS Question
Replies: 10
Views: 1073

Re: ADS Question

To purchase ads licenses look here.

https://www.sap.com/brazil/products/tec ... html#plans
by Giovany Vecchi
Wed Oct 09, 2024 4:54 pm
Forum: FiveWin for Harbour/xHarbour
Topic: pixel on print
Replies: 5
Views: 461

Re: pixel on print

Hi Silvio, Try this way.

PRINT oPrn PREVIEW
nOffsetY := oPrn:nlogpixely()/2.54 // Offset verticale per i quadratini
nOffsetX := oPrn:nlogpixelx()/2.54 // Offset orizzontale per i quadratini
nPixelLarghezza := nOffsetX // Larghezza del pixel in mm
nPixelAltezza := nOffsetY // Altezza del pixel ...
by Giovany Vecchi
Tue Oct 08, 2024 2:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Browse of my ADO Class
Replies: 59
Views: 7226

Re: Browse of my ADO Class

Em Português
Grande José Quintas. Fico feliz de você adquirir o FW e participar desta maravilha de ferramenta conosco.

Uma instância multithreading cria outro processo de escalotamento na memória e os dialogos criados no FW tem como referência a instância do handle da janela principal WNDMAIN ...
by Giovany Vecchi
Wed Aug 28, 2024 5:22 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 example using tMyEdgeWeb class
Replies: 10
Views: 2486

Re: WebView2 example using tMyEdgeWeb class

https://github.com/FiveTechSoft/FWH_tools/blob/master/GVContrib.7z

on EXE there is a virus
Avira blocked this file MyEdgeWebSample.exe


https://i.postimg.cc/rmv2FzPr/ss.png

https://i.postimg.cc/dtYgHMPw/s1.png

Hi Silvio.
If you have Visual Studio installed, just edit the BAT CompilaeMsvc ...
by Giovany Vecchi
Tue Aug 27, 2024 11:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 example using tMyEdgeWeb class
Replies: 10
Views: 2486

Re: WebView2 example using tMyEdgeWeb class

I have added another example using the tAwaitWeb class by Charles Kwon to fill in some elements of the page with values.

See the link below.

https://drive.google.com/file/d/1LuJ8vP ... sp=sharing
by Giovany Vecchi
Fri Aug 23, 2024 4:57 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 example using tMyEdgeWeb class
Replies: 10
Views: 2486

Re: WebView2 example using tMyEdgeWeb class

Antonio Linares wrote:Dear Giovany,

The download url does not work properly.

Can you post the source code here ? thank you
Antonio, what's your email?
I'll send it to you.
by Giovany Vecchi
Fri Aug 23, 2024 4:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 example using tMyEdgeWeb class
Replies: 10
Views: 2486

WebView2 example using tMyEdgeWeb class

Hello everyone.
I made a class to navigate the web using WebView2.
Any feedback is welcome.

Para baixar clique aqui: https://www.sendspace.com/file/zek6p3

Image
by Giovany Vecchi
Tue Jun 25, 2024 11:20 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to sort a Hash table?
Replies: 2
Views: 371

Re: How to sort a Hash table?

Thank you very much Antonio.
It worked just fine.
by Giovany Vecchi
Tue Jun 25, 2024 11:47 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to sort a Hash table?
Replies: 2
Views: 371

How to sort a Hash table?

I have a hash table and I would like to know how to sort a column.
Ex: "BAIRRO"

{{"CEP"=>"15700-772", "LOGRADOURO"=>"RUA PROFESSOR RUBIÃO MEIRA", "COMPLEMENTO"=>"DE 4390/4391 AO FIM", "UNIDADE"=>"", "BAIRRO"=>"CONJUNTO HABITACIONAL ROQUE VIOLA", "LOCALIDADE"=>"JALES", "UF"=>"SP", "IBGE"=>"3524808 ...
by Giovany Vecchi
Fri May 10, 2024 6:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Chilkat's ActiveX
Replies: 3
Views: 605

Re: Chilkat's ActiveX

Hello.
You declare the objects as Nil and the Garbage harbor system will automatically unload them if they do not have memory links.
oHttp := Nil
oReq := Nil

To terminate the Chilkat control Handle initiated by the GLOBAL Resource use Method FinalizeThreadPool()

The prg below is used for ...