Search found 811 matches

by fraxzi
Sat Jul 05, 2008 12:48 am
Forum: FiveWin for Harbour/xHarbour
Topic: ADS server side alias
Replies: 4
Views: 2264

Hello Reinaldo Another great tip you have here! I hope other guys using ADS shares their experiences too! :P Before I do direct connect \\<ip>:<port>\<share> ... It's great I discover the server-side aliases.. It's easier and manageable using 'AdsServer.Ini' on the server... I still have many things...
by fraxzi
Fri Jul 04, 2008 9:39 am
Forum: FiveWin for Harbour/xHarbour
Topic: AdsSkip() missing in xHarbour 1.0b
Replies: 1
Views: 368

AdsSkip() missing in xHarbour 1.0b

...Why:?:
by fraxzi
Thu Jul 03, 2008 4:56 am
Forum: FiveWin for Harbour/xHarbour
Topic: ADS server side alias
Replies: 4
Views: 2264

ADS server side alias

Hi guys! Just sharing this amazing discovery with ADS 8.1 Normally, when we do adsconnect60(), we put this on our ads.ini ... [remoteserver] INTERNET_IP = <your public ip here> INTERNET_PORT = 2001 LAN_IP = 192.168.0.1 LAN_PORT = 2002 [Databases] SERVER = \\remoteserver\DD\database.add;D ... notice ...
by fraxzi
Thu Jul 03, 2008 4:36 am
Forum: FiveWin for Harbour/xHarbour
Topic: Is a compiled FIVEWIN/(x)HARBOUR program a C program?
Replies: 32
Views: 5464

Hi guys! Same here in the Philippines... If they (some programmer friends and users alike) ask me 'what is your programming language?' I answered them proudly... 'xHarbour!' ...it's an opensource and the descendant of xbase family which has Win32 and Linux platform... some says... it old.... and har...
by fraxzi
Fri Jun 27, 2008 5:01 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 8.05 and ADS 7.1 problem
Replies: 4
Views: 715

Friend,

1. you need to implib ace32.dll (ads 7.1) to ace32.lib
2. recompile rddads (from xharbour 1.0b contrib source)

link/add ace32.lib and rddads.lib


rddads.lib from FWH 8.x maybe using ads v8.x runtime


correct me if i'm wrong.


Regards,
by fraxzi
Sat Jun 21, 2008 2:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Tgif
Replies: 4
Views: 1004

Mr. Antonio,

I need to mouse click the gif to make it start running...



regards,
by fraxzi
Sat Jun 21, 2008 9:19 am
Forum: FiveWin for Harbour/xHarbour
Topic: protection againts debugers or decompilers
Replies: 3
Views: 1150

Hi,

This may help..


I use this with UPX on FWH apps...

upx.exe your.exe --compress-exports=0


Regards
by fraxzi
Wed Jun 18, 2008 8:09 am
Forum: FiveWin for Harbour/xHarbour
Topic: RDD_ADS update
Replies: 0
Views: 373

RDD_ADS update

or anybody with AdsDDSetTableProperty() wrapper?...



Regards,
by fraxzi
Tue Jun 17, 2008 4:42 am
Forum: FiveWin for Harbour/xHarbour
Topic: window styles
Replies: 13
Views: 2738

Natter,


I used this

...
ON INIT ownd:oWndClient:ClientEdge()

..
by fraxzi
Fri Jun 13, 2008 4:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to keep application's shared folder invisible on server
Replies: 2
Views: 633

Hello!

name the shared folder with '$' at the end (w/o quotes)

access it as \\server\sharename$




regards,
by fraxzi
Tue Jun 10, 2008 4:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: setting font on Group Box
Replies: 26
Views: 5835

Mr. Antonio, The effect of themes + folder font + group box font is really an issue for me. I cant find any solution with app on themed with folder font and groupbox font mix together... oGroup:oFont.. is 'courier 10' but the display (under xp theme) oFolder's font ... 'times 22' This is not only co...
by fraxzi
Tue Jun 10, 2008 1:58 am
Forum: FiveWin for Harbour/xHarbour
Topic: saving image file to blob fields
Replies: 5
Views: 1309

OH MY GOD!!! I'M SO SORRY MR. ANTONIO...


The above is so true and correct! :lol:


my mistake was that the alias 'DB' is positioned EOF... :lol: :lol: :lol:


that is why the adsfile2blob is returning FALSE....



IT'S WORKING PERPECTLY.....


Regards to you Mr. Antonio :D
by fraxzi
Mon Jun 09, 2008 3:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: saving image file to blob fields
Replies: 5
Views: 1309

Hello again Mr. Antonio,


The above coding returns .F. ( adsFile2blob() )...

Can I use the adsfilebinary() directly from xhb1.1/fivewin? If so how do you pass the parameter? adsfile2blob is much easier but I get .F. return.


Best regards,
by fraxzi
Mon Jun 09, 2008 9:11 am
Forum: FiveWin for Harbour/xHarbour
Topic: saving image file to blob fields
Replies: 5
Views: 1309

Hello Mr. Antonio, Thank you for the reply. ADS_BINARY is 6 ands ADS_IMAGE is 7. I used it in the third parameter (like the above) ADSFile2Blob('file','field',7) I data type for 'field' is image or binary (ADT) but still not working... Maybe there's problem with the wrapper ADSFile2Blob and, ADSBlob...
by fraxzi
Mon Jun 09, 2008 3:06 am
Forum: FiveWin for Harbour/xHarbour
Topic: saving image file to blob fields
Replies: 5
Views: 1309

saving image file to blob fields

Anybody... I'm working on ADS71 (CDX) and this function always returns false... db->( adsfiletoblob('file.bmp', 'field', 7) ) //'field' is image type defined in arc32 //7 means image or 6 means binary I thought of changing table from CDX to ADT... and so. still returns false. I changed field type to...