Search found 116 matches

by Roberto Parisi
Sat Feb 07, 2009 11:19 am
Forum: FiveWin for Harbour/xHarbour
Topic: PCode DLL
Replies: 11
Views: 1416

Re: PCode DLL

Thx Antonio, with impdef I found my mistake... I compile prg code without __EXPORT__ so I got no exported functions. Many thx for your fast and accurate help. Is there a way to put fivehx.lib, fivehc.lib and other libraries inside a single dll fiveh.dll to link into my application with an import lib...
by Roberto Parisi
Sat Feb 07, 2009 10:51 am
Forum: FiveWin for Harbour/xHarbour
Topic: PCode DLL
Replies: 11
Views: 1416

Re: PCode DLL

Hi antonio, thx for your reply.

What I want to do is not call dll code from C.

I want to use dynamic DLL as static lib to call functions directly.

ex:

// TestEXE.prg
procedure main()
Test1()
return

// TestDLL.prg
procedure Test1()
Alert("Test1")
return

Regards,
Roberto Parisi
by Roberto Parisi
Fri Feb 06, 2009 6:58 pm
Forum: FiveWin for Harbour/xHarbour
Topic: PCode DLL
Replies: 11
Views: 1416

PCode DLL

I use xharbour pcode dll and call dll function with HB_LibDo("MyFunc"). This is ok.. but I would like to call MyFunc directly without HB_LibDo... can I do it linking importing lib to my exe? I tried creating mylib.lib from mylib.dll with no success. Any hint? Another question.. can I put f...
by Roberto Parisi
Tue Dec 30, 2008 10:11 am
Forum: FiveWin for Harbour/xHarbour
Topic: ESC key on Combobox
Replies: 1
Views: 298

ESC key on Combobox

I seen last fwh812 changes about ESC key in TComboBox and I guess the combobox KeyDown method has to be:

METHOD KeyDown( nKey, nFlags ) CLASS TComboBox

if nKey == VK_ESCAPE .and. ::IsOpen()
::Close()
return 1
endif

return Super:KeyDown( nKey, nFlags )

Regards,
Roberto Parisi
by Roberto Parisi
Fri Oct 03, 2008 5:44 pm
Forum: FiveWin for Harbour/xHarbour
Topic: 65000 posts and growing! :-)
Replies: 5
Views: 910

Ok.. now you need a 32bit counter (no more 16 bit) :)

Congrats,
Roberto Parisi
by Roberto Parisi
Thu Sep 18, 2008 7:25 pm
Forum: FiveWin for Harbour/xHarbour
Topic: First tests with MinGW (gcc for Windows)
Replies: 30
Views: 4816

What about performances against BCC55 on harbour executables built with it?
by Roberto Parisi
Thu Sep 18, 2008 6:23 am
Forum: FiveWin for Harbour/xHarbour
Topic: SQLWIN - a free RDD for SQL
Replies: 73
Views: 27883

What about this RDD performance compared to ADSRDD?

I guess simulating ISAM logic with SQL statements make the performance very low to use in real world huge applications.

Regards,
Roberto Parisi
by Roberto Parisi
Wed Sep 10, 2008 2:16 pm
Forum: FiveWin para Harbour/xHarbour
Topic: SQLWIN - RDD libre para SQL
Replies: 95
Views: 40153

I truly agree.

Thx Antonio.

Roberto Parisi
by Roberto Parisi
Wed Sep 10, 2008 7:13 am
Forum: FiveWin for Harbour/xHarbour
Topic: SQLWIN - a free RDD for SQL
Replies: 73
Views: 27883

Thx Antonio,
it looks quite interesting.

What are the target databases?

Regards,
Roberto Parisi
by Roberto Parisi
Wed Sep 10, 2008 6:58 am
Forum: FiveWin for Harbour/xHarbour
Topic: SQLWIN - a free RDD for SQL
Replies: 73
Views: 27883

Hi Antonio,
what's the difference with adordd?

Regards,
Roberto Parisi
by Roberto Parisi
Thu Apr 10, 2008 7:57 am
Forum: FiveWin for Harbour/xHarbour
Topic: EMF to TIFF
Replies: 5
Views: 998

EMF to TIFF

Does exist a fast way to convert EMF to TIFF?

I think to use freeimage to get TIFF file, but I don't know hot to convert EMF file (or hDC) to dib.

Regards,
Roberto Parisi
by Roberto Parisi
Fri Feb 08, 2008 4:08 pm
Forum: FiveWin for Pocket PC
Topic: Acessing network files
Replies: 7
Views: 1817

Antonio, I can access my web server (192.168.0.1) via internet explorer on the pocket pc with success, but I can't access \\192.168.0.1\C\sample.txt. With my desktop pc (the one which pocketpc is connected) i can read the file without problems. The same happens with the connection between pocketpc a...
by Roberto Parisi
Wed Feb 06, 2008 3:08 pm
Forum: FiveWin for Pocket PC
Topic: Acessing network files
Replies: 7
Views: 1817

Antonio,
It doesn't work with memoread too.

I tried with device emulator and with a real ipaq.

Regards,
Roberto Parisi
by Roberto Parisi
Wed Feb 06, 2008 1:54 pm
Forum: FiveWin for Pocket PC
Topic: Acessing network files
Replies: 7
Views: 1817

Acessing network files

Antonio,
I'm checking if a network file exist as you said in other topic with the code:
MsgAlert(File("\\server\c\Sample.txt"))

I always get .F.

I'm trying also with my local machine:
MsgAlert(File("\\roberto\c\Sample.txt"))

Always .F.

Where is the mistake?

Thx,
Roberto Parisi
by Roberto Parisi
Thu Jan 31, 2008 10:49 am
Forum: FiveWin for Pocket PC
Topic: Disabling/removing menu
Replies: 19
Views: 3390

Antonio,
with my device emulator (Device Emulator V2, v. 8.0.60801.00) it doesn't work... I tried with a real CE 5.0 device and it works. Sorry for the mistake. Do you use emulator provided with fwppc?

Regards,
Roberto Parisi