Search found 3853 matches: object

Return to advanced search

New FTDN April 2024 (FWH 24.04)

... but providing it the right parameters. Now it is working as expected. * FWMariaConnection: - New method Record( cTable, [cWhere] ) --> Record Object using the new FWMariaRecord class (source\classes\mariarec.prg) derived from tDataRow class. This enables editing a single existing record or ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 0
Views: 56

Error Fwh 24.02 con XBROWSE

... ICON oIco NOZOOM NOICONIZE @ 10,10 XBROWSE oBrw OF oWnd ; DATASOURCE oQry ; COLUMNS aCols ; LINES CELL AUTOSORT SIZE -10,-10 PIXEL FONT oFont WITH OBJECT oBrw :bClrRowFocus := oBrw:bClrSelFocus :nRowHeight := 25 :nHeaderLines := 4 :nHeaderHeight := 70 :oHeaderFonts := oFont :nFooterHeight := 20 ...
by CARLOS ATUNCAR
Mon Apr 08, 2024 6:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error Fwh 24.02 con XBROWSE
Replies: 0
Views: 101

Re: also error with btnbmp SHOWPOPUP

... oBtn:nLeftreturn nil  There are two functions: 1) PopupObject() This function does not show popup menu, but only returns a popup menu object. Only such functions should be used with ACTION ::ShowPopUp() 2) PopupExec(): This function shows the popmenu itself and returns NIL. This function ...
by nageswaragunupudi
Sun Mar 31, 2024 4:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1718

Re: also error with btnbmp SHOWPOPUP

...  } ) If you use ::ShowPopUp, the function MenuContextual(...) should not return NIL, but should return a PopupMenu object. It looks like this function is returning NIL not a popup menu object. Please check the last line of this function. That is the exact reason ...
by nageswaragunupudi
Sun Mar 31, 2024 3:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1718

Re: DNS

... blocking or asynchronous Winsock calls issued by any thread in your application. This cancellation happens without notification messages or event object signaling, which could potentially lead to unexpected behavior if not handled carefully.
by Antonio Linares
Fri Mar 29, 2024 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DNS
Replies: 5
Views: 1201

RecordSet via Web

I have been using an ADODB RecordSet object to connect to my server over the internet. oRs:Open( cUrl ). Actually very fast, works well. What I don't know, or can't figure out is if I can use this on a secure site. Can't seem to get it to work. ...
by byron.hopp
Thu Mar 28, 2024 7:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RecordSet via Web
Replies: 0
Views: 236

Re: Another for Btnbmp

... I have this result https://i.postimg.cc/2jVKcWLj/jjj.gif try with this config ren NOBORDER on btnbmp for each oBtn in aBtn WITH OBJECT oBtn :nClrText := { |lOver,o| If( o:HasFocus(), DLG_nColortitle1, If( lOver, RGB(195,195,185), RGB(195,195,185) ) ) } :bClrGrad := { |lOver,o| ...
by Silvio.Falconi
Mon Mar 25, 2024 9:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 4968

Re: Question about performance RowSet

... cWhere )oRec:Edit() for editing a single existing record and saving the modifications. oCn:Record(...) creates a FWMariaRecord class object. This class is derived from TDataRow class and can be used/edited and saved like any normal TDataRow object.
by nageswaragunupudi
Thu Mar 21, 2024 10:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4042

Re: Question about performance RowSet

when i have a button to "insert' a new record, is there other way editing data without RowSet object? Please try this and let us know.   oData := TArrayData():New( oCn, "select * from <tablename> limit 1" )   oData:Record(,.t.):Edit()  ...
by Eroni
Wed Mar 20, 2024 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4042

Re: Fulltext-Search

... = command prompt ps 15 sec Get-ChildItem -Path c:\www\htdocs -Recurse -Filter *.prg | Select-String -Pattern "AP_GetPairs()" | ForEach-Object { $_.Path } I think I'll continue with PowerShell. Best regards, Otto
by Otto
Sun Mar 17, 2024 9:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltext-Search
Replies: 6
Views: 1256

Re: Question about performance RowSet

when i have a button to "insert' a new record, is there other way editing data without RowSet object? Please try this and let us know.   oData := TArrayData():New( oCn, "select * from <tablename> limit 1" )   oData:Record(,.t.):Edit()  ...
by nageswaragunupudi
Sat Mar 16, 2024 1:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4042

Question about performance RowSet

... browsers becomes very large. For example, when i have a button to "insert' a new record, is there other way editing data without RowSet object? Thanks in advance.
by Eroni
Thu Mar 14, 2024 8:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4042

Re: WebView resize

Dear Otto, You are creating a new TWebView object on each PAINT event! You have to modify your code this way: function webshow(console,hWnd, nlink)   local hPost := {}   local cHtmlOrUrl :=  "C:\fwh2023\samples\address.html"  ...
by Antonio Linares
Sat Mar 09, 2024 8:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2102

Re: How to put a horizontal scroll bar at the bottom of xBrowse

But they are both standard when we setup the xbrowse ? Did you turn off the horizontal ?

with

oBrw:lHScroll := .T. or .f. we can put them on and off.

or in the

With object oBrw
...
...
:lHScroll := .T.
END

By change some of the Xbrowse code to show ?
by Marc Venken
Tue Mar 05, 2024 10:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to put a horizontal scroll bar at the bottom of xBrowse
Replies: 6
Views: 336

Re: BackUp [cCondition]

... cSql, cDbf, lForUpdate ) or Copy table to another server METHOD CopyTableToServer( cTable, oDest ) oDest is the connection object to the backup server.
by nageswaragunupudi
Tue Mar 05, 2024 2:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: BackUp [cCondition]
Replies: 1
Views: 159
Next

Return to advanced search