Search found 386 matches: sets

Return to advanced search

Re: New txbrowse

... it. Yes. Imagine you have many fields for customer archive. the programmer makes all the fields available to the end user but for space reasons sets some columns (defined columns) you end user wants to select the columns to display because you don't like the columns displayed, in the menu there ...
by Silvio.Falconi
Mon Apr 22, 2024 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 359

Re: nYoffset and nXoffset

nXoffset and nYoffset are only used in the methods: New - Sets nXoffset and nYoffset based on printer settings. Cmtr2Pix - Uses nXoffset and nYoffset to convert centimeters to pixels. Mmtr2Pix - Uses nXoffset and nYoffset to convert millimeters to pixels. ...
by Silvio.Falconi
Mon Jan 15, 2024 7:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 832

Re: nYoffset and nXoffset

nXoffset and nYoffset are only used in the methods: New - Sets nXoffset and nYoffset based on printer settings. Cmtr2Pix - Uses nXoffset and nYoffset to convert centimeters to pixels. Mmtr2Pix - Uses nXoffset and nYoffset to convert millimeters to pixels. ...
by Otto
Sun Jan 14, 2024 11:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 832

Re: WebView2 Essentials: Guides, Tips & Resources

... It takes debug settings and a parent window handle as arguments. Navigate(cURL): Navigates the web view to a specified URL. SetHtml(cHtml): Sets the HTML content of the web view. Run(): Runs the web view. Destroy(): Destroys the web view and cleans up resources. Eval(cScript): Evaluates ...
by Otto
Wed Jan 10, 2024 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 481

Re: oCn:Insert() - UTF8 encoding fails [Unsolved]

... also no AnsiToUtf8()/UTF8ToAnsi(). No more 'garbled' characters due to incorrect conversion. No loss of characters due to different character sets. :D
by frose
Fri Nov 10, 2023 6:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oCn:Insert() - UTF8 encoding fails [Unsolved]
Replies: 6
Views: 296

Re: xBrowse - Dates - FWH 2310

... MLS12c folder ( Client ) and copied them from C1 to C2. Then the problem no longer occurred. My mistake was that I did not first compare the two sets of files to see what was different. I do not appear to have a copy of the original set. I just know when I copied over those files, the problems ...
by TimStone
Wed Nov 08, 2023 3:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - Dates - FWH 2310
Replies: 19
Views: 1448

Re: need Help with oBro:bSeek

... is to be used to sort on which column and stores the index/tag information in oCol:cSortOrder. When the header is clicked, xbrowse automatically sets the index tag to oCol:cSortOrder, without disturbing the cuurent record pointer. c.) what about ADO ? Whether ADO or other sources like Mysql, ...
by nageswaragunupudi
Wed Aug 16, 2023 4:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: need Help with oBro:bSeek
Replies: 3
Views: 215

Re: PICTURE for DATE() ?

hi, TDataRow() automatically sets correct dateformt to Dates also as 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 ...
by Jimmy
Tue Jul 18, 2023 9:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PICTURE for DATE() ?
Replies: 10
Views: 397

Re: PICTURE for DATE() ?

oRec:FieldPic( 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' ) ...
by nageswaragunupudi
Mon Jul 17, 2023 12:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PICTURE for DATE() ?
Replies: 10
Views: 397

simple image viewer - sample

... used in the program. 2. **Main Function**: The `Main()` function is the entry point of the program. Here, it initializes several local variables, sets some properties, and defines the GUI of the program. 3. **Dialog Definition**: It defines a dialog box (`oDlg`) with various properties, including ...
by Otto
Fri Jun 09, 2023 6:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: simple image viewer - sample
Replies: 3
Views: 289

Re: CLASS modification

... your brain, and the logical thought involved in programming is an outstanding way to accomplish this task. Retirement sounds great until boredom sets in. Too many of my peers are rapidly declining, or passing away, because they didn't stay active physically and mentally. That is why so many people ...
by TimStone
Thu May 25, 2023 11:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS modification
Replies: 33
Views: 1708

FWAddLanguage(), FWMissingStrings(), FWSaveStrings()

... }, ; { "ODBC open", }, ; { "Recent ODBC connections", }, ; { "Recent ODBC connections strings", }, ; { "Sets", }, ; { "Workareas", } ; } ) it is from FiveDBU.EXE. what does it mean :?: FWAddLanguage() how does it work :?:
by Jimmy
Tue May 16, 2023 4:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWAddLanguage(), FWMissingStrings(), FWSaveStrings()
Replies: 0
Views: 164

Re: XBROWSE Column Question

hi, oBrw:lAutoSort := .t.  // default .f. to invoke autosort feature. We can also use AUTOSORT clause in the XBROWSE command, which sets the flag. WOW, that is nice :D When autosort flag is ON, XBrowse automatically sorts the data on click of header, using the value in oCol:cSortOrder. First ...
by Jimmy
Wed May 10, 2023 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 875

Re: XBROWSE Column Question

... / TAG :?: Set oBrw:lAutoSort := .t.  // default .f. to invoke autosort feature. We can also use AUTOSORT clause in the XBROWSE command, which sets the flag. When autosort flag is ON, XBrowse automatically sorts the data on click of header, using the value in oCol:cSortOrder. First click on ...
by nageswaragunupudi
Wed May 10, 2023 12:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 875

Re: Funcion FW_ReOpenRecordSet

Leandro:

Así de bote pronto, creo que para la situación que presentas deberás abrir
tantos record sets como mdi childs tengas.

Saludos
by Armando
Wed Mar 08, 2023 3:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funcion FW_ReOpenRecordSet
Replies: 3
Views: 352
Next

Return to advanced search