Search found 2579 matches: above

Return to advanced search

Re: ADS with 64bit FWH Apps

... of ace of this version: SET HB_DIR_ADS=\Ace\101049 this set to compile build libs with ace 10, this way like reinaldo says we can access to 10 and above local and server. maybe reinaldo can help us... thanks
by NWKL
Mon Apr 15, 2024 1:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS with 64bit FWH Apps
Replies: 24
Views: 2291

Re: Problem with valid email refresh btnbmp

Hi Friends,

I have tested the Antonio's above code with:

Win11,
FWH 2310,
xHarbour 1.3.1 Lastest Build,
BCC760

And it is working as intended.

-Ramesh Babu
by RAMESHBABU
Fri Apr 12, 2024 6:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2370

Re: compile errors

I've updated the harbour files and made the changes mentioned above. Done to 1 error now: Turbo Incremental Link 6.80 Copyright (c) 1997-2017 Embarcadero Technologies, Inc. Error: Unresolved external '___get_std_stream' referenced from C:\HARBOUR\LIB\HBVM.LIB|fm ...
by Jeff Barnes
Thu Apr 11, 2024 3:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: compile errors - send a SMS
Replies: 19
Views: 293

Re: FWHMYSQL Insert failing

When you face such problems, I suggest you compare the
oCn:InsertSQL( ... )
with
oCn:CreateTableSQL( <table> )

or
Please create a small sample that we can execute at our end on the above cloud server.
by nageswaragunupudi
Sat Apr 06, 2024 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMYSQL Insert failing
Replies: 6
Views: 401

Re: FWHMYSQL Insert failing

... AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8_unicode_ci  This is the SQL generated and executed by the Insert(...) method above: INSERT INTO `testinsert` ( `ftext`,`fnum` ) VALUES ( 'one',1 )
by nageswaragunupudi
Sat Apr 06, 2024 1:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMYSQL Insert failing
Replies: 6
Views: 401

Re: FWErrorsys()

... + ;      FW_ArrayAsList( aStack, CRLF ), ;      "MY ERROR DIALOG" )return nil Please run the above three programs as it is and see. We can do all the aboe without modifying the errsysw.prg
by nageswaragunupudi
Thu Apr 04, 2024 12:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWErrorsys()
Replies: 8
Views: 1822

Re: harbour/xharbour appear ADS functions error

... Error: Unresolved external 'AdsIsRecordLocked' referenced from S:\SETTOOL32\HARBOUR\LIB\RDDADS.LIB|adsfunc ... Please check if the above symbol are in the rddads.lib you are using. It looks like you are not using the correct build as Harbour has its libs in a sub-sub folder, not ...
by Enrico Maria Giordano
Wed Apr 03, 2024 12:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: harbour/xharbour appear ADS functions error-SOLVED
Replies: 47
Views: 8386

Re: also error with btnbmp SHOWPOPUP

... itself and returns NIL. This function SHOULD NOT BE used inside ::ShowPopup() and should be used directly as ACTION <function> In the above sample, if we use the second function in ShowPopup() like this ::ShowPopUp( { |oBtn| PopUpExec( oBtn ) } ) we get the ...
by nageswaragunupudi
Sun Mar 31, 2024 4:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1690

Re: Como revertir ::nStyle = nOr( ::nStyle, ES_READONLY )

You can use the above code to Toggle ReadOnly status during runtime. This code is tested.

From the next version, we have provided DATA lReadOnly. We can toggle this at runtime with oEdit:lReadOnly := .T. or .F..
by nageswaragunupudi
Tue Mar 26, 2024 4:43 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como revertir ::nStyle = nOr( ::nStyle, ES_READONLY )
Replies: 5
Views: 1085

Re: Question about performance RowSet

... New( aData, aStruct ) CLASS TArrayData Please change it as: METHOD New( aData, aStruct, p3 ) CLASS TArrayData With this fix, the above examples works perfectly with xHarbour also. Mr Rao, works fine, thank you.
by Eroni
Fri Mar 22, 2024 12:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4022

Re: Question about performance RowSet

... New( aData, aStruct ) CLASS TArrayData Please change it as: METHOD New( aData, aStruct, p3 ) CLASS TArrayData With this fix, the above examples works perfectly with xHarbour also.
by nageswaragunupudi
Thu Mar 21, 2024 10:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4022

Re: Question about performance RowSet

As you indicated above, if we want to edit just one record in a table, we can aRow := oCn:QueryResult( "select * from states where code='WA'" )//We get a single dim array { "WA", "Washington" ...
by Eroni
Wed Mar 20, 2024 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4022

Re: TITLE CLASS BUG with oDLg TRansparent

... work , please change the color and size of the throw bar. A question if you are not capable with the atTitle class why do you send messages and above all because you are a manager of this forum ? No puedo calmarme cuando me escribes estas herejías, tienes que usar los colores tal como te los ...
by Silvio.Falconi
Sun Mar 17, 2024 5:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TITLE CLASS BUG with oDLg TRansparent - RESOLVED-
Replies: 9
Views: 1649

Re: Question about performance RowSet

... to Execute. if we use an sql like "select age from customer where id = 100" this function returns 58, instead of {{58}} As you indicated above, if we want to edit just one record in a table, we can aRow := oCn:QueryResult( "select * from states where code='WA'" )//We ...
by nageswaragunupudi
Sat Mar 16, 2024 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4022

Re: change size dialog selecting noption folder

... restored it providing it the right parameters: ::Resize( 0, ::nWidth, ::nHeight ) If you are using FWH 24.02 please restore that line fixed as above, thanks Surely we will publish a revised FWH 24.02 in the next days with these little changes ¿lo hará automáticamente? o ¿Deberíamos darle los ...
by Silvio.Falconi
Fri Mar 15, 2024 9:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change size dialog selecting noption folder
Replies: 3
Views: 619
Next

Return to advanced search