RADIO Horizontal según un ARRAY

Post Reply
dobfivewin
Posts: 325
Joined: Sun Feb 03, 2008 11:04 pm
Location: Argetnina

RADIO Horizontal según un ARRAY

Post by dobfivewin »

Amigos del Foro...

Tengo un RADIO (Horizontal) cuya cantidad de Items a se arma según un array (en este ejemplo tiene 4 elementos)

en tema es que si la variable (mRESUL01) viene con un valor derminado (ejemplo 3) cuando se muestra el RADIO, NO se acomoda en el items 3°, NO se acomodad en ningun los items a seleccionar.

Code: Select all

    ColuRAD := 5
    For W = 1 TO len(TipoResu)
      If W = 1 
        @ lineRAD,ColuRAD RADIO     oRad01 VAR mRESUL01 ITEMS TipoResu[W] OF oDlgCar SIZE 20,10
      Else
        @ lineRAD,ColuRAD RADIOITEM TipoResu[W] RADIOMENU oRad01 OF oDlgCar SIZE 20,10
      EndIf
      ColuRAD := ColuRAD + 5 
    Next W
Se puede hacer ?

David
Argentina
dobfivewin
Posts: 325
Joined: Sun Feb 03, 2008 11:04 pm
Location: Argetnina

Re: RADIO Horizontal según un ARRAY

Post by dobfivewin »

Estimados

Se puede?, o debo hacer de otra forma?

Gracias

David
argentina
User avatar
Daniel Garcia-Gil
Posts: 2365
Joined: Wed Nov 02, 2005 11:46 pm
Location: Isla de Margarita
Contact:

Re: RADIO Horizontal según un ARRAY

Post by Daniel Garcia-Gil »

Hola David...

Colocal esto despues de crear los RADIOS

Code: Select all

oRad01:aItems[ mRESUL01 ]:lChecked := .T.
our best documentation is the source code
Isla de Margarita Venezuela.
danielgarciagil@gmail.com
http://tdolphin.blogspot.com/
https://www.dropbox.com/referrals/NTI5N ... rc=global9
dobfivewin
Posts: 325
Joined: Sun Feb 03, 2008 11:04 pm
Location: Argetnina

Re: RADIO Horizontal según un ARRAY

Post by dobfivewin »

Estimado Daniel


un espectaculo... :lol:

Muchas gracias

David
argentina
dobfivewin
Posts: 325
Joined: Sun Feb 03, 2008 11:04 pm
Location: Argetnina

Re: RADIO Horizontal según un ARRAY

Post by dobfivewin »

Estimados....

Para agregar que el texto tenga un color determinado le coloco asi y no funciona

Code: Select all

    For W = 1 TO len(TipoSeleResu)
      If W = 1 
        @ lineRAD,ColuRAD RADIO     oRad01 VAR mRESUL01 ITEMS TipoSeleResu[W] OF oFol:aDialogs[1] SIZE 20,10 [b]COLOR nRGB(130,99,53)[/b]   
      Else
        @ lineRAD,ColuRAD RADIOITEM TipoSeleResu[W] RADIOMENU oRad01 OF oFol:aDialogs[1] SIZE 20,10 [b]COLOR nRGB(130,99,53)[/b]    
      EndIf
      ColuRAD := ColuRAD + SumCoRA
    Next W
Post Reply