Search found 811 matches

by fraxzi
Sat Oct 11, 2008 8:59 am
Forum: FiveWin for Harbour/xHarbour
Topic: oTree for xBrowse sample...
Replies: 22
Views: 5390

oTree for xBrowse sample...

Hi!

Anybody with working sample using Tree for xBrowse for DBFCDX table....


Best Regards,
Frances
by fraxzi
Thu Aug 07, 2008 1:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ADS Re-connection
Replies: 2
Views: 682

I solved the issue on reconnection by adding the following to ADS.INI :idea:

[Settings]
RETRY_ADS_CONNECTS = 1



hope this helps others too.


Regards,
by fraxzi
Tue Aug 05, 2008 5:42 am
Forum: FiveWin for Harbour/xHarbour
Topic: ADS Re-connection
Replies: 2
Views: 682

ADS Re-connection

Hello All, I have this situation Using xHarbour 1.0b and ADS 8.1: I successfully connected using AdsConnect60(....), something happend with my ADSL internet connection and my communication has been cutoff... ADS generated '[6313] General communication failure' with that matter. Now, connection resum...
by fraxzi
Tue Jul 29, 2008 12:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Image on inserted column
Replies: 8
Views: 1592

:P :P :P


It worked great :!: like magic :!:



Thank you so much and regards,
by fraxzi
Tue Jul 29, 2008 11:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Image on inserted column
Replies: 8
Views: 1592

Mr. NageswaraRao, I think this is what i'm missing... 'variable (array equal the the lenght of table) that will replace the field in xBrowse column... ... aNums := Array( LastRec() ) AFill( aNums, 1 ) ... Clever idea. I never thought of that :roll: Will let you know after dinner (i'm on the other si...
by fraxzi
Tue Jul 29, 2008 9:18 am
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Image on inserted column
Replies: 8
Views: 1592

HELP! :oops:




Regards,
by fraxzi
Tue Jul 29, 2008 5:27 am
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Image on inserted column
Replies: 8
Views: 1592

Thank you for the reply NageswaraRao,

The datasource is RDD but the inserted column is kinda 'raw' but not a field... it is only to hold the value for the display of bitmap.

regards,
by fraxzi
Tue Jul 29, 2008 1:48 am
Forum: FiveWin for Harbour/xHarbour
Topic: Pickdate
Replies: 94
Views: 17789

Hello FW Guru's!


I like the way it painted the screen when you resize the window.....


I love to see it in action with xBrowse.... and perhaps in dialogs too :lol:



2Cents!


Regards,
by fraxzi
Tue Jul 29, 2008 1:33 am
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Image on inserted column
Replies: 8
Views: 1592

xBrowse Image on inserted column

Hello all! I have this xbrowse which load the table and all fields are displayed accordingly... I inserted below code and wanted to display the image depending on the value of :bEditValue... ... oBrwPIC:InsCol( 2 ) oBrwPIC:aCols[2]:bEditValue := {|e| IF(e == Nil, 1, e) } oBrwPIC:aCols[2]:addResource...
by fraxzi
Tue Jul 15, 2008 12:24 am
Forum: FiveWin for Harbour/xHarbour
Topic: Progress during copy table
Replies: 8
Views: 1950

Mr. Antonio,

>Please place a MsgInfo() call inside uProgressCallBack() to check if the code execution goes through it, thanks


I already did that. :o It was really never called.


But in indexing with same construct and same uProgressCallBack() function.. It did well.


Regards,
by fraxzi
Mon Jul 14, 2008 6:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Progress during copy table
Replies: 8
Views: 1950

Yes Senior Antonio! I do this... ... ADSRegCallBack({|nPercent| uProgressCallBack( nPercent ) }) .... lCopyOK := (cAlias)>( AdsCopyTable( "TempFile", ADS_RESPECTFILTERS ) ) .... ADSClrCallBack() .... FUNCTION uProgressCallBack( nPercent ) oRep_Gauge:SetPos( nPercent ) RETURN( .F. ) 1. lCop...
by fraxzi
Mon Jul 14, 2008 12:30 am
Forum: FiveWin for Harbour/xHarbour
Topic: Progress during copy table
Replies: 8
Views: 1950

Mr. Antonio, Thanks for the reply. I read that thread before... ADS Callback function is only implemented in the indexing stuff, not other ADS function uses the Callback functions since they are not "callback" aware. and.. xHarbour's RDD_ADS function named AdsRegCallBack implements on Wind...
by fraxzi
Sat Jul 12, 2008 6:01 am
Forum: FiveWin for Harbour/xHarbour
Topic: Progress during copy table
Replies: 8
Views: 1950

ADS Operations Supporting Callback Functionality: Advantage Client Engine AP AdsCreateIndex AdsReindex AdsPackTable AdsExecuteSQL AdsExecuteSQLDirect AdsGotoBookmark AdsGotoBookmark60 AdsGotoBottom AdsGetRecordCount AdsSkip AdsCopyTable** AdsCopyTableContents AdsConvertTable ANYBODY with sample code...
by fraxzi
Fri Jul 11, 2008 2:36 am
Forum: FiveWin for Harbour/xHarbour
Topic: Progress during copy table
Replies: 8
Views: 1950

Progress during copy table

Hello All!

Can I use ADSRegCallBack() with ADSCopyTable()?

I need progressbar during copy table operation.


Regards,
by fraxzi
Sat Jul 05, 2008 1:37 am
Forum: FiveWin for Harbour/xHarbour
Topic: ADS server side alias
Replies: 4
Views: 2277

I've been testing the table iteration (speed) like: for i := 1 to alias->( lastrec() ) ... alias->( dbSkip() ) //here can be be adsskip() since I used ADS all-out if alias->(eof()) //here can be ADSIsEOF()... (an example function) exit end next ..OR... I can use dbEval() function which is faster tha...