hi,
i can use o:bKeyDown to F2 - F9 and F11
i know VK:F12 can be Devugger, but how to get VK:F10 ... it does "open" Menu if exist ...
Search found 38 matches: f11
Searched query: f11
- Tue May 02, 2023 3:28 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: how to use VK_F10 ?
- Replies: 0
- Views: 342
- Wed Dec 09, 2020 7:11 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Are there any Treeview samples with associated edit boxes?
- Replies: 44
- Views: 6813
Re: Are there any Treeview samples with associated edit boxes?
D.
F11 and F12 implemented this way:
SetKey( VK_F12, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 2 ]:SetFocus(),) } )
SetKey( VK_F11, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 1 ]:SetFocus(),) } )
Updated EXE and PRG:
https://github.com/FiveTechSoft/FWH ...
F11 and F12 implemented this way:
SetKey( VK_F12, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 2 ]:SetFocus(),) } )
SetKey( VK_F11, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 1 ]:SetFocus(),) } )
Updated EXE and PRG:
https://github.com/FiveTechSoft/FWH ...
- Wed Dec 09, 2020 2:42 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Are there any Treeview samples with associated edit boxes?
- Replies: 44
- Views: 6813
Re: Are there any Treeview samples with associated edit boxes?
D.
F11 and F12 implemented this way:
SetKey( VK_F12, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 2 ]:SetFocus(),) } )
SetKey( VK_F11, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 1 ]:SetFocus(),) } )
Updated EXE and PRG:
https://github.com/FiveTechSoft/FWH ...
F11 and F12 implemented this way:
SetKey( VK_F12, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 2 ]:SetFocus(),) } )
SetKey( VK_F11, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 1 ]:SetFocus(),) } )
Updated EXE and PRG:
https://github.com/FiveTechSoft/FWH ...
- Sat Dec 05, 2020 8:36 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Are there any Treeview samples with associated edit boxes?
- Replies: 44
- Views: 6813
Re: Are there any Treeview samples with associated edit boxes?
D.
F11 and F12 implemented this way:
SetKey( VK_F12, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 2 ]:SetFocus(),) } )
SetKey( VK_F11, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 1 ]:SetFocus(),) } )
Updated EXE and PRG:
https://github.com/FiveTechSoft/FWH ...
F11 and F12 implemented this way:
SetKey( VK_F12, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 2 ]:SetFocus(),) } )
SetKey( VK_F11, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 1 ]:SetFocus(),) } )
Updated EXE and PRG:
https://github.com/FiveTechSoft/FWH ...
- Fri Dec 04, 2020 2:33 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Are there any Treeview samples with associated edit boxes?
- Replies: 44
- Views: 6813
Re: Are there any Treeview samples with associated edit boxes?
... the node. When you tab again, it goes back to the Text Area, but adds another Tab. Etc.
In Treepad Enterprise, they resolve this by assigning the F11 key to return to the node. The F12 key is used to switch to the Text Area.
We could also just assign a different dedicated key, other than Tab. I ...
In Treepad Enterprise, they resolve this by assigning the F11 key to return to the node. The F12 key is used to switch to the Text Area.
We could also just assign a different dedicated key, other than Tab. I ...
- Thu Apr 30, 2020 1:51 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Demostración de Object Manager for Fivewin / Harbour
- Replies: 2
- Views: 734
Re: Demostración de Object Manager for Fivewin / Harbour
... lo entendieron, escribiré aquí.
Para activar las partes relacionadas con clases y objetos SHIFT+CTRL+F12
Para activar la parte Functions SHIFT+CTRL+F11
Si desea vincular una variable de objeto a una clase Ex:
Variable ODlgTest
Copie la variable al portapapeles de Windows con SHIFT+CTRL+C
Pregunta ...
Para activar las partes relacionadas con clases y objetos SHIFT+CTRL+F12
Para activar la parte Functions SHIFT+CTRL+F11
Si desea vincular una variable de objeto a una clase Ex:
Variable ODlgTest
Copie la variable al portapapeles de Windows con SHIFT+CTRL+C
Pregunta ...
- Thu Jan 16, 2020 10:10 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Mobile App Development
- Replies: 28
- Views: 6312
Re: Mobile App Development
... myself poorly. What I mean is openFullscreen().
I thought maybe there is a working mod harbour sample.
The code is working and does the same as F11 in Firefox. But I am uncertain how where o call openFullscreen that the web page is opened in full screen automatically and if this is the way.
I ...
I thought maybe there is a working mod harbour sample.
The code is working and does the same as F11 in Firefox. But I am uncertain how where o call openFullscreen that the web page is opened in full screen automatically and if this is the way.
I ...
- Sun Jul 21, 2019 3:14 pm
- Forum: Utilities / Utilidades
- Topic: Poor-man Electron
- Replies: 6
- Views: 1999
Poor-man Electron
... is to use web apps as desktop apps.
With these small batch files we launch our remote web apps developed with mod_harbour:
Once Edge shows press F11 to hide the navigation bar (any idea to do this programmatically?)
myapp.vbs
Set objIE = CreateObject( "Shell.Application" )objIE.Open( ...
With these small batch files we launch our remote web apps developed with mod_harbour:
Once Edge shows press F11 to hide the navigation bar (any idea to do this programmatically?)
myapp.vbs
Set objIE = CreateObject( "Shell.Application" )objIE.Open( ...
- Wed May 22, 2019 10:13 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Introducing FiveTech's fivedit
- Replies: 560
- Views: 145409
Re: Introducing FiveTech's fivedit
---------------------------------------- NEW VERSION 22/05/2019 ---------------------------
https://bitbucket.org/fivetech/fivewin- ... IVEDIT.EXE
- Minor bugs fixed
- Added SHIFT + F4 and SHIFT + F11 execute PRGS in ( localhost ): new Harbour for web
https://bitbucket.org/fivetech/fivewin- ... IVEDIT.EXE
- Minor bugs fixed
- Added SHIFT + F4 and SHIFT + F11 execute PRGS in ( localhost ): new Harbour for web
- Wed May 22, 2019 10:08 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Mejoras para scintilla
- Replies: 1040
- Views: 989239
Re: Mejoras para scintilla
---------------------------------------- NEW VERSION 22/05/2019 ---------------------------
https://bitbucket.org/fivetech/fivewin- ... IVEDIT.EXE
- Minor bugs fixed
- Added SHIFT + F4 and SHIFT + F11 execute PRGS in ( localhost ): new Harbour for web
https://bitbucket.org/fivetech/fivewin- ... IVEDIT.EXE
- Minor bugs fixed
- Added SHIFT + F4 and SHIFT + F11 execute PRGS in ( localhost ): new Harbour for web
- Sat Apr 20, 2019 7:19 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Introducing FiveTech's fivedit
- Replies: 560
- Views: 145409
Re: Introducing FiveTech's fivedit
... NEW VERSION 20/04/2019 --------------------------------
- New: Now allows to save the marks defined by the user and restore the marks when opening the file
m
Remember that with F11 and F12 you move through the different brands (next and previous)
And with ALT + F12 all the marks are eliminated
- New: Now allows to save the marks defined by the user and restore the marks when opening the file
m
Remember that with F11 and F12 you move through the different brands (next and previous)
And with ALT + F12 all the marks are eliminated
- Sat Apr 20, 2019 7:18 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Mejoras para scintilla
- Replies: 1040
- Views: 989239
Re: Mejoras para scintilla
... NEW VERSION 20/04/2019 --------------------------------
- New: Now allows to save the marks defined by the user and restore the marks when opening the file
m
Remember that with F11 and F12 you move through the different brands (next and previous)
And with ALT + F12 all the marks are eliminated
- New: Now allows to save the marks defined by the user and restore the marks when opening the file
m
Remember that with F11 and F12 you move through the different brands (next and previous)
And with ALT + F12 all the marks are eliminated
- Fri Mar 22, 2019 7:17 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: reindent Fivedit
- Replies: 13
- Views: 2190
Re: reindent Fivedit
... in the new version, I added the possibility of formatting that selected text as you request.
Also, after selecting the text, you can press ALT + F11, to perform that action.
Please download the new version
https://i.postimg.cc/tCBV2jkq/Fivedit95.png
https://i.postimg ...
Also, after selecting the text, you can press ALT + F11, to perform that action.
Please download the new version
https://i.postimg.cc/tCBV2jkq/Fivedit95.png
https://i.postimg ...
- Sun Sep 23, 2018 10:49 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Mejoras para scintilla
- Replies: 1040
- Views: 989239
Re: Mejoras para scintilla
------------------------------------- NEW VERSION 23/09/2018 -----------------------------
https://bitbucket.org/fivetech/fivewin- ... IVEDIT.EXE
- Added Folder "Dependences", generate with CTRL + F11 or MENU - RUN - Generate Dependences
Check only syntax and generate dependences file source, libs, and functions list
https://bitbucket.org/fivetech/fivewin- ... IVEDIT.EXE
- Added Folder "Dependences", generate with CTRL + F11 or MENU - RUN - Generate Dependences
Check only syntax and generate dependences file source, libs, and functions list
- Sun Sep 23, 2018 10:47 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Introducing FiveTech's fivedit
- Replies: 560
- Views: 145409
Re: Introducing FiveTech's fivedit
------------------------------------- NEW VERSION 23/09/2018 -----------------------------
https://bitbucket.org/fivetech/fivewin- ... IVEDIT.EXE
- Added Folder "Dependences", generate with CTRL + F11 or MENU - RUN - Generate Dependences
Check only syntax and generate dependences file source, libs, and functions list
https://bitbucket.org/fivetech/fivewin- ... IVEDIT.EXE
- Added Folder "Dependences", generate with CTRL + F11 or MENU - RUN - Generate Dependences
Check only syntax and generate dependences file source, libs, and functions list