[Harbour] Error in global.cf

2009-08-10 Thread FRANČEK PRIJATELJ
Hi In global.cf, line 210 is error (HB_LIB_INSTAL: ... , instead off HB_INC_INSTALL ifneq ($(HB_INC_INSTALL),) $(info ! HB_LIB_INSTALL: $(HB_INC_INSTALL)) endif BRGS Franček begin:vcard fn;quoted-printable:Fran=C4=8Dek Prijatelj n;quoted-printable:Prijatelj;Fran=C4=8

[Harbour] Strange index error

2009-08-11 Thread FRANČEK PRIJATELJ
This code (simplified version) worked few days ago, with rddntx or rddcdx). Today it crashes function main() use knjizbe new index on posel+dtos(dat_va) tag posel_datv to knjizbe wait return Today it crashes with error 1 Error DBFNTX/1060 Create error: C:\DOCUME~1\FP\LOCA

Re: [Harbour] Strange index error

2009-08-11 Thread FRANČEK PRIJATELJ
On 11.8.2009 10:56, Przemyslaw Czerpak wrote: On Tue, 11 Aug 2009, FRANČEK PRIJATELJ wrote: Hi Franček, This code (simplified version) worked few days ago, with rddntx or rddcdx). Today it crashes function main() use knjizbe new index on posel+dtos(dat_va) tag posel_datv to

[Harbour] Build error

2009-08-14 Thread FRANČEK PRIJATELJ
cl.exe -I../../../../../contrib/hbssl -nologo -I. -I../../../../../include -Gs -TP -W4 -wd4127 -Ot2b1 -EHs-c- -MT -Foutils.obj -c ../../../utils.c utils.c ../../../../../bin/win/msvc/harbour.exe ../../../cgi.prg -n1 -I../../../../../contrib/hbssl -i../../../../../include -q0 -w3 -es2 -kmo

Re: [Harbour] Build error

2009-08-15 Thread FRANČEK PRIJATELJ
Viktor Szakáts wrote: > > This is a very very old problem, but only Harbour gives a > warning when redefining the same macro twice with same content, > I'll try to do something about it and I just now realized that > Harbour make uses a trick to relaunch itself even when making > a single target

[Harbour] Error building harbour-20.dll

2009-08-17 Thread FRANČEK PRIJATELJ
Hi On winXP I can't build harbour-20.dll (using mingw or msvc): Errors with msvc8: ! Making harbour-20.dll... Creating library C:\HRB\msvc_D_Tr\bin\harbour-20.lib and object C:\HRB\msvc_D_Tr\bin\harbour-20.exp sxtrig_dyn.obj : error LNK2001: unresolved external symbol _HB_FUN___DBGENTRY har

Re: [Harbour] Error building harbour-20.dll

2009-08-17 Thread Franček Prijatelj
Hi Viktor Thanks. I removed HB_USER_PRGFLAGS=-b, and .dll is built. I owe you a beer ;) Brgs Franček Viktor Szakáts wrote: > > Hi, > > I guess you're using HB_USER_PRGFLAGS=-b to build Harbour, > and in this case harbour.dll creation doesn't work, and AFAIU > it never did. > > Either tu

[Harbour] Binding generator for Qt

2009-08-25 Thread FRANČEK PRIJATELJ
/api-extractor/. Regards Franček Prijatelj begin:vcard fn;quoted-printable:Fran=C4=8Dek Prijatelj n;quoted-printable:Prijatelj;Fran=C4=8Dek email;internet:francek.prijat...@siol.net x-mozilla-html:TRUE version:2.1 end:vcard ___ Harbour mailing

[Harbour] Error building HbQt

2009-08-30 Thread FRANČEK PRIJATELJ
Hi When I build Harbour with msvc , *.cpp files from HbQt are compiled wiith mingw g++ with msvc parameters, while *.c files are correctly compiled with cl.exe. Sample: ! Building Harbour 2.0.0beta2 from source - http://www.harbour-project.org ! MAKE: mingw32-make 3.81 sh.exe clean install i

[Harbour] Error compiling .cpp files

2009-08-31 Thread FRANČEK PRIJATELJ
Hi Building Harbour with msvc , *.cpp files from HbQt are compiled with mingw g++ (with msvc flags), while *.c files are correctly compiled with cl.exe. Sample: ! Building Harbour 2.0.0beta2 from source - http://www.harbour-project.org ! MAKE: mingw32-make 3.81 sh.exe clean install i ! HB_INSTA

[Harbour] Error in makefile

2009-09-02 Thread FRANČEK PRIJATELJ
Hi Victor There is infinite recursion in makefile(s) Try win-make --print-data-base BRGS <>___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

[Harbour] Proposal for change in rules.mk

2009-09-02 Thread FRANČEK PRIJATELJ
ame BRGS Franček Prijatelj <>___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

Re: [Harbour] Proposal for change in rules.mk

2009-09-02 Thread Franček Prijatelj
Franček Prijatelj wrote: > > > Try command > mingw32-make --print-data-base > 0.txt > > You have to be outside harbour dierostory (because of infinite loop mentioned in previous post) regards Franček -- View this message in context: http://www.nabble.com/Proposal-f

[Harbour] Patch for debugger.prg (handling of init.cld)

2009-09-04 Thread FRANČEK PRIJATELJ
Hi As you know debugger doesn't process init.cld well. There is a patch : --- C:/RAZVOJ/HARBOUR/TEST/Debugger/debugger.prgFri Sep 04 11:18:59 2009 +++ C:/HRB/SVN/SRC-SVN/source/debug/debugger.prgFri Sep 04 11:11:09 2009 @@ -154,10 +154,6 @@ s_oDebugger:aModules := uParam4

[Harbour] HOWTO about codepage in HbQt

2009-09-07 Thread FRANČEK PRIJATELJ
Hi Pritpal Is there a function equivalent of HB_SetCodePage("SLWIN") in HbQt. I would like to use cp1250 tekst on buttons: oBtn := QPushButton():new( QT_PTROF( oWnd ) ) oBtn:setText( "Push Button čČšŠžŽ" ) BRGS Franček <>___ Harbour mailing l

Re: [Harbour] HOWTO about codepage in HbQt

2009-09-07 Thread Franček Prijatelj
Hi Thanks for your quick answer. I just started reading "Internationalization with Qt" and I hope to have solution in few days. Regards Franček Prijatelj Pritpal Bedi wrote: > > Hi > > > Franček Prijatelj wrote: >> >> Is there a function equivalen

Re: [Harbour] HOWTO about codepage in HbQt

2009-09-08 Thread Franček Prijatelj
t.setFont(QFont("Times", 18, QFont::Bold)); QObject::connect(&quit, SIGNAL(clicked()), &app, SLOT(quit())); quit.show(); return app.exec(); } Pritpal Bedi wrote: > > Hi > > > Franček Prijatelj wrote: >> >> Is there a function equivalent

Re: [Harbour] HOWTO about codepage in HbQt

2009-09-08 Thread Franček Prijatelj
Hi Alexandr Yes this is another solution. If we want to be portable we shuldn't use spaces and national characters in file names. BRGS Franček Alexandr Okhotnikov wrote: > > Hi > > example: (for Russian, all *.prg in codepage 1251) > > INIT PROCEDURE Qt_Start() > LOCAL lang > qt_q

Re: [Harbour] HOWTO about codepage in HbQt

2009-09-09 Thread Franček Prijatelj
Hi Przemek I think Harbour compiler should support BOM in .prg and include files. Tell me ,if there is a big problem to conditionaly skip first tree bytes. Every modern editor supports it. Anyhow we are in Unicode age. Sorry if my comment is out of the main thread. Brgs Franček -- View this m

Re: [Harbour] HOWTO about codepage in HbQt

2009-09-09 Thread Franček Prijatelj
Hi Til now I had a few cases where I needed it. For example a string of html encoded in utf8. Maybe it can be solved with -utf8 switch. best regards, Franček Przemyslaw Czerpak-2 wrote: > > On Wed, 09 Sep 2009, Franček Prijatelj wrote: > > Hi, > >> I think Ha

Re: [Harbour] debug

2009-09-14 Thread Franček Prijatelj
ou have to link gtwin (If working on windows, otherwise some linux gt library) It works for me. I also changed few lines in debugger.prg, so that I can set breakpoints and other settings in init.cld BRGS Franček Prijatelj Alexandr Okhotnikov wrote: > > Hi Pritpal Bedi > > Usi

Re: [Harbour] debug

2009-09-14 Thread Franček Prijatelj
oleaut32.lib uuid.lib ws2_32.lib advapi32.lib vfw32.lib winmm.lib Microsoft (R) Incremental Linker Version 8.00.50727.762 Copyright (C) Microsoft Corporation. All rights reserved. BRGS Franček Alexandr Okhotnikov wrote: > > Hi Franček Prijatelj > > Hangs on startup > W

Re: [Harbour] debug

2009-09-14 Thread Franček Prijatelj
-lxhb -lkernel32 -lgdi32 -luser32 -lcomctl32 -lcomdlg32 -lshell32 -lwinspool -lole32 -loleaut32 -luuid -lws2_32 -ladvapi32 -lvfw32 -lwinmm -Wl,--end-group BRGS Franček Alexandr Okhotnikov wrote: > > Hi Franček Prijatelj > > Hangs on startup > What compilation options for

Re: [Harbour] demoqt tests with debug_new - Leaked objects

2009-09-16 Thread Franček Prijatelj
Hi Pritpal In STATIC FUNCTION Dialogs You are using local oDlg which is overwriten many times (you should delete QWidgets pointed to by it, before allocating new ones) One solution (not going in other leaks) is this: PROCEDURE Main() Local oLabel, oBtn, oDA, oTabBar Local oWnd, oSize

Re: [Harbour] demoqt tests with debug_new - Leaked objects

2009-09-16 Thread Franček Prijatelj
w() oDlg6:setWindowTitle( "Harbour-QT Font Selector" ) endif oDlg6:show() ENDCASE RETURN nil My intention was to show why webpage when visited increases size of used memory. With this solution memory is increased only first time. Of course, there are bett

Re: [Harbour] demoqt tests with debug_new - Leaked objects

2009-09-16 Thread Franček Prijatelj
Hi Pritpal You are right. My comment was regarding István's writing. He began thread writing about demoqt. Otherwise my compliments about Your great work. Regards Franček Pritpal Bedi wrote: > > Hi > > > Franček Prijatelj wrote: >> >> In STATIC FUNCTION

Re: [Harbour] demoqt tests with debug_new - Leaked objects

2009-09-16 Thread Franček Prijatelj
gt; Hi Francek, > > Okay, I see, although I'm still concerned that these > objects are never freed, and if I'd like to free them, > what is the right way to do it? > > Brgds, > Viktor > > On 2009.09.16., at 10:33, Franček Prijatelj wrote: > >> &g

Re: [Harbour] demoqt tests with debug_new - Leaked objects

2009-09-16 Thread Franček Prijatelj
Hi Pritpal This behavior is usual for any C++ program. Here is example: #include using namespace std; class TRect { public: TRect(int t,int l,int w,int h) :_t(t),_l(l),_w(w),_h(h) {} int top()const { return _t; } int left() const { return _l; } int width() const { retu

Re: [Harbour] demoqt tests with debug_new - Leaked objects

2009-09-16 Thread Franček Prijatelj
Hi By the way, you shuld newer call x->~TXobj directly. You !!!MUST delete x Here is explanation http://www.parashift.com/c++-faq-lite/freestore-mgmt.html#faq-16.9 BRGS Franček Franček Prijatelj wrote: > > Hi Pritpal > > This behavior is usual for any C++ program. >

[Harbour] hbmemio doesnt't work from USB key.

2009-10-22 Thread FRANČEK PRIJATELJ
Hi Mindaugas When I copy simple program ,which is using hbmemio, to USB key and then run it from USB, it crashes with DOS error 123. The same program is workin fine from hard disk. My platform is win XP , MSVC8. BRGS Franček <>___ Harbour mailing l

Re: [Harbour] hbmemio doesnt't work from USB key.

2009-10-23 Thread Franček Prijatelj
Hi Here is a program Regards, Franček Mindaugas Kavaliauskas wrote: > > Hi, > > > FRANČEK PRIJATELJ wrote: >> When I copy simple program ,which is using hbmemio, to USB key >> and then run it from USB, it crashes with DOS error 123. >> The same prog

Re: [Harbour] hbmemio doesnt't work from USB key.

2009-10-23 Thread Franček Prijatelj
Hi Mindaugas Thanks, for quick answer. You are right, it's not memio problem, but my error. I was misguided by different behaviour on HD and USB key. Once again thanks for your work and your suport. Regards, Franček Mindaugas Kavaliauskas wrote: > > Hi, > > > Fra

Re: [Harbour] hbmemio doesnt't work from USB key.

2009-10-23 Thread Franček Prijatelj
le > > is possible a Warning in hbmk? > "request and loaded library are different" > Sorry if seem a stupid question > I hope in harbour easy to understand for everybody > > 2009/10/23 Franček Prijatelj : >> >> Hi Mindaugas >> >> Thanks, for qu

[Harbour] Error compiling last revision

2009-11-26 Thread FRANČEK PRIJATELJ
Hi Building last revision (platform : WinXP MSVC8), i get following errors: ./bin/win/msvc/hbrun.exe --hb:gtcgi ./bin/postinst.prg ! Making C:\HRB\msvc_D_Tr\bin\hbmk.cfg... .\bin\postinst.bat ! Making shared version of Harbour binaries... hbrun.c Unrecoverable error 6005: Exception error:

[Harbour] error in trunk

2009-12-22 Thread FRANČEK PRIJATELJ
Hi There is an error: hbmk2: .pot error: C:\HRB\SVN\SRC-SVN\bin\..\utils\hbmk2\hbmk2.pt_BR.po:69;unrecognized line there are 3 double quotes line 69: msgstr "Erro: Diret˘rio de trabalho nĆo p"de ser criado: %1$s" <>___ Harbour mailing l

Re: [Harbour] errors with release 13584

2010-01-18 Thread Franček Prijatelj
Hi You have to insert #include "windows.h" in every *.c file. (after #include "hbapi.h") I did it localy and it works. It's a consequence of latest replacements of X types with HB_ in Harbour trunk. Anyhow I think that Grigory Filatov will have to change it. BRGS Rossine wrote: > >

Re: [Harbour] errors with release 13584

2010-01-18 Thread Franček Prijatelj
Hi It's a consequence of . and commenting out #include "windows.h" Franček Prijatelj wrote: > > Hi > > You have to insert #include "windows.h" in every *.c file. (after #include > "hbapi.h") > I did it localy and it works. >

RE: [Harbour] errors with release 13584

2010-01-18 Thread Franček Prijatelj
Hi I use mingw and MSVC8 with minigui extended (distribution by Grigory Filatov) and I have no problems with any compiler. Because minigui uses win32 appi, You have to #include BRGS Rossine wrote: > > Hello Horodyski, > > I use minigui extended. Currently I use Borland BCC. What is the adv

Re: [Harbour] errors with release 13584

2010-01-18 Thread Franček Prijatelj
Hi Thank You. I see in hbdefs.h: /* Include windows.h if applicable and requested */ #if defined( HB_OS_WIN_USED ) && defined( HB_OS_WIN ) #include #if defined( __GNUC__ ) #define HB_DONT_DEFINE_BASIC_TYPES #endif But I'am compiling daily minigui extended with mingw and MSVC8.

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

2010-01-22 Thread Franček Prijatelj
Hi My congrats, nice work. There is a link to some very interesting component: http://freddie.witherden.org/tools/libqmarkedscrollbar/ It could be used for bookmarks, errors BRGS Franček -- View this message in context: http://old.nabble.com/SF.net-SVN%3A-harbour-project%3A-13667--tru

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

2010-01-22 Thread Franček Prijatelj
Hi Missing hbqt_hbqplaintextedit.h Here is an error: cl.exe -I. -I../../../../../../include -nologo -TP -W4 -wd4127 -Ot2b1 -EHs-c- -IC:\Qt\4.6.0-msvc\include -IC:\Qt\4.6.0-msvc\include/QtCore -IC:\Qt\4.6.0-msvc\include/QtGui -DUNICODE -FoHBQPlainTextEdit.obj -c ../../../HBQPlainTextEdit.cpp

Re: Re: [Harbour] hbpqtui class

2010-01-27 Thread Franček Prijatelj
Hi +1 HBQT library, the "oficial" Harbour wrapper to accessing GUI multiplatform API The progress of hbqt,hbIde,hbxbp is amazing. IMHO because of excelent cooperation of Pritpal,Victor,Przemysław and others, which are all experts. I am curently using minigui extended for my applications, which i

Re: [Harbour] hbIDE - Find in Files Dialog - What if presented as right-docked window

2010-02-06 Thread Franček Prijatelj
Hi Pritpal Usualy editors/IDES (Eclipse, notepad++) put find information at the bottom. Maybe a new tab (Compile results,Link results, Find results,Output console,...) BRGS Franček Pritpal Bedi wrote: > > > Hello All, > > What if find in files window is presented as right-docked window. >

Re: [Harbour] hbIDE - Find in Files Dialog - What if presented as right-docked window

2010-02-06 Thread Franček Prijatelj
Hi And by the way. When you close Function list, Projects or Build info with top-right X, you have to click twice on toolbar button to open it again. (You don't set flags on close). BRGS Franček -- View this message in context: http://old.nabble.com/hbIDE---Find-in-Files-Dialog---What-if-pr

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

2010-02-09 Thread Franček Prijatelj
Hi vouchcac wrote: > > > As we have decided against QtWebkit, this implementation > may not look highly professional, will surely solve > our purpose. > > I don't understand, what is the reason for this decision. I am currently working with Qt 4.6.1 (both MSVC8, and off

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

2010-02-10 Thread Franček Prijatelj
Hi Pritpal Bedi wrote: > > > The decision was based on two factors: > > 1. Qt with WebKit was not available on some distributions, >which ones, I do not remember, someone has to update this. > 2. WebKit was too heavy. Appln consumed double the size of normal load. > > But for sure QtWeb

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

2010-02-10 Thread Franček Prijatelj
Hi Viktor Szakáts wrote: > > Sorry, but I don't understand: QWebKit is an embedded web > browser component. Why do we need to implement a browser > in Harbour? > > There are _plenty_ of free browsers on the market which > do the job much better than any local effort in Harbour > will ever

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

2010-02-10 Thread Franček Prijatelj
Hi Viktor Viktor Szakáts wrote: > > > First we should discuss all concerns, if you care, pls > answer them. BTW, it's supported on _some_ Linux distros. > HB_WITH_QT_WEBKIT is no solution, but hack. Such setting > should be resolved automatically. > > Or, it's still an option to move the w

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

2010-02-10 Thread Franček Prijatelj
Hi Viktor Szakáts wrote: > > > To me the direction rather looks like moving applications > inside the browser, rather than moving the browser inside > applications. > > No. I am just using browser as a very intelligent terminal. Some time ago (I am old timer, started with CLIPPER SUMMER

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

2010-02-10 Thread Franček Prijatelj
Hi Viktor Viktor Szakáts wrote: > > > So IMO Harbour's place in this scenario is rather the > server side, to help creating documents complying with > above standards, server them through an IP stack and > make them work in standard browsers. > > You are right. I see harbour as "a serve

Re: [Harbour] MSVC 8 - Application Build Errors

2010-02-15 Thread Franček Prijatelj
Hi Pritpal Bedi wrote: > > > Hi > > Today I compiled all my libraries under hbIDE with MSVC 8 , > everything went almost fine but for the error reported below. > > msimg32.lib wininet.lib hbpcre.lib hbzlib.lib > c:\dev_sources\dev_resources\vouch.res > c:\dev_sources\dev_resources\ar32.res >

Re: [Harbour] MSVC 8 - Application Build Errors

2010-02-15 Thread Franček Prijatelj
Hi Pritpal Bedi wrote: > > > > Franček Prijatelj wrote: >> >> Try to add libpng.lib to libraries. >> > > That's OK. > > But my question is why hbwin.lib is dependant on libpng ? > > I do not want to include libpng. > > Re

[Harbour] hbide runtime error

2010-02-16 Thread Franček Prijatelj
Hi When closing Project properties dialog error occurs: Application Internal Error - C:\RAZVOJ\HARBOUR\WRK\APP\Qt\hbide\hbide.exe Terminated at: 2010.02.16 10:42:27 Unrecoverable error 6005: Exception error: Exception Code:C005 Exception Address:0041FC17 EAX: EBX:01817

Re: [Harbour] hbide runtime error

2010-02-16 Thread Franček Prijatelj
Hi Pritpal Pritpal Bedi wrote: > > > With MSVC I get this error all the time. After deep investigations > I am of this view that destructors in MSVC are implemented in different > way than in MinGW. I could not find a proper solution without ugly hacks. > > I get the same error compiling wi

Re: [Harbour] hbide runtime error

2010-02-16 Thread Franček Prijatelj
Hi Sorry . Without -l. Franček Prijatelj wrote: > > > I also tried with SET HB_USER_PRGFLAGS=-b , but it doesn't compile. > > Called from HBQTUI:DESTROY(0) < harbour compiled with > HB_BUILD_DEBUG=yes > Called from IDEPROJMANAGER:FETCHPROPERTI

Re: [Harbour] hbide runtime error

2010-02-16 Thread Franček Prijatelj
Hi Pritpal Bedi wrote: > > > Can you test again after r13887 with MinGW ? > > SVN build 13888, mingw4.0 Same error. BRGDS Franček -- View this message in context: http://old.nabble.com/hbide-runtime-error-tp27605764p27613781.html Sent from the Harbour - Dev mailing list archive at Nabble

Re: [Harbour] hbide runtime error

2010-02-16 Thread Franček Prijatelj
Hi Pritpal Bedi wrote: > > > Did you recompiled hbQT also ? > > Yes. I have made a clean build of Harbour and then recompiled hbide. (both MSVC and mingw). Both have same error. BRGS Franček -- View this message in context: http://old.nabble.com/hbide-runtime-error-tp27605764p276153

[Harbour] Error building revision 13896

2010-02-16 Thread Franček Prijatelj
Hi Building latest revision (13896) i get following errors: cl.exe -I. -I../../../../../include -nologo -TP -W4 -wd4127 -Ot2b1 -EHs-c- -Zi -DHB_LEGACY_TYPES_OFF -DHB_TR_LEVEL_DEBUG -DUNICODE -Foexpropt1.obj -c ../../../expropt1.c expropt1.c ../../../expropt1.c(730) : error C2065: 'pCommon' :

Re: [Harbour] Error building revision 13896

2010-02-16 Thread Franček Prijatelj
Hi Franček Prijatelj wrote: > > Hi > > Building latest revision (13896) i get following errors: > > cl.exe -I. -I../../../../../include -nologo -TP -W4 -wd4127 -Ot2b1 > -EHs-c- -Zi -DHB_LEGACY_TYPES_OFF -DHB_TR_LEVEL_DEBUG -DUNICODE > -Foexpropt1.obj -c ../../..

[Harbour] Error compiling hbqt_hbslots.cpp

2010-02-22 Thread Franček Prijatelj
Hi Here is an error compiling with MSVC8: cl.exe -I. -I../../../../../include -nologo -TP -W4 -wd4127 -Ot2b1 -EHs-c- -Zi -DHB_LEGACY_TYPES_OFF -DUNICODE -DHB_TR_LEVEL_DEBUG -IC:\Qt\msvc\include -IC:\Qt\msvc\include/QtCore -IC:\Qt\msvc\include/QtGui -IC:\Qt\msvc\include/QtNetwork -Fohbqt_hbsl

Re: [Harbour] Error compiling hbqt_hbslots.cpp

2010-02-22 Thread Franček Prijatelj
Hi Franček Prijatelj wrote: > > Hi > > Here is an error compiling with MSVC8: > > cl.exe -I. -I../../../../../include -nologo -TP -W4 -wd4127 -Ot2b1 > -EHs-c- -Zi -DHB_LEGACY_TYPES_OFF -DUNICODE -DHB_TR_LEVEL_DEBUG > -IC:\Qt\msvc\include -IC:\Qt\msvc\include/QtCor

Re: [Harbour] Error compiling hbqt_hbslots.cpp

2010-02-22 Thread Franček Prijatelj
Hi Franček Prijatelj wrote: > > > Here is an error compiling with MSVC8: > > cl.exe -I. -I../../../../../include -nologo -TP -W4 -wd4127 -Ot2b1 > -EHs-c- -Zi -DHB_LEGACY_TYPES_OFF -DUNICODE -DHB_TR_LEVEL_DEBUG > -IC:\Qt\msvc\include -IC:\Qt\msvc\include/QtCore > -I

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

2010-02-22 Thread Franček Prijatelj
Hi Pritpal Here is an error compiling with MSVC8: cl.exe -I. -I../../../../../include -nologo -TP -W4 -wd4127 -Ot2b1 -EHs-c- -Zi -DHB_LEGACY_TYPES_OFF -DUNICODE -DHB_TR_LEVEL_DEBUG -IC:\Qt\msvc\include -IC:\Qt\msvc\include/QtCore -IC:\Qt\msvc\include/QtGui -IC:\Qt\msvc\include/QtNetwork -Foh

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

2010-02-22 Thread Franček Prijatelj
Hi Pritpal Pritpal Bedi wrote: > > > > It is a programming fact on the surface to cover > some of the unwanted side-effects of Qt which I do not yet > how they should be implemented in a way that does not > cause GPF. > > I am constantly struggling to find the solution. > But seems my meag

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

2010-02-22 Thread Franček Prijatelj
Hi Pritpal Bedi wrote: > > > This is true if the widget is created with pure .cpp code > calling the constructors and destruction within from. > > In Harbour-Qt we construct a widget with QWidget():new() > which allocates a pointer in HMV and we destruct that pointer > through GC. It is only

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

2010-02-22 Thread Franček Prijatelj
Hi As i informed you hbqt_hbslots.cpp doesn't compile with MSVC8 (it compiles with mingw). MSVC8 allows only 128 nesting depth. So here i send you corected file. BRGDS Franček http://old.nabble.com/file/p27698705/hbqt_hbslots.cpp hbqt_hbslots.cpp -- View this message in context: http://old

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

2010-03-03 Thread Franček Prijatelj
et on which the layout is installed, and for this reason we don't need to specify an explicit parent when we construct a widget that will be put in a layout. So the widgets are children of top level Widget. BRGS Franček - brgs Franček Prijatelj -- View this message in context: http://n2

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

2010-03-03 Thread Franček Prijatelj
ad of GC pointers. Franček - brgs Franček Prijatelj -- View this message in context: http://n2.nabble.com/SF-net-SVN-harbour-project-14049-trunk-harbour-tp4666373p4668442.html Sent from the harbour-devel mailing list archive at Nabble.com. ___ Harbo

[Harbour] Re: recommended C compiler for Win

2010-03-10 Thread Franček Prijatelj
Hi There is also "Equation Solution" (http://www.equation.com/servlet/equation.cmd?fa=programminglog) distribution. They are building weekly snapshots. I haven't tested it yet with Harbour. BRGDS Franček ----- brgs Franček Prijatelj -- View this message in context: http:

[Harbour] Re: hbIDE - Let's review

2010-03-11 Thread Franček Prijatelj
ek - brgs Franček Prijatelj -- View this message in context: http://n2.nabble.com/hbIDE-Let-s-review-tp4717833p4720572.html Sent from the harbour-devel mailing list archive at Nabble.com. ___ Harbour mailing list (attachment size limit: 4

[Harbour] Re: hbIDE - Autosave a Source

2010-03-21 Thread Franček Prijatelj
, how he solved a lot of your bugs and created some amazing applications. ;) BRGDS Francek - brgs Franček Prijatelj -- View this message in context: http://n2.nabble.com/hbIDE-Autosave-a-Source-tp4769695p4771797.html Sent from the harbour-devel mailing list arc

[Harbour] Re: hbIDE - On-line documentation-cum-distro update

2010-03-29 Thread Franček Prijatelj
, which is writen in C++). We need hb_cppappi in Harbour , which can be used for different C++ bindings (Qt,wxWidgets,...). BRGDS - brgs Franček Prijatelj -- View this message in context: http://n2.nabble.com/hbIDE-On-line-documentation-cum-distro-update-tp4812225p4816757.html Sent from the

[Harbour] Error compiling pcre with MSVC8

2010-04-11 Thread Franček Prijatelj
\external\pcre\pcreinal.h(198) : fatal error C1083: Cannot open include file: 'inttypes.h': No such file or directory mingw32-make[3]: [chartabs.obj] Error 2 (ignored) . . . BRGDS Franček - brgs Franček Prijatelj -- View this message in context: http://n2.nabble.com/Error-compiling-pcre-

[Harbour] MSVC8 rc complier doesn't hava -nologo param

2010-04-11 Thread Franček Prijatelj
.) ! 'hbgd' library skipped ('libgd' not found. Configure with HB_WITH_GD.) ! Using QT 'moc' executable: C:\Qt\msvc\include\..\bin\moc.exe (autodetected) ! 'rddads' library skipped ('ads' not found. Configure with HB_WITH_ADS.) ! 'sddoci' lib

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

2010-04-11 Thread Franček Prijatelj
Hi Rc compiler will have /nologo param only in next version in VS2010. BRGDS - brgs Franček Prijatelj -- View this message in context: http://n2.nabble.com/SF-net-SVN-harbour-project-14313-trunk-harbour-tp4884692p4885965.html Sent from the harbour-devel mailing list archive at

[Harbour] Re: [Viktor] Can we delete the -nologo parameter for rc.exe ?

2010-04-11 Thread Franček Prijatelj
Hi I had the same problem. Multiple configurations - msvc and mingw and c:\mingw\bin in path. (for mingw32-make) So autodetection didn't work. And the same was with: SET HB_COMPILER=msvc SET HB_COMPILER_VER=800 Both variants work now when i removed mingw path. BRGDS - brgs Fr

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

2010-04-22 Thread Franček Prijatelj
Hi Compiling with MSVC8 there is an error: hbtrace.c ../../../hbtrace.c(186) : error C3861: 'va_copy': identifier not found BRGDS - brgs Franček Prijatelj -- View this message in context: http://harbour-devel.1590103.n2.nabble.com/SF-net-SVN-harbour-project-14359-tru

[Harbour] port number in TMySQLServer():New()

2009-04-14 Thread FRANČEK PRIJATELJ
Hi Victor Pls could You add to TMySQLServer():New() 4th parameter for (non default) port number. Most routers NAT ports. -- View this message in context: http://n2.nabble.com/port-number-in--TMySQLServer%28%29%3ANew%28%29-tp2631807p2631807.html Sent from the harbour-devel mailing list arch

Re: [Harbour] port number in TMySQLServer():New()

2009-04-14 Thread FRANČEK PRIJATELJ
Hi Victor Thanks , it's working OK . Brgds, Franček -- View this message in context: http://n2.nabble.com/port-number-in--TMySQLServer%28%29%3ANew%28%29-tp2631807p2632325.html Sent from the harbour-devel mailing list archive at Nabble.com. ___ Har

[Harbour] REQUEST for puting "#include cstrfil.h " into cstrfil.c

2009-02-24 Thread FRANČEK PRIJATELJ
Hello Przemyslaw I have a problem compiling (MSVC8 ; -p switch) cstrfil.c. It can be solved puting "#include cstrfil.h " into cstrfil.c. Pls can you change this. begin:vcard fn;quoted-printable:Fran=C4=8Dek Prijatelj n;quoted-printable:Prijatelj;Fran=C4=8Dek email;internet:francek.prijat.