[Harbour] HBMK2 Inquiry

2010-05-27 Thread Jerry Finuliar
Hi,

After updating to latest SVN I got this result.

hbmk2: Compiling...
hbmk2: Linking... conso.exe
Info: resolving vtable for __cxxabiv1::__si_class_type_info by linking to __imp_
__ZTVN10__cxxabiv120__si_class_type_infoE (auto-import)
Info: resolving vtable for __cxxabiv1::__class_type_info by linking to __imp___Z
TVN10__cxxabiv117__class_type_infoE (auto-import)
Info: resolving vtable for __cxxabiv1::__vmi_class_type_info by linking to __imp
___ZTVN10__cxxabiv121__vmi_class_type_infoE (auto-import)
Info: resolving std::cout  by linking to __imp___ZSt4cout (auto-import)
c:/mingw/bin/../lib/gcc/mingw32/4.5.0/../../../../mingw32/bin/ld.exe: warning: a
uto-importing has been activated without --enable-auto-import specified on the c
ommand line.
This should work unless it involves constant data structures referencing symbols
 from auto-imported DLLs.

Can someone explain what this means? 

TIA,

Jerry



-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] HBMK2 Inquiry

2010-05-27 Thread Jerry Finuliar
Hi Viktor,


No clue from here, maybe a broken mingw installation.
To tell more pls post -trace output and hbmk2 cmdline.

I did some research and found out that
this is a bug from mingw 4.5. It was fixed
before but I don't know why it resurface.
So for now Im dropping 4.5 and wait for
the official release.

BTW can you check if nxcompat is supported 
for TDM mingw 4.4? Im getting an error compiling
hbpp.exe with gcc saying nxcompat is not a
valid option.

Thanks for the time

Jerry




-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] Re: --nxcompat MingW

2010-05-27 Thread Jerry Finuliar
Hi Viktor,


D:\harbourset path=c:\mingw\bin;c:\harbour\bin;

D:\harbourpath
PATH=c:\mingw\bin;c:\harbour\bin;

D:\harbourwin-make clean install
! Building Harbour 2.1.0beta1 from source - http://www.harbour-project.org
! MAKE: win-make 3.81 sh.exe clean install
! HB_INSTALL_PREFIX: c:\harbour
! HB_HOST_PLAT: win (x86)  HB_SHELL: nt
! HB_PLATFORM: win (x86) (autodetected)
! HB_COMPILER: mingw (v45) (autodetected: c:/mingw/bin/)

Fresh download from SVN. WinXP SP3. TDM mingw 4.4
I think autodetection is not working.

Thanks,
Jerry


-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] Re: --nxcompat MingW

2010-05-27 Thread Jerry Finuliar
Hi Viktor,

Please disregard my previous email.
I think I found the culprit. A left over MinGW 4.5 files.


Thanks for your time,

Jerry

-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] ACHOICE() bug for 2010, with simple hello world example

2010-05-04 Thread Jerry Finuliar
Hi,

Please change DispLine proc in Achoice.prg with the one below.


STATIC PROCEDURE DispLine( cLine, nRow, nCol, lSelect, lHiLite, nNumCols )

   ColorSelect( iif( lSelect .AND. ISCHARACTER( cLine ), ;
iif( lHiLite, CLR_ENHANCED, CLR_STANDARD ), CLR_UNSELECTED ) )

   hb_dispOutAt( nRow, nCol, iif( ISCHARACTER( cLine ), PadR( cLine, nNumCols 
), Space( nNumCols ) ) )
   IF lHiLite
  SetPos( nRow, nCol ) 
   ENDIF 
   ColorSelect( CLR_STANDARD )

   RETURN

Thanks,

Jerry

-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] achoice hack?

2010-04-30 Thread Jerry Finuliar
Hi,

Base from dbu's menu system the following hack 
will fix freezing dropdown menus.
130:

   lFinished := ( nMode == AC_NOITEM )
// just insert this block
   IF lFinished 
  IF lUserFunc
 Do( xUserFunc, nMode, nPos, nPos - nAtTop )
  ENDIF   
   ENDIF
// end block
   DO WHILE !lFinished




-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


RE:[Harbour] extern / contrib to parse excel files?

2010-04-30 Thread Jerry Finuliar
Hi smu,

You just need hbwin to create an ole object. 

local xls := win_OleCreateObject(Excel.Application).

xls:Open()
xls:Close()

Best Regards,
Jerry


-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour-users] TempName?

2010-04-07 Thread Jerry Finuliar
Hi Teo,

nFh := HB_FTempCreateEx( @fileName, [cDir], [cPrefix], [cExt], [nAttr])
Found this in harbour source

FClose( HB_FTempCreateEx( @fileName, NIL, NIL, .dbf ) ) 
Never thought of this.

Very clever trick.


Thanks

-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour-users mailing list (attachment size limit: 40KB)
Harbour-users@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour-users


[Harbour-users] DBF exclusive mode?

2010-03-10 Thread Jerry Finuliar
Hi,

Is there a function to determine the usage(shared/exclusive)
of a dbf?

Thanks,
Jerry

-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour-users mailing list (attachment size limit: 40KB)
Harbour-users@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour-users


[Harbour-users] DBF exclusive mode?

2010-03-10 Thread Jerry Finuliar
Hi,

   ? table, alias(), open in, ;
 iif( dbInfo( DBI_SHARED ), shared, exclusive ) +  mode

Thanks Przemek

-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour-users mailing list (attachment size limit: 40KB)
Harbour-users@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour-users


[Harbour] Build Error

2010-02-28 Thread Jerry Finuliar
Hi,

WinXP SP3, QT-Mingw 

In file included from ../../../../hvmall.c:83:
../../../../hvm.c: In function 'HB_FUN_HB_ARRAYTOPARAMS':
../../../../hvm.c:11605: error: '_hb_stack_ptr_' undeclared (first use in this f
unction)
../../../../hvm.c:11605: error: (Each undeclared identifier is reported only onc
e
../../../../hvm.c:11605: error: for each function it appears in.)

Thanks.

-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] Re: Can be Harbour have tool like Glade working with it...?

2010-01-27 Thread Jerry Finuliar
Massimo,

 my incomplete document about hbide
 http://docs.google.com/View?id=dhmtv9fs_235db6hz754

Thanks a lot 




Cheers,
Jerry

-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] Re: hbpqtui class

2010-01-27 Thread Jerry Finuliar
Hi,

 I only say that could be more convenient to establish a first 
 modest goal for a basic, compact, multi-platform GUI bundled with 
 Harbour and working out of the box.
 
 This way an user could download Harbour binaries for Windows, 
 Linux, OS/2 or Mac and have native/basic GUI support for all those 
 OSs.
 
 Being the first target a small set of GUI classes, the project 
 could be working in the term of weeks (or months) and not years.
 
 It could be expanded in all imaginable ways (even xbase++ parts) in 
 future Harbour versions.

+1 
start small and end big





Cheers,
Jerry

-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] hbIDE[ 16 -17 ]

2010-01-26 Thread Jerry Finuliar
Hi,

Sorry for dropping in. hbformat could come in handy
for this.

Cheers
Jerry

 - Original Message -
 From: Pritpal Bedi bediprit...@hotmail.com
 To: harbour@harbour-project.org
 Subject: Re: [Harbour] hbIDE[ 16 -17 ]
 Date: Tue, 26 Jan 2010 11:08:23 -0800 (PST)
 
 
 
 
 AbeB wrote:
 
  a Beautifier will go thru code and
 
  indent/Outdent the lines properly.
  number of spaces before/after operators  like == :=  delete 
  double spaced lines.
  capitalize keywords properly
  etc.
 
 
 Some formatting constructs are there in EditFormat option.
 But I agree a full blown formatter is a must applied in full source
 or a fragmanet thereof.
 
 We will think about it later as to what tool to use,
 hbformat or xMate's.
 
 Pritpal Bedi
 
 --
 View this message in context: 
 http://n2.nabble.com/hbIDE-Requested-Thought-of-Features-Tracking-tp4456648p4462664.html
 Sent from the harbour-devel mailing list archive at Nabble.com.
 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] Re: Can be Harbour have tool like Glade working with it...?

2010-01-26 Thread Jerry Finuliar
Hi,

If its not asking too much. Can you provide
a small demo with tutorial to do this?
Even a video will do.

Thanks,
Jerry


 - Original Message -
 From: Pritpal Bedi bediprit...@hotmail.com
 To: harbour@harbour-project.org
 Subject: [Harbour] Re: Can be Harbour have tool like Glade working with   
 it...?
 Date: Tue, 26 Jan 2010 13:10:50 -0800 (PST)
 
 
 
 
 marco bra wrote:
 
  I'm looking for some cross platform tool to quickly design user interface
  and then refine event methods and then compile it with harbour
 
  Something similar to this http://glade.gnome.org/ ( Glade  + Python )
  http://www.linuxjournal.com/article/7421
 
  Can be a hbide future extension...?
 
 
 Why should we concentrate on GTK when all our future goals
 are planned for Qt ?
 
 I have on my TODO list, integration of Qt Creator through Hbp*()
 classes. Qt Creator generates a .ui file and hbIDE is already taking
 advantage of .ui files. We just need to polish this HbpQtUI() class
 to embed events, though practically you can do it right now.
 
 
 
 -
   enjoy hbIDEing...
  Pritpal Bedi
 _a_student_of_software_analysis__design_
 --
 View this message in context: 
 http://n2.nabble.com/Can-be-Harbour-have-tool-like-Glade-working-with-it-tp4463143p4463319.html
 Sent from the harbour-devel mailing list archive at Nabble.com.
 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] Re: Can be Harbour have tool like Glade working with it...?

2010-01-26 Thread Jerry Finuliar
Hi,

Ok. Ill take a look. Hope I will get it.

Thanks a lot for this tool.

 - Original Message -
 From: Pritpal Bedi bediprit...@hotmail.com
 To: harbour@harbour-project.org
 Subject: [Harbour] Re: Can be Harbour have tool like Glade working with   
 it...?
 Date: Tue, 26 Jan 2010 17:58:43 -0800 (PST)
 
 
 
 
 Jerry Finuliar wrote:
 
  If its not asking too much. Can you provide
  a small demo with tutorial to do this?
  Even a video will do.
 
 
 hbIDE itself is a working tutorial. Simply look into the sources,
 mainly ideprojmanager.prg and search for HbpQtUI(). The underlying
 dialog is generated by Qt Creator and relevant .ui is placed in
 harbour/conrib/hbide/resources/*.ui.
 
 Hope you will understand.
 
 I will write a descent help manual once I am done with hbIDE.
 
 
 
 
 -
   enjoy hbIDEing...
  Pritpal Bedi
 _a_student_of_software_analysis__design_
 --
 View this message in context: 
 http://n2.nabble.com/Can-be-Harbour-have-tool-like-Glade-working-with-it-tp4463143p4464777.html
 Sent from the harbour-devel mailing list archive at Nabble.com.
 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] 2 little requests to commit-ters...

2010-01-22 Thread Jerry Finuliar
Hi,
 
 MEMOEDIT() users pls make tests.

Looks OK from dbu.


Jerry
 


-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] HBQT demoqt

2009-12-10 Thread Jerry Finuliar
Just to report

D:\harbour\contrib\hbqt\testshbmk2 demoqt -Lc:\qt\4.5.3\lib
hbmk2: Processing local make script: hbmk.hbm
Harbour 2.0.0beta3 (Rev. 13207)
Copyright (c) 1999-2010, http://www.harbour-project.org/
Compiling 'demoqt.prg'...
Lines 3236, Functions/Procedures 23
Generating C source output to 'demoqt.c'... Done.
demoqt.o:demoqt.c:(.data+0x98): undefined reference to `HB_FUN_QT_SETEVENTFILTER
'
demoqt.o:demoqt.c:(.data+0xa8): undefined reference to `HB_FUN_QT_SETEVENTSLOTS'

collect2: ld returned 1 exit status
hbmk2: Error: Running linker. 1
gcc.exe demoqt.o hbmk_2gzple.o-mwindows -Wl,--start-group -lhbqt -lhbqtcore
-lhbqtgui -lhbqtnetwork -lversion -lshlwapi -lQtCore4 -lQtGui4 -lQtNetwork4 -lQt
UiTools -lpsapi -lsupc++ -lhbextern -lhbdebug -lhbvm -lhbrtl -lhblang -lhbcpage
-lgtcgi -lgtpca -lgtstd -lgtwin -lgtwvt -lgtgui -lhbrdd -lhbuddall -lhbusrrdd -l
rddntx -lrddcdx -lrddnsx -lrddfpt -lhbrdd -lhbhsx -lhbsix -lhbmacro -lhbcplr -lh
bpp -lhbcommon -lkernel32 -luser32 -lgdi32 -ladvapi32 -lws2_32 -lwinspool -lcomc
tl32 -lcomdlg32 -lshell32 -luuid -lole32 -loleaut32 -lmpr -lwinmm -lmapi32 -limm
32 -lmsimg32 -lwininet -lhbpcre -lhbzlib  -Wl,--end-group -odemoqt.exe -LC:/HARB
OUR/lib/win/mingw -L/../lib -Lc:/qt/4.5.3/lib

-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] Demoqt

2009-11-19 Thread Jerry Finuliar
Hi,

In case this is not yet reported in. Demoqt seems to stay in memory after 
closing

it via X button.

Cheers,

-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] Demoqt

2009-11-19 Thread Jerry Finuliar
Opps, forgot to mention my env. WinXP SP3, Harbour SVN 12943 and Mingw 3.4.5



-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] Search Mailing List?

2009-10-28 Thread Jerry Finuliar
Hi,

Is there a way to search through the mailing list archives? (of course except 
from downloading it)

Sorry for asking this silly question.

Thanks,
Jerry 



-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] SF.net SVN: harbour-project:[12768] trunk/harbour

2009-10-26 Thread Jerry Finuliar
Thanks Pritpal.

 - Original Message -
 From: vouch...@users.sourceforge.net
 To: harbour@harbour-project.org
 Subject: [Harbour] SF.net SVN: harbour-project:[12768] trunk/harbour
 Date: Mon, 26 Oct 2009 04:16:30 +
 
 
 Revision: 12768

 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12768view=rev
 Author:   vouchcac
 Date: 2009-10-26 04:16:27 + (Mon, 26 Oct 2009)
 


-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] HBQT demoqt

2009-10-16 Thread Jerry Finuliar
 Just for now compile as
 
 hbmk2 demoqt -Lc:\qt\4.5.3\lib -lxhb
It compile fine. But loading takes a while. Memory
is now nearly stable. It GPF when accessing WebPage menu. 


 I will remove debug info after few days as I need to
 debug it constantly until I get the desired results.

Take your time. Ill test it again till then.

Thanks,
Jerry
 

-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] HBQT demoqt

2009-10-15 Thread Jerry Finuliar
Hi,

Im trying to compile demoqt.prg but I received the following messages:

D:\harbour\contrib\hbqt\testshbmk2 demoqt -Lc:\qt\4.5.3\lib
hbmk2: Processing local make script: hbmk.hbm
Harbour 2.0.0beta3 (Rev. 12718)
Copyright (c) 1999-2009, http://www.harbour-project.org/
Compiling 'demoqt.prg'...
Lines 966, Functions/Procedures 21
Generating C source output to 'demoqt.c'... Done.
demoqt.o:demoqt.c:(.data+0x98): undefined reference to `HB_FUN_HB_TOOUTDEBUG'
collect2: ld returned 1 exit status
hbmk2: Error: Running linker. 1
gcc.exe demoqt.o hbmk_xncwvv.o-mwindows -Wl,--start-group -lhbqt -lversion -
lshlwapi -lQtCore4 -lQtGui4 -lQtNetwork4 -lQtWebKit4 -lsupc++ -lhbextern -lhbdeb
ug -lhbvm -lhbrtl -lhblang -lhbcpage -lgtcgi -lgtpca -lgtstd -lgtwin -lgtwvt -lg
tgui -lhbrdd -lhbuddall -lhbusrrdd -lrddntx -lrddcdx -lrddnsx -lrddfpt -lhbrdd -
lhbhsx -lhbsix -lhbmacro -lhbcplr -lhbpp -lhbcommon -lkernel32 -luser32 -lgdi32
-ladvapi32 -lws2_32 -lwinspool -lcomctl32 -lcomdlg32 -lshell32 -luuid -lole32 -l
oleaut32 -lmpr -lwinmm -lmapi32 -limm32 -lmsimg32 -lwininet -lhbpcre -lhbzlib  -
Wl,--end-group -odemoqt.exe -LC:/HARBOUR/lib/win/mingw -L/lib -Lc:/qt/4.5.3/lib


Build Tools

Harbour Build Info
---
Version: Harbour 2.0.0beta3 (Rev. 12718)
Compiler: MinGW GNU C 3.4.5 (32-bit)
Platform: Windows XP 5.1.2600 Service Pack 3
PCode version: 0.2
ChangeLog last entry: 2009-10-15 18:43 UTC-0800 Pritpal Bedi (prit...@vouchcac.c
om)
ChangeLog ID: ChangeLog 12718 2009-10-16 01:57:48Z vouchcac

Built on: Oct 16 2009 11:19:42
Build options:
Language options: (Clipper 5.3) (Clipper 5.x undoc) (Xbase++) (Flagship)
---

gcc -v
Reading specs from c:/mingw/bin/../lib/gcc/mingw32/3.4.5/specs
Configured with: ../gcc-3.4.5-20060117-3/configure --with-gcc --with-gnu-ld --wi
th-gnu-as --host=mingw32 --target=mingw32 --prefix=/mingw --enable-threads --dis
able-nls --enable-languages=c,c++,f77,ada,objc,java --disable-win32-registry --d
isable-shared --enable-sjlj-exceptions --enable-libgcj --disable-java-awt --with
out-x --enable-java-gc=boehm --disable-libgcj-debug --enable-interpreter --enabl
e-hash-synchronization --enable-libstdcxx-debug
Thread model: win32
gcc version 3.4.5 (mingw-vista special r3)

My env var:

set path=%path%;c:\harbour\bin;c:\qt\4.5.3\bin;c:\mingw\bin
set HB_INC_QT=c:\qt\4.5.3\include
set HB_INSTALL_PREFIX=C:\HARBOUR

What am I missing?

TIA,
Jerry


-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] SF.net SVN: harbour-project:[12593] trunk/harbour

2009-10-05 Thread Jerry Finuliar
Hi,

 Unlike NETIO and CDXDBF, which are compatible with the clipper, and so forth,
 but in real applications are not applicable (I do not think that the
 destruction of the
 tables and indexes in networking someone brings delight)

Im going to the wish list instead for NETIO

1. Option for server side commands( to avoid corruption). Like indexing, 
replace commands etc etc
2. Data partitioning ( scatter and gather )
3. Security ( user id and password )
4. Data integrity check upon initialization of the server( run hrb to setup 
indexes or 
something )
5. And full copyright license to Harbour compiler only. 

Hope one wish will get through.

Jerry



-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] SF.net SVN: harbour-project:[12593] trunk/harbour

2009-10-05 Thread Jerry Finuliar
Hi,

You may be interested   http://www.schneier.com/blowfish-download.html

Jerry
 - Original Message -
 From: Viktor Szakáts harbour...@syenar.hu
 To: Harbour Project Main Developer List. harbour@harbour-project.org
 Subject: Re: [Harbour] SF.net SVN: harbour-project:[12593] trunk/harbour
 Date: Mon, 5 Oct 2009 14:18:03 +0200
 
 
  Looking at current LetoDB code I've found the only one thing which
  I would like to copy and integrate with Harbour: blowfish encryption
  of course if we do not have it yet in contrib or RTL.
 
 We don't have blowfish yet.
 
 Brgds,
 Viktor
 
 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] Jerry Finuliar invites you to connect

2009-10-02 Thread Jerry Finuliar via Yahoo!
Join Jerry Finuliar on Yahoo! Messenger.

Hi! Come join me on Yahoo! Messenger so we can chat, share files, watch videos 
and more.

Stay in the loop with all your friends.
Get started : 
http://invite.msg.yahoo.com/invite?op=acceptintl=phsig=K..o9KhLuelj0LnjIr6kgcvTeDJeSZeu0DngJFtHCEMoyUjfiFHYnupsuhOO

* Stay connected at home, at work, or on the go
* Have fun with games, emoticons, and more
* Join a community of over 100 million people from around the world

Join Your Friends : 
http://invite.msg.yahoo.com/invite?op=acceptintl=phsig=K..o9KhLuelj0LnjIr6kgcvTeDJeSZeu0DngJFtHCEMoyUjfiFHYnupsuhOO

--
this email was sent to you by an automated system - please do not reply directly

___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] How to create a dll using hbmk2?

2009-09-29 Thread Jerry Finuliar
Hi Viktor,

Still with the same error. Is the program below valid to compile to dll using 
MS C++ v2008?

TIA,
Jerry

--- 
#include hbclass.ch

CREATE CLASS Dbf
VAR oDbf 
METHOD Open()
ENDCLASS

METHOD Open
RETURN self
---




 - Original Message -
 From: Viktor Szakáts harbour...@syenar.hu
 To: Harbour Project Main Developer List. harbour@harbour-project.org
 Subject: Re: [Harbour] How to create a dll using hbmk2?
 Date: Tue, 29 Sep 2009 08:07:30 +0200
 
 
 Hi Jerry,
 
  D:\MyProjects\dbfdllhbmk2 -hbdyn classdbf -L%lib%
 
 -L%lib% seems wrong. Try with -L%lib% or -L%lib%.
 
 Brgds,
 Viktor
 
 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] How to create a dll using hbmk2?

2009-09-29 Thread Jerry Finuliar
Hi Viktor,

Thanks a lot. I go and try now.

Regards,
Jerry



 - Original Message -
 From: Viktor Szakáts harbour...@syenar.hu
 To: Harbour Project Main Developer List. harbour@harbour-project.org
 Subject: Re: [Harbour] How to create a dll using hbmk2?
 Date: Tue, 29 Sep 2009 09:19:39 +0200
 
 
  Hi Viktor,
 
  Still with the same error. Is the program below valid to compile 
  to  dll using
  MS C++ v2008?
 
 Yes. Just verified. (at least it should link, I'm not .dll user,
 so couldn't test it any further)
 
 If I'm thinking about it even -L%LIB% is wrong. Since %LIB%
 itself is a ';' delimited list and might also contain quotes.
 Pass your lib dirs manually one by one. hbmk2 will only accept
 one dir per -L switch. libpaths= will accept a list, but the
 delimiter is a space.
 
 Anyhow your switches cause a quote problem in generated command
 line (just watch the output) and this is 99.999% caused by this
 suspicious switch.
 
 Brgds,
 Viktor
 
 
 
  TIA,
  Jerry
 
  ---
  #include hbclass.ch
 
  CREATE CLASS Dbf
  VAR oDbf
  METHOD Open()
  ENDCLASS
 
  METHOD Open
  RETURN self
  ---
 
 
 
 
  - Original Message -
  From: Viktor Szakáts harbour...@syenar.hu
  To: Harbour Project Main Developer List. harbour@harbour-project.org 
  Subject: Re: [Harbour] How to create a dll using hbmk2?
  Date: Tue, 29 Sep 2009 08:07:30 +0200
 
 
  Hi Jerry,
 
  D:\MyProjects\dbfdllhbmk2 -hbdyn classdbf -L%lib%
 
  -L%lib% seems wrong. Try with -L%lib% or -L%lib%.
 
  Brgds,
  Viktor
 
  ___
  Harbour mailing list
  Harbour@harbour-project.org
  http://lists.harbour-project.org/mailman/listinfo/harbour
 
 
 
 
  -- ___
  Surf the Web in a faster, safer and easier way:
  Download Opera 9 at http://www.opera.com
 
  Powered by Outblaze
  ___
  Harbour mailing list
  Harbour@harbour-project.org
  http://lists.harbour-project.org/mailman/listinfo/harbour
 
 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] How to create a dll using hbmk2?

2009-09-29 Thread Jerry Finuliar
Hi,

Yes, its now working. I just missed a compiler error/warning stating that I 
define a 
function in my class that already exists in Harbour. That made me think I needed
to add the lib path explicitly. Oh well thats what you get when not fully 
reading the
warning/messages by the compiler :)

By the way, Great job in HBMK2!

Regards,
Jerry


 - Original Message -
 From: Viktor Szakáts harbour...@syenar.hu
 To: Harbour Project Main Developer List. harbour@harbour-project.org
 Subject: Re: [Harbour] How to create a dll using hbmk2?
 Date: Tue, 29 Sep 2009 09:19:39 +0200
 
 
  Hi Viktor,
 
  Still with the same error. Is the program below valid to compile 
  to  dll using
  MS C++ v2008?
 
 Yes. Just verified. (at least it should link, I'm not .dll user,
 so couldn't test it any further)
 
 If I'm thinking about it even -L%LIB% is wrong. Since %LIB%
 itself is a ';' delimited list and might also contain quotes.
 Pass your lib dirs manually one by one. hbmk2 will only accept
 one dir per -L switch. libpaths= will accept a list, but the
 delimiter is a space.
 
 Anyhow your switches cause a quote problem in generated command
 line (just watch the output) and this is 99.999% caused by this
 suspicious switch.
 
 Brgds,
 Viktor
 
 
 
  TIA,
  Jerry
 
  ---
  #include hbclass.ch
 
  CREATE CLASS Dbf
  VAR oDbf
  METHOD Open()
  ENDCLASS
 
  METHOD Open
  RETURN self
  ---
 
 
 
 
  - Original Message -
  From: Viktor Szakáts harbour...@syenar.hu
  To: Harbour Project Main Developer List. harbour@harbour-project.org 
  Subject: Re: [Harbour] How to create a dll using hbmk2?
  Date: Tue, 29 Sep 2009 08:07:30 +0200
 
 
  Hi Jerry,
 
  D:\MyProjects\dbfdllhbmk2 -hbdyn classdbf -L%lib%
 
  -L%lib% seems wrong. Try with -L%lib% or -L%lib%.
 
  Brgds,
  Viktor
 
  ___
  Harbour mailing list
  Harbour@harbour-project.org
  http://lists.harbour-project.org/mailman/listinfo/harbour
 
 
 
 
  -- ___
  Surf the Web in a faster, safer and easier way:
  Download Opera 9 at http://www.opera.com
 
  Powered by Outblaze
  ___
  Harbour mailing list
  Harbour@harbour-project.org
  http://lists.harbour-project.org/mailman/listinfo/harbour
 
 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] How to create a dll using hbmk2?

2009-09-28 Thread Jerry Finuliar
Hi,

Im trying to create a dll but I got the ff:

D:\MyProjects\dbfdllhbmk2 -hbdyn classdbf -L%lib%
hbmk2: Processing configuration: c:\harbour\bin\hbmk.cfg
Harbour 2.0.0beta3 (Rev. 12621)
Copyright (c) 1999-2009, http://www.harbour-project.org/
Compiling 'classdbf.prg'...
Lines 757, Functions/Procedures 2
Generating C source output to 'classdbf.c'... Done.
classdbf.c
Microsoft (R) Incremental Linker Version 8.00.50727.762
Copyright (C) Microsoft Corporation.  All rights reserved.

LINK : warning LNK4001: no object files specified; libraries used
LINK : warning LNK4068: /MACHINE not specified; defaulting to X86
LINK : error LNK2001: unresolved external symbol __dllmaincrtstar...@12
classdbf.dll : fatal error LNK1120: 1 unresolved externals
hbmk2: Error: Running dynamic lib link command. 1120
link.exe -dll -out:classdbf.dll -libpath:c:\harbour\lib\win\msvc -libpath:C:\Pr
ogram Files\Microsoft Visual Studio 8\VC\lib;C:\Program Files\Microsoft Visual S
tudio 8\SDK\v2.0\Lib;C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1
\Lib classdbf.obj hbextern.lib hbdebug.lib hbvm.lib hbrtl.lib hblang.lib hbcpa
ge.lib gtcgi.lib gtpca.lib gtstd.lib gtwin.lib gtwvt.lib gtgui.lib hbrdd.lib hbu
ddall.lib hbusrrdd.lib rddntx.lib rddcdx.lib rddnsx.lib rddfpt.lib hbrdd.lib hbh
sx.lib hbsix.lib hbmacro.lib hbcplr.lib hbpp.lib hbcommon.lib kernel32.lib user3
2.lib gdi32.lib advapi32.lib ws2_32.lib winspool.lib comctl32.lib comdlg32.lib s
hell32.lib uuid.lib ole32.lib oleaut32.lib mpr.lib winmm.lib mapi32.lib imm32.li
b msimg32.lib wininet.lib hbpcre.lib hbzlib.lib

Any hint?

TIA
Jerry

-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] Re: HBNETIO - How I tested ...

2009-09-17 Thread Jerry Finuliar

Hi Przemek,

Thank you for making NETIO possible. Will directory functions be supported? 
(e.g. 
mkdir and rmdir) 

I need to scatter my tables for fast access.

Thanks




-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] Re: HBNETIO - How I tested ...

2009-09-17 Thread Jerry Finuliar
 
 Such functionality will be available in final version of alternative
 IO APIs. It will be possible to redirect any operations but now only
 functionality used by core RDD code is supported.


Ok I'll wait for it. One more question Are there plans to address data 
corruptions inherent in network applications?

Sorry for asking so much and taking some of your time. TIA

Best Regards,
Jerry

 




-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] Re: HBNETIO - How I tested ...

2009-09-17 Thread Jerry Finuliar
 tcp is already giving you a fair piece of resiliance against
 corruption. not to say more robust stuff is absolutely unimaginable,
 but you are not completely naked in the dark.

Ok I painted a vague picture. I agree tcp is a proven technology but what
will happen with the following scenarios while creating an index: 
1. Connection suddenly went off
2. Client app crash
3. Client app hang

To server and other clients?


Best Regards
Jerry



-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] Another OLE problem

2009-09-16 Thread Jerry Finuliar
Hi,

I've done this in VB6 but I'm getting this the requested member of the 
collection does not exist from Debug.Print 
oWord.ActiveDocument.StoryRanges.Item(5). Changing 5 to 1
and it will run fine without error but also without debug output. 

The only problem I see in Harbour is that you have to press enter before RTE 
display.


 vb code --
Dim oWord As Object

Set oWord = CreateObject(Word.Application)

oWord.Documents.Add

Debug.Print oWord.ActiveDocument.StoryRanges.Item(5)

 vb code ---

Best Regards
Jerry


FUNCTION MAIN()

LOCAL oWord

oWord = WIN_OLECREATEOBJECT( Word.Application )

oWord:Documents:Add()

? oWord:ActiveDocument:StoryRanges:Item( 5 )

oWord:Visible = .T.

RETURN NIL


-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] HBMAKE to Compiler

2008-05-20 Thread Jerry Finuliar
Couldtheharbour compilerdetermine the libraries(at least for the standard libs) usedand create a makefile?


  
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] Build Problem in BCC

2008-04-12 Thread Jerry Finuliar
I been offline for a couple of weeks and after I update my working copy I get 
this error.
D:\harbourcall make_b32.bat
TLIB  Version 2.0   Copyright (c) 1987, 1988 Borland International
Warning: unknown command line switch 'P' ignored
Error: unexpected char '3' in command line

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com ___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour