Search found 11543 matches: work

Return to advanced search

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. It works if I use Hamachi (VPN), but not ...
by byron.hopp
Thu Mar 28, 2024 7:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RecordSet via Web
Replies: 0
Views: 28

Re: records on xbrowse

oDbf:OrdKeyCount() ) This works only for oDbf. Using oBrw:nLen or oBrw:KeyCount() works for all datasources. ok but the button are not refreshed , only when I move the mouse into obrw for a sample WHEN ( oBrw:nDataRows <= oBrw:nLen ...
by Silvio.Falconi
Tue Mar 26, 2024 12:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 210

Re: records on xbrowse

... changes when browse is resized. DEFINE BUTTON/BTNBMP ..... (arrows)  ... WHEN ( oBrw:nDataRows >= oBrw:nLen ) would work Not%20working I made @  oBrw:nbottom+2, oBrw:nWidth-86 BTNBMP    aBtn[ 5 ]   SIZE 30, 25 PIXEL OF oDlg FLAT GDIP NOROUND  ; //        RESOURCE ...
by Silvio.Falconi
Tue Mar 26, 2024 11:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 210

Re: records on xbrowse

oBrw:nLen and oBrw:nDataRows get their values after the first Refresh/paint of the browse.
Also oBrw:nDataRows changes when browse is resized.

Code: Select all  Expand view
DEFINE BUTTON/BTNBMP ..... (arrows)  ... WHEN ( oBrw:nDataRows >= oBrw:nLen )

would work
by nageswaragunupudi
Tue Mar 26, 2024 9:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 210

Re: Problema super raro

... oRsDet oRsWrk and oRsDet are RecordSets. You should not use recordsets. Use table names. if the table names are "original" and "work", then the sql is SELECT * INTO [WORK] FROM [ORIGINAL]
by nageswaragunupudi
Sun Mar 24, 2024 10:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 223

Re: Problema super raro

First please let me know if you built my sample program as it is (without any changes) and tested it? Did it work or not?
by nageswaragunupudi
Sun Mar 24, 2024 10:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 223

Re: Another for Btnbmp

Silvio

FLAT NOROUND GDIP

When these attributes are used, it doesn't work.
I have done tests without them, then it works.
There are so many ifs in the class that it would seem better to me to make a new one without all this legacy.
Best regards,
Otto

I used: C:\fwh2023\source\classes\btnbmp.prg
by Otto
Sun Mar 24, 2024 5:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 602

Re: Mr Rao :SetFilter no funciona

We fixed the bug and this will work from the next release.

You said you are using FWH2307 with Harbour and BCC.
Please contact me on this email
nageswaragunupudi [at] gmail [dot] com.

I will send you the revised FiveH.lib for FWH2307 with this fix.
by nageswaragunupudi
Sat Mar 23, 2024 8:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mr Rao :SetFilter no funciona
Replies: 11
Views: 213

Re: Mr Rao :SetFilter no funciona

La tabla debe de tener un indice ordenado por el campo FIRST

It is not at all necessary to have index for filters to work.
by nageswaragunupudi
Sat Mar 23, 2024 8:21 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mr Rao :SetFilter no funciona
Replies: 11
Views: 213

Re: Compiling with new harbour_bcc770_32_20240309

... Work\FWH\lib\Fiveh.lib=40C:\Work\FWH\lib\Fivehc.lib=41  but also want uuid.lib But I saw on bcc7.30 there are two uuid.lib one on C:\Work_old\bcc7\lib ...
by Silvio.Falconi
Thu Mar 21, 2024 8:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiling with new harbour_bcc770_32_20240309
Replies: 15
Views: 378

Re: Question about performance RowSet

Please try this for adding new record. This is working for me and should work for you too. First run this program as it is without changes before you adopt to your tables. function MariaNewRecord()   local oCn := maria_Connect( "209.250.245.152,fwh,fwhuser,FiveTech@2022" ...
by Eroni
Wed Mar 20, 2024 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 466

Re: Question about performance RowSet

...   aRow := { "aa","bb" }    oCn:Upsert( "states", nil, { aRow } )endif  But insert not work. Table `states` has 3 fields: id, code, name where id is autoincrement field This should work: oCn:Upsert( "states", nil, { ...
by Eroni
Wed Mar 20, 2024 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 466

Re: Question about performance RowSet

Please try this for adding new record. This is working for me and should work for you too. First run this program as it is without changes before you adopt to your tables. function MariaNewRecord()   local oCn := maria_Connect( ...
by nageswaragunupudi
Wed Mar 20, 2024 4:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 466

Re: Question about performance RowSet

... == NIL // not found, then inserts aRow := { "aa","bb" } oCn:Upsert( "states", nil, { aRow } ) endif But insert not work. Table `states` has 3 fields: id, code, name where id is autoincrement field This should work: oCn:Upsert( "states", nil, { ...
by nageswaragunupudi
Wed Mar 20, 2024 3:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 466

Re: Question about performance RowSet

... { "WA", "Washington" }// Edit the array and thenoCn:Upsert( "states", nil, { aRow } ) Mr Rao, this works when there exists any record from select. When the select there no result, insert does not work. I am try this: aRow := oCn:QueryResult( "select ...
by Eroni
Wed Mar 20, 2024 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 466
Next

Return to advanced search