FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Disappearing radio items.
Posts: 723
Joined: Tue Sep 04, 2007 08:45 AM
Disappearing radio items.
Posted: Sun Apr 01, 2012 03:39 AM
Guys:

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


Thank you.
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Disappearing radio items.
Posted: Sun Apr 01, 2012 07:44 AM
Works fine here using latest FWH:

Code (fw): Select all Collapse
#include "Fivewin.ch"


FUNCTION MAIN()

    LOCAL oDlg

    LOCAL oRad, nActive

    DEFINE DIALOG oDlg

    @ 10,10 RADIO oRad VAR nActive PROMPT "&Active", "&Inactive", "A&ll" 3D SIZE 85,10 OF oDlg UPDATE PIXEL

    ACTIVATE DIALOG oDlg

    RETURN NIL


EMG
Posts: 723
Joined: Tue Sep 04, 2007 08:45 AM
Re: Disappearing radio items.
Posted: Sun Apr 01, 2012 06:24 PM

Enrico:

Thank you for your reply. I'm using FWH 10.05. The caption gets invisible when pressing the accelerator keys. Thank you.

Continue the discussion