Search found 2583 matches: above

Return to advanced search

Re: Filter on Xbrowse

... 1) if I click in the first checkbox (married) the procedure must change the size of the xbrowse and must display two radio items at the top above the words "filter by" 1) married 2) unmarried 2) if I click in the second checkbox (age) the procedure must further change the dimensions ...
by Silvio.Falconi
Thu May 02, 2024 6:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 685

2404 Fivewin.ch error -- Antonio

... declaration follows executable statement2 errors  So far this is the first FiveWin error I have come across ... do you see something in the script above that would cause this error ?? Thanks Rick Lipkin
by Rick Lipkin
Mon Apr 29, 2024 5:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 2404 Fivewin.ch error -- Antonio
Replies: 7
Views: 206

Re: Link errors xHarbour 10283.bcc770

Rick Lipkin wrote:is the above errors because I am still using bcc74 ?


Yes, you have to use BCC 7.70.
by Enrico Maria Giordano
Thu Apr 25, 2024 7:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Link errors xHarbour 10283.bcc770
Replies: 3
Views: 91

Link errors xHarbour 10283.bcc770

... Error: Unable to perform link I wanted to try each component individually to see if there were any compile or link errors ... is the above errors because I am still using bcc74 ? Thanks
by Rick Lipkin
Thu Apr 25, 2024 6:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Link errors xHarbour 10283.bcc770
Replies: 3
Views: 91

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: 2348

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: 2565

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: 378

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: 432

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: 432

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: 1848

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: 8572

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: 1756

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: 1098

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: 4114

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: 4114
Next

Return to advanced search