Search found 2333 matches: box

Return to advanced search

Re: Get infield

Puedes probar con estas claúsulas:

[INRECT <aInRect>];
aRect for paint: coordinates relative to nTop and nBottom of get

[INSIZE <nInWidth>, <nInHeight> ];
Width and Height for box paint
by Antonio Linares
Mon May 13, 2024 4:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Get infield
Replies: 4
Views: 88

Re: CODIGO DE BARRAS. ERROR CON FILLRECT()

... nLen :=round ( nLen * 10 * oPrint:nHorzRes() / oPrint:nHorzSize(), 0 ) end for n:=1 to len(cBarra) if substr(cBarra,n,1) ='1' if lHorz * oPrint:Box(nx,ny,nx+nLen,(ny+=nWidth)) oPrint:fillRect({nx,ny,nx+nLen,(ny+=nWidth)},oBr) else oPrint:Box(nx,ny,(nx+=nWidth),ny+nLen) * oPrint:fillRect({nx,ny,(nx+=nWidth),ny+nLen},oBr) ...
by pedroluis
Sun May 12, 2024 8:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CODIGO DE BARRAS. ERROR CON FILLRECT()
Replies: 10
Views: 123

Re: how to change the size of an xbrowse in runtime

... the picture https://i.postimg.cc/NFwR77x7/io.png if I select "age" I go to activate the age filters but I go to activate box number 3, the topmost one, how can I make it so that if the first box is not activated, the age box takes the coordinates of the first box? that ...
by Silvio.Falconi
Sun May 05, 2024 4:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 317

Re: Another for Btnbmp

the btnbmp class takes the color of the text to create the internal box when it has focus Yes, for painting focusrect in case of FLAT style buttons. but it shouldn't be like this....the box must be dotted and not necessarily take the color from the color ...
by Silvio.Falconi
Mon Mar 25, 2024 11:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 5138

Re: Another for Btnbmp

the btnbmp class takes the color of the text to create the internal box when it has focus

Yes, for painting focusrect in case of FLAT style buttons.
by nageswaragunupudi
Mon Mar 25, 2024 12:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 5138

Re: Another for Btnbmp

Nages, I think there is an error the btnbmp class takes the color of the text to create the internal box when it has focus for a sample I set the nClrText :nClrText := { |lOver,o| If( o:HasFocus(), RGB( 219, 230, 244), If( lOver, RGB( 219, 230, 244), RGB( 207, 221, 239) ) ...
by Silvio.Falconi
Mon Mar 25, 2024 9:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 5138

Re: Another for Btnbmp

If that black box is the focus of btnbmp how I can delete that focus?
by Silvio.Falconi
Fri Mar 22, 2024 8:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 5138

Re: Another for Btnbmp

I wish only delete that internal Black Box https://i.postimg.cc/Z5y5F83c/llll.png I tried also with For n= 1 to len(oBtn) obtn[n]:bClrGrad := < |u,oBtn| local clr := RGB( 245,245,235) if oBtn:lActive if oBtn:lMOver clr := ...
by Silvio.Falconi
Wed Mar 20, 2024 11:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 5138

New FTDN February 2024 (FWH 24.02)

... WinINet() was not properly working for xHarbour. Now it is ok. * Enhancement: Class TWebView() new METHOD End() and MESSAGE hWnd. * Samples\oemboxch.prg: How to view oem box chars in a Winodws application. * samples\mariabig.prg: Read and Browse table with 4.1 million records from mysql cloud ...
by Antonio Linares
Sat Mar 02, 2024 8:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 227

Re: To Nageswrao Del Objs on TscrollPanel

... the btnbmps there are also on Panel scroll as you can see on Video I tried with oPanel:CheckResize() and oPanel:Setrange() I see allway the box https://i.postimg.cc/Nj78D599/f.jpg
by Silvio.Falconi
Wed Feb 28, 2024 8:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 755

Re: COMBOBOX

... and it will take me to the link. The RC for COMBOBOX does not have an option to change the font, but you can have differing fonts for each dialog box. Tim
by TimStone
Tue Feb 27, 2024 7:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: COMBOBOX
Replies: 7
Views: 317

GROUPBOX

Dear friends, may I ask for help again please...now i am trying to style a group-box and did this: REDEFINE GROUP oGroup ID 4021 OF oDlg COLOR CLR_MSPURPLE, CLR_ORANGE TRANSPARENT but it seems to not change the background-color of the group-box. please can you help ...
by Ruth
Tue Feb 27, 2024 6:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GROUPBOX
Replies: 3
Views: 191

Re: FW_SaveImage

I think the problem is not saving large formats through the FW_SaveImage function. To get a larger format, I expanded the dialog box to the desired size (oDld:Move()). Further, moving this dialog according to the specified algorithm, I received the device context of the screen. It used ...
by Natter
Fri Feb 16, 2024 4:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_SaveImage
Replies: 8
Views: 483

RC to PRG generator

many times when we are done designing a dialog box, it is tedious to write the code for each control using REDEFINE ... Here you have an utility that automatically writes the code for you: (work in progress, we do appreciate your feedback) #include ...
by Antonio Linares
Sun Feb 11, 2024 3:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RC to PRG generator
Replies: 23
Views: 1244

Re: REDEFINE BUTTON with custom font

... I was able to implement it and adjust the font-sizes. https://mybergland.com/ruth/screen.jpg but now I still struggle with the box itself. Maybe it is possible to have the square form of the checkbox also a little bit bigger? again thank you and have a nice weekend Ruth
by Ruth
Sat Feb 03, 2024 5:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: REDEFINE BUTTON with custom font
Replies: 12
Views: 696
Next

Return to advanced search