Soporte de DatePickers

Post Reply
User avatar
Antonio Linares
Site Admin
Posts: 42421
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 14 times
Been thanked: 48 times
Contact:

Soporte de DatePickers

Post by Antonio Linares »

Gracias a Dino! :-)

Image

TestDPick.prg

Code: Select all | Expand

// Testing DatePickers

#include "FiveMac.ch"

function Main()

   local oDlg, oDPick
         
   DEFINE DIALOG oDlg TITLE "Test DatePicker" ;
      FROM 20, 300 TO 400, 200
       
   @ 20, 20 DATEPICKER oDPick OF oDlg SIZE 400, 300
     
   @ 20, 200 BUTTON "Value" OF oDlg ACTION MsgInfo( oDPick:GetText() )
   
   @ 20, 300 BUTTON "End" OF oDlg ACTION oDlg:End()
   
   ACTIVATE DIALOG oDlg
     
return nil
 
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply