Search found 257 matches: clauses

Return to advanced search

Re: Another for Btnbmp

... TButton, TButtonBmp. This border indicates to the user which button has focus currently. You can avoid painting this border, by specifying the clauses "FLAT" along with "NOBORDER". In this case no FocusRect is drawn around the button in focus as a result, the user does not ...
by Silvio.Falconi
Mon Mar 25, 2024 9:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 4957

Re: Another for Btnbmp

... TButton, TButtonBmp. This border indicates to the user which button has focus currently. You can avoid painting this border, by specifying the clauses "FLAT" along with "NOBORDER". In this case no FocusRect is drawn around the button in focus as a result, the user does not ...
by nageswaragunupudi
Mon Mar 25, 2024 1:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 4957

Re: GROUPBOX

... color of the group. <oFont> A reference to the font object used for the Group control. <nId> The resource identifier for this control. CLAUSES PIXEL To specify pixel corrdinates. DESIGN To drag around the control using the mouse. TRANSPARENT To make the Group transparent.
by TimStone
Tue Feb 27, 2024 7:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GROUPBOX
Replies: 3
Views: 178

Re: TGet():ReDefine - UTF8 encoding fails [Unsolved]

... 70 ON CHANGE { || oDlg:Update() }  In Unicode Gets picture clause "@!" works. Please do not use any other picture clauses. We can also use the clauses CASE "UPPER"CASE "LOWER"CASE "PROPER" VARCHAR <nMaxChars>// orVARCHAR { ...
by nageswaragunupudi
Sun Nov 12, 2023 2:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet():ReDefine - UTF8 encoding fails [Solved]
Replies: 6
Views: 316

Re: xBrowse - Dates - FWH 2310

... 2. In that case , even with 2307, xbrowse must be displaying '999999' in the WRKDAT column on ARM machine. Right? In our software, the picture clauses are built by database.prg and then used by xbrowse. We need to find out why database.prg is working differently on different machines. Again, ...
by nageswaragunupudi
Wed Nov 08, 2023 3:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - Dates - FWH 2310
Replies: 19
Views: 1448

Re: Filtrar consulta de tdolphin

... "999,999,999.99" Our recommendation is NOT to write any code, which is not essential. In other words, do not specify picture clauses at all in xbrowse. Keep this one line of code at the beginning of the Application FWNumFormat( "E", .t. ) // European format ...
by nageswaragunupudi
Tue Sep 26, 2023 6:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Filtrar consulta de tdolphin
Replies: 15
Views: 816

Re: PICTURE for DATE() ?

hi,
nageswaragunupudi wrote:For editing array of values with known Field Structure, please try something like this:

All picture clauses are taken care of

ok thx for the Tip
by Jimmy
Thu Jul 20, 2023 8:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: PICTURE for DATE() ?
Replies: 10
Views: 398

Re: PICTURE for DATE() ?

...  oArrData := TArrayData():New( { aVals }, aStruct )   oArrData:Edit()return nil  All picture clauses are taken care of
by nageswaragunupudi
Thu Jul 20, 2023 7:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: PICTURE for DATE() ?
Replies: 10
Views: 398

Re: PICTURE for DATE() ?

... i say i use a Array which is from "Result-Set" (not ADO) of SQL Query i don´t "see" DATEFORMAT in CLASS TDataRow Note: Picture clauses for Dates in (x)Harbour PICTURE "@D" // Use dateformat set. (default American, i.e., 'mm/dd/yy' ) PICTURE "@E" // Force ...
by Jimmy
Tue Jul 18, 2023 9:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PICTURE for DATE() ?
Replies: 10
Views: 398

Re: PICTURE for DATE() ?

... ii, cNewPic ) Use oRec:FieldPic( ii, "@D" ) TDataRow() automatically sets correct dateformt to Dates also Note: Picture clauses for Dates in (x)Harbour PICTURE "@D" // Use dateformat set. (default American, i.e., 'mm/dd/yy' ) PICTURE "@E" // Force ...
by nageswaragunupudi
Mon Jul 17, 2023 12:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PICTURE for DATE() ?
Replies: 10
Views: 398

Re: INDEX on / seek in MARIA DB

In RDBMSs other than DBFs, indexes are not used for Navigation or for Seeks. The purpose of indexes is only to optimize where clauses for queries. Intelligent planning of indexes is an essential part of database design to optimize queries in OLAP (Online Analytical processing). For the ...
by nageswaragunupudi
Thu May 18, 2023 10:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: INDEX on / seek in MARIA DB
Replies: 5
Views: 399

Re: How to set Brush size?

... This is all that is enough. The image can be bmp,png,jpg or any other image type It can be a file or resource. You try both STRETCH and RESIZE clauses separately and decide what you prefer. I personally prefer RESIZE and recommend instead of STRETCH. The entire window is covered by the brush ...
by dutch
Sat May 06, 2023 5:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set Brush size?
Replies: 4
Views: 257

Re: How to set Brush size?

... This is all that is enough. The image can be bmp,png,jpg or any other image type It can be a file or resource. You try both STRETCH and RESIZE clauses separately and decide what you prefer. I personally prefer RESIZE and recommend instead of STRETCH. The entire window is covered by the brush ...
by nageswaragunupudi
Sat May 06, 2023 11:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set Brush size?
Replies: 4
Views: 257

Re: Change POPMENU background color?

... can I change background color (ClrPane) of POPMENU? I try COLORMENU COLORSELECT but it doesn't change. Thanks in advance, To be able to use those clauses, you have to define the 2013 style or simply use the COLORS clause MENU oMnu COLORS .....    MENU oPopup POPUP 2013 FONT oFontX NOBORDER ...
by cnavarro
Sat Apr 15, 2023 6:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change POPMENU background color?
Replies: 4
Views: 218

Re: xBrowse footer picture

Mr. Rao,

After setting :cDataType := "N" for the picture clauses of cells and footers everything showed up correct.
My problem was the the array was empty at the beginning of xBrowse. So the browse didn't know whether there are numeric values or not.

Regards,
Detlef
by Detlef
Tue Apr 04, 2023 11:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse footer picture
Replies: 11
Views: 730
Next

Return to advanced search