... Habría usar el estilo SBS_CENTERALIGN al crear el control. Para eso habría que modificar la clase TStatusBar así: #define SBS_CENTERALIGN 0x0004 ::nStyle = nOR( WS_CHILD, WS_VISIBLE, SBS_CENTERALIGN ) Pruébalo y a ver si funciona como deseas. Probaste con ? set message of _oWnd to cMensajeMenu ...
... BS_CENTER BS_RIGHT * Vertical Alignment Constant BS_TOP BS_VCENTER BS_BOTTOM * To Show Text Left side of Checkbox (Default Right) BS_LEFTTEXT oCb:nStyle := nOr(WS_CHILD, WS_VISIBLE, BS_AUTOCHECKBOX, WS_TABSTOP,....Either of Options of Your Choice) -Ramesh Babu
Carlos, Prueba con: oEdit:WinStyle( ES_READONLY, .F. ) // ó .T. si necesitas volver a aplicarlo Gracias Antonio, Pero no ha funcionado, permitía editar el texto tanto con .F. como con .T.; le he aplicado: oEdit:WinStyle( 2048 /* ES_READONLY */ , .F. ) 2048 lo he encontrado en winapi.ch A ver si se ...
... oBtn[3] PROMPT "&Three" OF oDlg PIXEL SIZE 50,30 ACTION MsgInfo("Three") oBtn[2]:nStyle:= nOR(WS_CHILD, WS_VISIBLE) ACTIVATE DIALOG oDlg CENTEREDRETURN NIL Hi Carlos, Your example works great but if i put this solution ...
... cImage ) Para añadir cualquier imagenm no sólo mapas de bits e iconos. * Clase TListView: (source\classes\tlistvie.prg) - Nuevo método SetStyle( nStyle ) Por favor, revisa el código fuente prg para conocer la lista de estilos. * ListView samples: (1) listvie1.prg revisado (2) listvie2.prg implementación ...
... New Method AddImage( cImage ) To add any image, not only bitmaps and icons. * TListView class: (source\classes\tlistvie.prg) New Method SetStyle( nStyle ) Refer prg source for the list of styles. * ListView: Samples: (1) revised litvie1.prg amd new sample (2) listvie2.prg for Unicode implementation ...
hi, i want to create a Window which are "on TOP" of all other and will "stay" like MsgInfo() --- in Help Dialog <nStyle> An optional DialogBox style. There are several samples in the SAMPLES\ subdirectory showing you how to manipulate this value. Windows: <nStyle> ...