Search found 11 matches: lefttext

Return to advanced search

Re: Position of the text in the checkbox

Hi, The following may be useful to you. * Horizontal Alignment Constant BS_LEFT 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...
by RAMESHBABU
Wed Jun 12, 2024 1:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Position of the text in the checkbox
Replies: 2
Views: 373

Re: Problem with RADIO control

Tim,

any samples I can try here? Anyway, try with this more complete definition:

BS_AUTORADIOBUTTON | BS_LEFTTEXT | WS_CHILD | WS_VISIBLE

EMG
by Enrico Maria Giordano
Fri Sep 19, 2014 7:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with RADIO control
Replies: 8
Views: 1567

Re: "FiveWin/3 Cannot create Dialog Box" errors?

A error reported in Line 151 Incomplete Expresson !!! CONTROL "Ei ekspordi", 4001, "Button", BS_AUTOCHECKBOX| BS_RIGHT |BS_LEFTTEXT|WS_TABSTOP, 432, 4, 42, 9 Line OK !!! ------------- CONTROL "Kinnipidamisi teostatakse", 3834, "Button", BS_AUTOCHECKBOX|BS_LEFT...
by ukoenig
Sun Apr 01, 2012 10:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: "FiveWin/3 Cannot create Dialog Box" errors?
Replies: 22
Views: 11667

Re: fwh\samples\RE.prg - FiveWin Resources Editor underrated

After a long time I had again a look into re.prg. I changed the code to get the ID of the control into the dialog. But I can’t find out how to do with comboboxes. It would also be fine to have the caption of the says. The dialog is saved to clipboard and you can paste it to your source code. Would y...
by Otto
Sun Aug 30, 2009 6:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: fwh\samples\RE.prg - FiveWin Resources Editor underrated
Replies: 38
Views: 12570

JM, Parece que Windows no contempla esa posibilidad en los estilos de los botones: #define BS_PUSHBUTTON 0x00000000L #define BS_DEFPUSHBUTTON 0x00000001L #define BS_CHECKBOX 0x00000002L #define BS_AUTOCHECKBOX 0x00000003L #define BS_RADIOBUTTON 0x00000004L #define BS_3STATE 0x00000005L #define BS_AU...
by Antonio Linares
Mon Nov 17, 2008 8:47 pm
 
Forum: FiveWin para Pocket PC
Topic: Boton con el texto en vertical
Replies: 3
Views: 878

setting font on Group Box

I observed that in .rc has [1 24 "WindowsXP.Manifest" ] the font set in oFolder:SetFont( oFont ) is inherited by oGroup and direspecting oGroup:Setfont( oNewFont ) :( :( :( sample .rc 1 24 "WindowsXP.Manifest" INFOFLD DIALOG 1, 1, 200, 200 STYLE WS_CHILD FONT 10, "Courier" { CONTROL "", 103, "SysTab...
by fraxzi
Sat May 24, 2008 2:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: setting font on Group Box
Replies: 26
Views: 6001

fwh

Aquí envío el rc en txt DIA_CLIF1 DIALOG 46, 43, 255, 290 STYLE 0x4L | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_THICKFRAME | WS_MINIMIZEBOX FONT 8, "MS Sans Serif" { EDITTEXT 106, 47, 3, 36, 11, ES_RIGHT | WS_BORDER | WS_TABSTOP EDITTEXT 107, 47, 17, 149, 12 EDITTEXT 108, 46, 33, 137, 12 EDITTEXT 109...
by surGom
Mon Nov 20, 2006 2:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: fwh25
Replies: 7
Views: 2028

Aquí está ********************************** EMPRESAS DIALOG 34, 98, 272, 197 STYLE DS_MODALFRAME | 0x4L | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU CAPTION "Tratamiento de Empresas" FONT 8, "MS Sans Serif" { EDITTEXT 101, 58, 20, 25, 12 EDITTEXT 108, 210, 18, 42, 12 EDITTEXT 102, 58, 34, 197,...
by JoseLuis
Mon Nov 13, 2006 10:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Transparencias
Replies: 20
Views: 7879

xharbour from xharbour.com and fwh aug release Problems

When I try to make fwh samples I get the following error file. What do I have to do ? Thanks Mike. Type: C >>>xhb.exe -o"bigfold.c" -m -n -w -p -q -gc0 -I"C:\FWH\INCLUDE" -I"C:\fwh\include" -I"C:\xHB\include" -I"C:\xHB\include\w32" "bigfold.prg"<<< xHarbour Compiler build 0.99.61 (...
by Mike Buckler
Mon Sep 11, 2006 9:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xharbour from xharbour.com and fwh aug release Problems
Replies: 7
Views: 2197

#DefineBS_LEFTTET 32 is not working?

Dear Antonio&Enrico,

This code does not work.

oBtn:nStyle := NOR( oBtn:nStyle, BS_LEFTTEXT )

Best regards,
Dutch
by dutch
Mon Aug 28, 2006 12:03 pm
 
Forum: FiveWin for Pocket PC
Topic: BUTTON question?
Replies: 14
Views: 4113

Dutch,

> 1. BUTTON class does still support CRLF for seperate line?

Only if you use it from resource and you use this style:
#define BS_MULTILINE 1024

> 2. BUTTON Caption can define left alignment?

Same as above but using BS_LEFTTEXT
by Antonio Linares
Mon Aug 28, 2006 9:20 am
 
Forum: FiveWin for Pocket PC
Topic: BUTTON question?
Replies: 14
Views: 4113

Return to advanced search