CHECKBOX EM READONLY
CHECKBOX EM READONLY
Como colocar CHECKBOX em readonly
Re: CHECKBOX EM READONLY
REDEFINE CHECKBOX oCheck ID 101 OF oDlgrasptty wrote:Como colocar CHECKBOX em readonly
oCheck:disable()
William, Morales
Saludos
méxico.sureste
Saludos
méxico.sureste
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
You have to call to Disable(), as William has explained you, but do it from the ON INIT clause of the dialog, as from that moment the control has a valid Windows handle:
Code: Select all
REDEFINE CHECKBOX oCheck ID 101 OF oDlg
ACTIVATE DIALOG oDlg ;
ON INIT oCheck:disable()