Me parece que los Radio buttons en pixels no funcionan; en unidades de Row/Col, sí. Saludos
Rafael
Ejemplo:
- Code: Select all Expand view
// FiveWin for Pocket PC - Testing radio buttons
#include "FWCE.ch"
#include "WinApi.ch"
//-------------------------------------------------------------------
FUNCTION Main()
LOCAL oWnd, nValue
DEFINE WINDOW oWnd TITLE "Test"
nValue := 1
@ 0,0 RADIO nValue ;
ITEMS "Uno", "Dos", "Tres" SIZE 80, 20 PIXEL COLOR "W+/B";
ON CHANGE MsgBeep()
ACTIVATE WINDOW oWnd
RETURN NIL