Search found 114 matches: accelerator

Return to advanced search

Re: xBrowse-Memory, something to Relax ( UPDATE 2.5 )

... the new xBrowse-Gameselector, You can add as many of Your own Game-creations You like. 4. A new LANGUAGE.INI structure added. Now Buttons with Accelerators are defined. 5. A little bug found, saving the Tickcounter. The Delay-time can be selected from a Slider-option Downloads splitted in 3 ...
by ukoenig
Wed Nov 14, 2012 10:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse-Memory, something to Relax ( UPDATE 3.1 new )
Replies: 14
Views: 7567

Missing working Button-Accellerators in TFolderEx ?

... would work, but the same problem ? http://www.pflegeplus.com/pictures/Tfoldx10.jpg In sample TestFx4.prg I added 1, 2, 3 and 4 as Accelerator to the Buttons : ... ... @ 3, 3 FOLDEREX oFld PIXEL ADJUST; PROMPT "&Social", "&OS", "&Games", ...
by ukoenig
Thu Oct 11, 2012 8:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Missing working Button-Accellerators in TFolderEx ?
Replies: 0
Views: 483

Re: xBrowse-Memory, something to Relax ( UPDATE 2.2 )

... : [Language] _Game=Spiel _Trials=Versuche _Scores=Punkte _Select=Auswahl _Player=Spieler _Training=Training Button-text can have a included Accelerator & Now You can rearange the Images in covered mode. this is the hardest and the chance will be equal for all Players because there is ...
by ukoenig
Sat Sep 22, 2012 8:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse-Memory, something to Relax ( UPDATE 3.1 new )
Replies: 14
Views: 7567

Adding a Multilanguage-solution to Your App.

... "Language", "Next", "&Next",  cIniFile ) ......RETURN( NIL )   Samples how to use : a) Accelerator defined inside the PRG @ 25, 405 BTNBMP oBtnP[1] FILENAME c_path + "\System\Player1.bmp" ; SIZE 40, 45 OF oDlg1 PIXEL NOBORDER ...
by ukoenig
Fri Sep 21, 2012 12:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adding a Multilanguage-solution to Your App.
Replies: 5
Views: 1356

Re: Disappearing radio items.

Enrico:

Thank you for your reply. I'm using FWH 10.05. The caption gets invisible when pressing the accelerator keys. Thank you.
by HunterEC
Sun Apr 01, 2012 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disappearing radio items.
Replies: 2
Views: 395

Disappearing radio items.

Guys:

On the following code when I choose an item via its accelerator key, the other radio items disappear:
Code: Select all  Expand view
 @ 55,40 RADIO oGets[4] VAR nActive PROMPT "&Active", "&Inactive", ;
             "A&ll" 3D SIZE 85,10 OF oDlg UPDATE PIXEL


Thank you.
by HunterEC
Sun Apr 01, 2012 3:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disappearing radio items.
Replies: 2
Views: 395

Re: SetKey with ALT key doesn't work

... "Here is 'My_End()'!", "My_End()" )   QUITRETURN NIL Antonio wrote: Try to implement a menuitem or a control with such accelerator and assign it an action Ok, understand, the function 'My_End()' will not be executed out of a dialog via 'SetKey()' - BTW same behavior ...
by frose
Thu Jan 19, 2012 9:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetKey with ALT key doesn't work
Replies: 30
Views: 5237

Re: SetKey with ALT key doesn't work

frose wrote:Hi,

want to set a codeblock to the key 'ALT-C' with
Code: Select all  Expand view
SetKey( K_ALT_C, { || my_function() } )
but it doesn't work!
Any idea?


Try to implement a menuitem or a control with such accelerator and assign it an action :-)
by Antonio Linares
Wed Jan 18, 2012 6:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetKey with ALT key doesn't work
Replies: 30
Views: 5237

Small bug in class TBTNBMP

A friend of mine noticed a small problem with TBTNBMP class. If an accelerator key if defined for a button it works even the button is disabled. I patched adding .AND. aControls[ n ]:lActive to line (1631 in FWH 11.12) if Upper( SubStr( cPrompt, nAt + 1, ...
by ADutheil
Fri Jan 13, 2012 11:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small bug in class TBTNBMP
Replies: 1
Views: 640

Another free 32 Bit Resource-Editor ( maybe useful ? )

... The resource editor handles the following resource types: ● Dialogs with more than 30 defined windows controls. ● Menus. ● String tables. ● Accelerator tables. ● Version info. ● Language setting. ● Resources like bitmaps, icons, manifest and several others. ● Unlimitted Undo / Redo on dialog ...
by ukoenig
Tue Nov 22, 2011 10:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another free 32 Bit Resource-Editor ( maybe useful ? )
Replies: 1
Views: 655

How to go to a particular GET.

Guys:

When entering data in a form, how can I allow the user go to a particular GET via an accelerator (Alt-key) combination ?

Thank you.
by HunterEC
Mon Aug 08, 2011 10:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to go to a particular GET.
Replies: 2
Views: 563

Re: Auto selectable menu.

Enrico:

Thank you for your response. Can the ACCELERATOR keys be put in the keyboard buffer, for example Alt-I ?
by HunterEC
Mon Jul 04, 2011 8:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Auto selectable menu.
Replies: 5
Views: 779

Auto selectable menu.

... records. Instead of having the user wait for each table to complete its course, how can I, via an menu option, put in the keyboard buffer the accelerator key for each option ? In the old Clipper days this was done with the KEYBOARD command or with the KEYSEND() function. Any ideas ? Thank ...
by HunterEC
Mon Jul 04, 2011 6:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Auto selectable menu.
Replies: 5
Views: 779

Re: Program crashing

You better implement Alt-X behavior through ACCELERATOR clause of menu item, than by set key. MainMenu() should be a function returning Menu Object. This is a simplified code implementing what you wanted. You can later add language specific code ...
by nageswaragunupudi
Thu Jun 30, 2011 6:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program crashing
Replies: 8
Views: 1590

Is it possible to integrate VK_APPS in vkey.ch?

Hi, would it be possible to integrate the accelerator-key VK_APPS into the \include\vkey.ch-file (it's the button on the keyboard for the popup-menu)? Now I have implemented this line in my own include.ch-file, but I think it would be nicer if ...
by gkuhnert
Tue Feb 01, 2011 1:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Is it possible to integrate VK_APPS in vkey.ch?
Replies: 3
Views: 678
PreviousNext

Return to advanced search