[Harbour] Re: Netio Questions

2010-05-02 Thread AbeB
Przemek fixed this issue now. he is just awesome! Alex Strickland wrote: Alex Strickland wrote: If the server is stopped (quit), the client stays frozen, it doesn't time out. Or am I doing something wrong here? I just started looking at the code: NETIO_CONNECT( [cServer],

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

2010-05-02 Thread AbeB
Awesome!! Thanks, netio is a life saver for me. thanks a zillion! i'm using the server from hbnetio\utils. I'd love to see some 'Management' functions on the server side. link: 1. list all active connections. 2. All open files. Global /per connection? 3. Kill a connection. All The Best,

[Harbour] Re: Netio Questions

2010-04-28 Thread AbeB
AbeB wrote: Hi Przemek all, Using netiosrv.prg from hbnetio\utils as the server. How can I see on the Server all active connections? All open files. Global /per connection? Kill a connection? What happens to a hung up clien (client killed). Is the connection on the server

[Harbour] Netio Questions

2010-04-26 Thread AbeB
Hi Przemek all, Using netiosrv.prg from hbnetio\utils as the server. How can I see on the Server all active connections. All open files. Global /per connection? Kill a connection. What happens to a hung up clien (client killed). Is the connection on the server killed too it's files

[Harbour] (no subject)

2010-03-28 Thread AbeB
Hi Viktor, Looks like it's adding double slashes. My environment is HB_ARCHITECTURE=win HB_BUILD_IMPLIB=yes HB_COMPILER=mingw HB_CONTRIB_ADDONS=yes HB_INSTALL_PREFIX=C:\Harbour\mingw HB_WITH_ADS=c:\harbour\ACESDK.7 HB_WITH_QT=C:\Qt\4.5.3\include hbmk2: Processing environment

[Harbour] RE: Urgent Help! wce + netio

2010-03-25 Thread AbeB
Hi, [...] s_fileRecvAll() while( lRead len ) { if( conn-zstream ) l = hb_znetRead( conn-zstream, conn-sd, ptr + lRead, len - lRead, NETIO_TIMEOUT ); else l = hb_socketRecv( conn-sd, ptr + lRead, len - lRead, 0, NETIO_TIMEOUT ); if( l = 0 )

[Harbour] Urgent Help! wce + netio

2010-03-24 Thread AbeB
Hi All, I developed an Application to run on wince using netio. I first wrote the app compiled for w32 and it runs very well. Then I compiled it for wce. Now if the handheld is connected via the Active Sync cable ( so it gets some kind of internal IP adddress) is work fine too. But if

[Harbour] Re: Urgent Help! wce + netio

2010-03-24 Thread AbeB
Wich are the device? Handheld Products, Windows mobile 6 also with wifi device have a ip address? Yes Sure. disconnection in wifi will be due to signal low 100 % signal Change the Communication channel wifi Try a using a different wifi access point (better mimo with multi channel) Connection

[Harbour] Wince + QT

2010-03-19 Thread AbeB
Hi All, Is anybody using Qt on Wince Any guidance will be greatly is appreciated. Thanks, Abe -- View this message in context: http://n2.nabble.com/Wince-QT-tp4764079p4764079.html Sent from the harbour-devel mailing list archive at Nabble.com.

[Harbour] Re: Error GPF with hbnetio

2010-03-08 Thread AbeB
Rossine wrote: Hi Przemek, Przemysław Czerpak wrote: It was a bug in MT HVM code which existed from the beginning but so far no one exploited it. decoded _SET_PATH structure was wrongly shared between child threads without cloning. I have just fixed it. OK :) Work´s fine

[Harbour] Re: Wrong hbsms (Viktor Szak?ts)

2010-03-05 Thread AbeB
and I have no idea from where Viktor gets this impression. Viktor, Your work, time, geniusness, effort, guidense is realized appreciated immensely. You are improving Harbour by the hour!. Please accept our Thank You. Thanks Abeb -- View this message in context: http://n2.nabble.com/Re

[Harbour] Re: Wrong hbsms

2010-03-04 Thread AbeB
Przemysław Czerpak wrote: one using nStartTime because time difference was calculated once at startup. The optimal code should make sth like: nStopTime := IIF( nTimeout 0, hb_milliSeconds() + nTimeOut * 1000 : 0 ) [...] WHILE .T. [...] IF nTimeOut = 0 .OR.

[Harbour] for each requires local definition?

2010-02-11 Thread AbeB
Hi All, Does 'For Each' require variables to be local defined? proc test local ary := {1,2,3} local n with out this line a RTE Error BASE/1003 Variable does not exist: N will occour for each n in ary ? n Next Thanks Abe -- View this message in context:

[Harbour] Re: Wince + Tone() or PlaySound()

2010-02-03 Thread AbeB
Hi Przemysław, I tesed it on WinXP and it dosn't seem to work. Przemysław Czerpak wrote: On Thu, 26 Nov 2009, AbeB wrote: Does TONE() work on WinCE for anyone? (dosn't work for me) TONE() is implemented by GT subsystem so the most important question is which GT you are using

[Harbour] Help Please! Box Characters In WINCE

2010-02-03 Thread AbeB
Hi All, I just can't get the box characters to show on wince ver 5.00 it does show in the emulator though. what am i missing. Thanks, Abeb -- View this message in context: http://n2.nabble.com/Help-Please-Box-Characters-In-WINCE-tp4510357p4510357.html Sent from the harbour-devel mailing

[Harbour] hb_idleSleep( ntimeOut ) DST

2010-02-02 Thread AbeB
Hi All, Will hb_idleSleep( ntimeOut ) wait for an extra hour if the clock is adjusted just in that moment with an hour back (like in DST)? Thanks Abe. -- View this message in context: http://n2.nabble.com/hb-idleSleep-ntimeOut-DST-tp4501573p4501573.html Sent from the harbour-devel mailing

[Harbour] Re: 24 hour wait loop in telephaty

2010-02-01 Thread AbeB
exit endif it's in tp_recv tp_send tp_recvto tp_flush Thanks AbeB -- View this message in context: http://n2.nabble.com/24-hour-wait-loop-in-telephaty-tp4491844p4494447.html Sent from the harbour-devel mailing list archive at Nabble.com

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

2010-01-31 Thread AbeB
Many Thanks, Viktor. Abeb -- View this message in context: http://n2.nabble.com/SF-net-SVN-harbour-project-13735-trunk-harbour-tp4481852p4489521.html Sent from the harbour-devel mailing list archive at Nabble.com. ___ Harbour mailing list (attachment

[Harbour] 24 hour wait loop in telephaty

2010-01-31 Thread AbeB
One more tweak needed. IF TimeOut = 0 the loops wont be executed. (it should be executed once ) ABeb -- View this message in context: http://n2.nabble.com/24-hour-wait-loop-in-telephaty-tp4491844p4491844.html Sent from the harbour-devel mailing list archive at Nabble.com

[Harbour] 24 hour wait loop in telephaty

2010-01-29 Thread AbeB
Hi All, these lines (and similar ones) in contrib\hbtpathy\telepath.prg will cause in to wait 24 hours if executed before midnight. nDone := Seconds() + iif( nTimeout = 0, nTimeout, 0 ) DO WHILE tp_OutFree( nPort ) 0 .AND. ; ( nTimeout 0 .OR. Seconds() nDone )

[Harbour] Re: 24 hour wait loop in telephaty

2010-01-29 Thread AbeB
will this fix it? #define MS_PERDAY (24*60*60*60*60) nDone := (Seconds() + iif( nTimeout = 0, nTimeout, 0 ) ) % MS_PERDAY AbeB wrote: Hi All, these lines (and similar ones) in contrib\hbtpathy\telepath.prg will cause in to wait 24 hours if executed before midnight

[Harbour] Re: hbpqtui class

2010-01-27 Thread AbeB
Angel Pais wrote: A compiler without a GUI Framework leads it to nitche apps: Servers, console and cgi apps. A GUI Framework without compiler leads it to death because lack of support. If you do that then no new users will come here. Vanity is not a good advisor. very true. when

[Harbour] decimal number in achoice causes error

2010-01-27 Thread AbeB
proc main mary := {; 11 ,; 22 ,; 33 ,; 44 ,; 55 ,; 66 ,; 77 ,; 88 ,; 99 ,; aa ,; bb ,; cc ,; } //scroll down all the way up all the way ACHOICE( 5,10, 12.5 , 60 , mary ,,, 0 ) // 12.5 //Error

Re: [Harbour] decimal number in achoice causes error

2010-01-27 Thread AbeB
I understand that, but it should be fixed in achoice -- View this message in context: http://n2.nabble.com/decimal-number-in-achoice-causes-error-tp4469038p4469331.html Sent from the harbour-devel mailing list archive at Nabble.com. ___ Harbour

[Harbour] hbIDE[ 16 -17 ]

2010-01-26 Thread Abeb
Hi Pripal, How about a feature to insert with a press of a key the missing 'close code construct' like endif , next , endcase. a beautifier. Now this needs a lot of user customization options. Great work anyhow! keep it up! Thanks, Abe -- View this message in context:

Re: [Harbour] hbIDE[ 16 -17 ]

2010-01-26 Thread AbeB
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. -- View this message in context:

[Harbour] Re: Harbour 2.0.0 stats after one month

2010-01-25 Thread AbeB
Congratulations++ and I sure that like myself I so far only used the SVN download, so there are many more. Be Proud! All of you! Abe. -- View this message in context: http://n2.nabble.com/Harbour-2-0-0-stats-after-one-month-tp4453801p4454059.html Sent from the harbour-devel mailing list

[Harbour] What's wrong with this define?

2010-01-25 Thread AbeB
Hi All, #define xlCenter (0xEFF4) OSheet:rows(1):HorizontalAlignment := xlCenter //will not work! OSheet:rows(1):HorizontalAlignment := -4108 //Will work TIA, Abe -- View this message in context:

Re: [Harbour] What's wrong with this define?

2010-01-25 Thread AbeB
adam_l wrote: Abeb wrote: Hi All, #define xlCenter (0xEFF4) OSheet:rows(1):HorizontalAlignment := xlCenter //will not work! OSheet:rows(1):HorizontalAlignment := -4108 //Will work Simply look what show ? xlCenter i know that it's 4294963188

Re: [Harbour] Error in make install of svn 13682 (linux 64bit)

2010-01-23 Thread Abeb
do a clean build if your 'cross building' clean build the host first. Vagelis Skarmaliorakis wrote: Hi, I am getting the following: ../../../../../include/hbclass.ch(152) Error E0025 Error in #if expression 1 error Regards Vagelis -- View this message in context:

[Harbour] Error building Harbour mingw/wce

2010-01-20 Thread AbeB
! Building Harbour 2.0.1dev from source - http://www.harbour-project.org ! MAKE: win-make.exe 3.81 c:/cygwin/bin/sh.exe ! HB_INSTALL_PREFIX: C:\Harbour\DevCe ! HB_HOST_PLAT: win (x86) HB_SHELL: nt ! HB_PLATFORM: wce (arm) ! HB_COMPILER: mingwarm ! Component: 'zlib' found in

Re: Res: [Harbour] Error building Harbour mingw/wce

2010-01-20 Thread AbeB
Tried that, Still no good! Fernando Athayde wrote: try win-make clean and build again here in bcc happens this erro too, but with this way run Best Regards, Fernando Athayde -- View this message in context:

Re: Res: [Harbour] Error building Harbour mingw/wce

2010-01-20 Thread AbeB
Przemysław Czerpak wrote: On Wed, 20 Jan 2010, AbeB wrote: Hi, Tried that, Still no good! So you haven't made it well. When you made clean build then this error message will disappear for sure. Before you report any problems with devel SVN code always make clean build. Many

Re: Res: [Harbour] Error building Harbour mingw/wce

2010-01-20 Thread AbeB
-make.exe[3]: *** [harbour-20-wce-arm.dll] Error 1 win-make.exe[2]: *** [descend] Error 2 win-make.exe[1]: *** [dynlib] Error 2 win-make.exe: *** [src] Error 2 -- Przemysław Czerpak wrote: On Wed, 20 Jan 2010, AbeB wrote: Don't you see that you are creating cross build for WinCE

Re: [Harbour] errors with release 13584

2010-01-15 Thread AbeB
Viktor Szakáts wrote: - handles .dlls better Is DLLCALL fixed? for me it still GPFs with Mingw. I'd love to use Mingw, but this is a stopper for me. Best regards Abe -- View this message in context: http://n2.nabble.com/errors-with-release-13584-tp4396199p4399481.html Sent from the

Re: [Harbour] errors with release 13584

2010-01-15 Thread AbeB
Viktor Szakáts wrote: Nobody seems to be interested, or waits for others to fix it. Someone will have to actually look into it. Sad. How is that possible that nobody uses it? Is there an alternative? I'd love to look into it, but my knowledge in C Harbour internals is less then

Re: [Harbour] errors with release 13584

2010-01-15 Thread AbeB
I haven't said nobody uses is, but seemingly nobody who'd need it is willing to put any effort into it. not with MingW, i guess. and I rarely see even a 'thank you', Ohh, I must object this one. there are _LOT_ of 'thank you's for you and others in these posts, not as many as you

Re: [Harbour] Howto Draw an Image (bmp/jpg) in GTWVT?

2010-01-06 Thread AbeB
Thanks Massimo. Much appreciated. Massimo Belgrano wrote: Wvt_DrawImage( 1,6,12,9, IMAGE.BMP) but you also try xbase part XbpBitmap() supported by hbxbp.lib gtwvg.lib you can dind a sample harbour/contrib/hbxbp/tests/demoxbp.prg Please share here your result 2010/1/6 AbeB abe.b

[Harbour] Howto Draw an Image (bmp/jpg) in GTWVT?

2010-01-05 Thread AbeB
Hi, is it possible to draw an Image eather BMP/JPG in a GWVT console? How? Thanks, Abe. -- View this message in context: http://n2.nabble.com/Howto-Draw-an-Image-bmp-jpg-in-GTWVT-tp4259266p4259266.html Sent from the harbour-devel mailing list archive at Nabble.com.

[Harbour] Suggestion: Place generated file location

2009-12-11 Thread AbeB
Hi Harbour Makers, Would it be more practical to place all build generated .c .obj output files in a complete different directory location not underneath the current directory? like \harbourOutput\src\... \harbourBuidOutput\contrib\... so when i do a search on .c files it won't search all these

[Harbour] KeyRead()/KEysend() from ClipperTool

2009-12-02 Thread AbeB
Hi All, Does Harbour have KeyRead()/KEysend() functions implemented? I use it a lot in a program I'm moving over to Harbour. it can differentiate between any key (like NumPad #s regular #s) pressed. Following is the NG help on KeyRead() followed by CTScan.ch . How would I achieve that in

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

2009-11-26 Thread AbeB
Hi Mindaugas, First a Thank You. Nothing related to these modifications but to ADS. I reported a while back a bug in ads which is still not fixed. after poisoning the record pointer by doing a SKIP, a index..while will start from record 1, instead of from the current record it's only on

[Harbour] Wince + Tone() or PlaySound()

2009-11-26 Thread AbeB
Hi, Does TONE() work on WinCE for anyone? (dosn't work for me) how about PlaySound() this is what i have in test.prg --- Proc main() PLAYSOUND( .\SOUND_OK.WAV) #PRAGMA BEGINDUMP #include windows.h #include mmsystem.h #include hbapi.h HB_FUNC( PLAYSOUND ) { hb_retl(

[Harbour] DllLOad under mingw

2009-10-26 Thread AbeB
Hi All, DllLoad seems to be broken under mingw. try contrib\hbwin\tests\TestDll.prg can anybody look into this? Thanks abe -- View this message in context: http://n2.nabble.com/DllLOad-under-mingw-tp3891691p3891691.html Sent from the harbour-devel mailing list archive at Nabble.com.

[Harbour] contrib\hbtpathy\telepath.prg

2009-10-26 Thread AbeB
part of function tp_waitfor seems to commented out!? Can i past my modified version? http://n2.nabble.com/file/n3891721/TELEPATH.PRG TELEPATH.PRG -- View this message in context: http://n2.nabble.com/contrib-hbtpathy-telepath-prg-tp3891721p3891721.html Sent from the harbour-devel mailing

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

2009-10-05 Thread AbeB
Thanks, this fixed it in WinCE too. thanks. druzus wrote: Revision: 12649 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12649view=rev Author: druzus Date: 2009-10-05 15:29:34 + (Mon, 05 Oct 2009) Log Message: --- 2009-10-05 17:28

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

2009-10-02 Thread AbeB
Przemyslaw Czerpak wrote: all these analysis with a short scan thru the source code. Wooh. I do not need such remote server for my own use - all my applications are executed fully on the server side so I do not want to reduce it to ADS like level. How do you achieve

[Harbour] gpf on Copy struc with no open dbf

2009-09-10 Thread AbeB
Proc Main() copy struc to temp -- View this message in context: http://n2.nabble.com/gpf-on-Copy-struc-with-no-open-dbf-tp3622441p3622441.html Sent from the harbour-devel mailing list archive at Nabble.com. ___ Harbour mailing list

[Harbour] does the get system support a mouse?

2009-09-06 Thread AbeB
Hi All, How can I make my app mouseable? in gtwin. clicking on a get to make it the active get, double clicking to put the cursor on that position within that get? Thanks, Abe -- View this message in context: http://n2.nabble.com/does-the-get-system-support-a-mouse-tp3593190p3593190.html

Re: [Harbour] does the get system support a mouse?

2009-09-06 Thread AbeB
Thanks a lot. Guillermo Varona Silupú wrote: AbeB escribió: Hi All, How can I make my app mouseable? in gtwin. clicking on a get to make it the active get, double clicking to put the cursor on that position within that get? #include Inkey.ch PROCEDURE MAIN LOCAL cVar1 := cVar2

[Harbour] msvc error

2009-09-02 Thread AbeB
! Building Harbour 2.0.0beta2 from source - http://www.harbour-project.org ! MAKE: win-make.exe 3.81 sh.exe ! HB_INSTALL_PREFIX: c:\Harbour\Dev ! HB_HOST_PLAT: win (x86) HB_SHELL: nt ! HB_PLATFORM: win (x86) (autodetected) ! HB_COMPILER: msvc (autodetected: c:/Program Files/Microsoft Visual

[Harbour] another msvc error

2009-09-02 Thread AbeB
! Building Harbour 2.0.0beta2 from source - http://www.harbour-project.org ! MAKE: win-make.exe 3.81 sh.exe ! HB_INSTALL_PREFIX: c:\Harbour\Dev ! HB_HOST_PLAT: win (x86) HB_SHELL: nt ! HB_PLATFORM: win (x86) (autodetected) ! HB_COMPILER: msvc (autodetected: c:/Program Files/Microsoft Visual

Re: [Harbour] Testing HBNETIO

2009-09-01 Thread AbeB
Hi Przemyslaw, Works Great! can it be made to support names like net:hostname:port:filename instead of ip address? also in my test the NETIO_CONNECT(): returns .F., but it works! NETIO_CONNECT(): .F. used: .T. nterr: .F. alias: CLASS lastrec:121 ordCount: 0 Thanks Abe --

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

2009-08-31 Thread Abeb
Wow Wee. Thanks a Zillion. Will this work on Wince too, so we have a client/server solution for Wince? Thanks Abe druzus wrote: Revision: 12382 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12382view=rev Author: druzus Date: 2009-08-31 22:56:45 +

Re: [Harbour] OLE in WINCE

2009-08-26 Thread AbeB
Hi Jaroslaw, I'm too struggling win WCE. What I think is that Tahoma is not a fixed font. Courier New is. ( i tried in is Word on the emulater). A proportional spaced font will have the effect you see. But I tried to select Courier New but with weired effects. I looked in gtwvt.c and I see

[Harbour] WinCe Fonts/Console

2009-08-24 Thread AbeB
Font Sizeing is broken on Wce/Mingwarm. won't change size. and the default size is unreadable. Please, Please all of you gurus, let's make Harbour THE program for Wince. I wish I could help here, but the best I can do is Testing/Reporting. Thanks Abe -- View this message in context:

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

2009-08-24 Thread AbeB
Thanks Viktor. very clear now. Regards, Abe vszakats wrote: Revision: 12307 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12307view=rev Author: vszakats Date: 2009-08-24 16:22:59 + (Mon, 24 Aug 2009) Log Message: --- 2009-08-24 18:19

[Harbour] Harbour For WinCE

2009-08-19 Thread AbeB
Hi All, First let me thank all of you for getting us Harbour. Thank You. I don't have to enumerate what effort, expertize time that went into it to make Harbour what it is now, it's all well known, and appreciated. I think wish more attention would be given to make it run on WinCE. It would

[Harbour] error makeing Harbour for Wince with Pellec 6.0

2009-08-11 Thread AbeB
../../../filebuf.c(97): error #2139: Too many initializers. ../../../filebuf.c(97): error #2139: Too many initializers. -- View this message in context: http://n2.nabble.com/error-makeing-Harbour-for-Wince-with-Pellec-6.0-tp3424694p3424694.html Sent from the harbour-devel mailing list archive

Re: [Harbour] problame with subindex ads remote

2009-08-09 Thread AbeB
: ,ADSGETTABLECONTYPE() tested against ADS Server 9.10.09 please give a look at this. Thanks in advance. Abe Przemyslaw Czerpak wrote: On Fri, 17 Jul 2009, AbeB wrote: Thanks Przemyslaw for looking into this with such detail. Did you try it against a remote server? I'm sorry but I do not have any so I

Re: [Harbour] problame with subindex ads remote

2009-08-09 Thread AbeB
FLD1 99 usecurrent ? ORDSETFOCUS() ? ORDSETFOCUS( TEMP ) ? ORDSETFOCUS() GO TOP ? FLD1 GO BOTTOM ? FLD1 ORDSETFOCUS( TEMP2 ) ? ORDSETFOCUS() GO TOP ? FLD1 GO BOTTOM ? FLD1 USE RETURN --- Przemyslaw Czerpak wrote: On Fri, 17 Jul 2009, AbeB wrote: Thanks Przemyslaw

[Harbour] debuger annoyance

2009-08-05 Thread AbeB
when selecting to show variables (like private or local) so that the variables window gets enlarged the source file window get smaller, then the current source line get out of sight. (scrolled of the source window). looks like it needs to be recalculated. hope i'm clear enough. thanks abe --

Re: [Harbour] problame with subindex ads remote

2009-08-02 Thread AbeB
tested against a ADS Server 9.10.0.9 changed SET SERVER LOCAL to SET SERVER REMOTE and this is the result. rdd: ADSCDX TEMP TEMP2 TEMP 1 100 TEMP2 1 98 Przemyslaw Czerpak wrote: On Wed, 15 Jul 2009, AbeB wrote: problem with subindex ads remote

Re: [Harbour] problame with subindex ads remote

2009-07-17 Thread AbeB
it a test. thanks Abe AbeB wrote: problem with subindex ads remote(only) #INCLUDE ADS.CH PROC MAIN() REQUEST ADS SET SERVER REMOTE // -will include the entire file in the 2nd index. //SET SERVER LOCAL // -will include the entire file in the 2nd index. ERASE(TEST.CDX

Re: [Harbour] problame with subindex ads remote

2009-07-17 Thread AbeB
) it's very possible that it's a bug in ace32/ads and it's fixed it a later version of ADS. thanks Przemyslaw Czerpak wrote: On Wed, 15 Jul 2009, AbeB wrote: problem with subindex ads remote(only) #INCLUDE ADS.CH PROC MAIN() REQUEST ADS SET SERVER REMOTE // -will include the entire file

[Harbour] problame with subindex ads remote

2009-07-15 Thread AbeB
problem with subindex ads remote(only) #INCLUDE ADS.CH PROC MAIN() REQUEST ADS SET SERVER REMOTE // -will include the entire file in the 2nd index. //SET SERVER LOCAL // -will include the entire file in the 2nd index. ERASE(TEST.CDX) DBCREATE(TEST.DBF ,{ {FLD1, N, 10 , 0 }} ) USE TEST

Re: [Harbour] problame with subindex ads remote

2009-07-15 Thread AbeB
ok, after some more testing, i find that the problem is with acs32.dll version 7. just downloaded version 9 and it seems to be fixed. AbeB wrote: problem with subindex ads remote(only) #INCLUDE ADS.CH PROC MAIN() REQUEST ADS SET SERVER REMOTE // -will include the entire file

[Harbour] cursor shap in insert mode.

2009-07-14 Thread AbeB
Hi, the cursor shape in insert/overwrite mode does not change. (gtwin) thanks abe -- View this message in context: http://n2.nabble.com/cursor-shap-in-insert-mode.-tp3255046p3255046.html Sent from the harbour-devel mailing list archive at Nabble.com.

Re: [Harbour] cursor shap in insert mode.

2009-07-14 Thread AbeB
., at 2:56, AbeB wrote: Hi, the cursor shape in insert/overwrite mode does not change. (gtwin) thanks abe -- View this message in context: http://n2.nabble.com/cursor-shap-in-insert-mode.-tp3255046p3255046.html Sent from the harbour-devel mailing list archive at Nabble.com

[Harbour] hb_nomouse like in xHarbour

2009-07-12 Thread AbeB
in gtwin line 105 reads /* To disable mouse, initialization was made in cmdarg.c */ static BOOL b_MouseEnable = TRUE; but //nomouse is not honored. is xharbour's gtwin reads if( hb_dynsymFind( HB_NOMOUSE ) ) { b_MouseEnable = FALSE; } so if there is a function hb_nomouse in

Re: [Harbour] hb_nomouse like in xHarbour

2009-07-12 Thread AbeB
//nomouse was/is a xHarbour thing. a cmd line argument to disable the mouse. I don't know if it's from C53. a gtinfo would be even better as long it will take of the mouse cursor from a full screen mode console. Viktor Szakáts wrote: in gtwin line 105 reads /* To disable mouse,

Re: [Harbour] contrib\hbwin\tests\testdll with mingw

2009-07-12 Thread AbeB
looks like this is still an open issue. Viktor Szakáts wrote: as i said contrib\hbwin\tests\testdll.prg no hbout.log was created. I'm using pscript.dll successfully for a while with BCC. I'm now trying Mingw and ran into this problem, So i checked out this contrib\hbwin\testdll.prg

Re: [Harbour] hbmk: Error: Running linker. 2

2009-07-07 Thread AbeB
the -ldflag= hbmk2 option. Brgds, Viktor On 2009.07.07., at 20:23, AbeB wrote: hbmk: Error: Running linker. 2 this is the message I get when there is undefined function i'd like to get more detailed error message Bcc environment Thanks abe -- View this message in context: http://n2

Re: [Harbour] hbmk: Error: Running linker. 2

2009-07-07 Thread AbeB
locally though. Brgds, Viktor On 2009.07.07., at 22:33, AbeB wrote: sorry, let me try again. my app wont link because of an undefined function. hbmk2 will come back with the following error. hbmk: Error: Running linker. 2 i'd like to see the error ilink32 give back, listing

Re: [Harbour] hbmk: Error: Running linker. 2

2009-07-07 Thread AbeB
., at 23:50, AbeB wrote: hbmk2 -hblnk @H.lst -trace trace.out -- trace.out hbmk: Processing configuration: c:\harbour\dev\bin\hbmk.cfg hbmk: Linker command: ilink32.exe @C:\WINDOWS\TEMP\h21lst.lnk hbmk: Linker script: -Gn -Tpe -LC:\BORLAND\BCC55\Lib\PSDK;c:\harbour\dev\lib -ap c0x32

Re: [Harbour] hbmk: Error: Running linker. 2

2009-07-07 Thread AbeB
., at 0:54, AbeB wrote: on the screen i get hbmk: Error: Running linker. 2 Viktor Szakáts wrote: Thanks, there isn't any sign of error in this session. In case of error, hbmk2 would show this message at the end of the output: 'hbmk: Error: Running linker. errorlevel' Brgds, Viktor

[Harbour] slq select with ADS

2009-06-30 Thread AbeB
I remember seeing an example using a select statement with RDDADS. am I just dreaming? Abe -- View this message in context: http://n2.nabble.com/slq-select-with-ADS-tp3185654p3185654.html Sent from the harbour-devel mailing list archive at Nabble.com.

[Harbour] Problam with lates changes

2009-06-26 Thread AbeB
try passing by reference. sTest := space(10) justright(@sTest) ? sTest thanks. Abe -- View this message in context: http://n2.nabble.com/Problam-with-lates-changes-tp3162355p3162355.html Sent from the harbour-devel mailing list archive at Nabble.com.

Re: [Harbour] Problam with lates changes

2009-06-26 Thread AbeB
On 2009.06.26., at 18:09, AbeB wrote: try passing by reference. sTest := space(10) justright(@sTest) ? sTest thanks. Abe -- View this message in context: http://n2.nabble.com/Problam-with-lates-changes-tp3162355p3162355.html Sent from the harbour-devel mailing list archive at Nabble.com

Re: [Harbour] Problam with lates changes

2009-06-26 Thread AbeB
? I'd also suggest to you and everyone else to make new checkout and clean build before reporting a problem after recent excessive changes. Brgds, Viktor On 2009.06.26., at 18:09, AbeB wrote: try passing by reference. sTest := space(10) justright(@sTest) ? sTest thanks. Abe

[Harbour] OLE

2009-06-15 Thread AbeB
I can't figure out why these will generate a OLE runtime error executing Sheet:rows(1):HorizontalAlignment := xlCenter //no good #define xlCalculationAutomatic 0xEFF7 #define xlCalculationManual 0xEFD9 #define xlCenter 0xEFF4 #define xlAutomatic

Re: [Harbour] in ADS RDD can EG_DATAWIDTH error be made CANDEFAULT?

2009-06-12 Thread AbeB
, EF_CANDEFAULT, NULL ); Brgds, Viktor On 2009.06.11., at 19:02, AbeB wrote: in ADS RDD can EG_DATAWIDTH error be made CANDEFAULT? in other RDDs they are. anybody on this issue?. -- View this message in context: http://n2.nabble.com/in-ADS-RDD-can-EG_DATAWIDTH-error-be-made-CANDEFAULT

RE: [Harbour] in ADS RDD can EG_DATAWIDTH error be made CANDEFAULT?

2009-06-11 Thread AbeB
in ADS RDD can EG_DATAWIDTH error be made CANDEFAULT? in other RDDs they are. anybody on this issue?. -- View this message in context: http://n2.nabble.com/in-ADS-RDD-can-EG_DATAWIDTH-error-be-made-CANDEFAULT--tp3056178p3063234.html Sent from the harbour-devel mailing list archive at

[Harbour] in ADS RDD can EG_DATAWIDTH error be made CANDEFAULT?

2009-06-10 Thread AbeB
in ADS RDD can EG_DATAWIDTH error be made CANDEFAULT? in other RDDs they are. Thanks, Abe -- View this message in context: http://n2.nabble.com/in-ADS-RDD-can-EG_DATAWIDTH-error-be-made-CANDEFAULT--tp3056178p3056178.html Sent from the harbour-devel mailing list archive at Nabble.com.

Re: [Harbour] contrib\hbwin\tests\testdll with mingw

2009-06-09 Thread AbeB
? Viktor Szakáts wrote: Any example code? maybe hbout.log created? Brgds, Viktor On 2009.06.09., at 16:30, AbeB wrote: tried with pscript.dll does not work for me. The application just terminates. with BCC it works fine. any insights? Thanks Abe. -- View this message

[Harbour] can't make wcecon.prg with latest SVN

2009-05-16 Thread AbeB
:/msys/1.0/local/harbourCE/lib/libhbmainwin.a(mainwin.o):mainwin.c:(.text+0x154): undefined reference to `hb_vmInit' C:/msys/1.0/local/harbourCE/lib/libhbmainwin.a(mainwin.o):mainwin.c:(.text+0x158): undefined reference to `hb_vmQuit' collect2: ld returned 1 exit status abeb...@laptop /harbourdev

[Harbour] Big Bug!!!! with negitive input

2009-05-16 Thread AbeB
try this entering -333, you'll get 33, at least this is what i get. proc main() local v := 0 cls @ 10,10 get v read ? v -- View this message in context: http://n2.nabble.com/Big-Bug%21%21%21%21-with-negitive-input-tp2893416p2893416.html Sent from the harbour-devel mailing list archive at

[Harbour] Bug in Get system

2009-05-16 Thread AbeB
try this entering -333, you'll get 33, at least this is what i get. proc main() local v := 0 cls @ 10,10 get v read ? v if compiled with $Id: tget.prg 10172 2009-02-04 18:21:23Z vszakats $ then it is OK -- View this message in context:

Re: [Harbour] Bug in ADS

2009-05-15 Thread AbeB
Thanks, it's good now I had the problem with 7.0 ace32.dll interesting though is, that linking with an older rddads.lib I had from around 12/25/08 it seemed to be OK! Przemyslaw Czerpak wrote: On Wed, 13 May 2009, fmanc...@viaopen.com wrote: Hi, I had that problem. I solved using the

[Harbour] newest ads len( area-cfield ) generate RTE

2009-05-14 Thread AbeB
newest ads * $Id: ads1.c 11050 2009-05-14 17:12:31Z druzus $ len( items-desc) generating error ERROR BASE/ Argument error: LEN -- View this message in context: http://n2.nabble.com/newest-ads-len%28-area-%3Ecfield-%29--generate-RTE-tp2902639p2902639.html Sent from the harbour-devel

[Harbour] Bug in ADS

2009-05-13 Thread AbeB
with the following test.prgProc MAIN() -- REQUEST ADS AdsSetServerType( 1 ) dbCreate( test.DBF, {; { ITEMID, C, 8, 0 }, ; { ITEM, C, 12, 0 }, ; { CLASS, C, 8, 0 }, ; {SUB, C, 8, 0 }, ; { CQTY, N, 7, 2 }, ; { R_PAK_BULK, C, 1, 0 }, ; {

Re: [Harbour] Bug in ADS

2009-05-13 Thread AbeB
Przemyslaw just fixed it, in't this guy just great?! Thanks Przemyslaw. 2009-05-14 00:23 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/contrib/rddads/ads1.c ! added workaround for ACE bug: character fields longer then 23 bytes are increased by one byte when read by

Re: [Harbour] 2009-05-04 10:00 UTC+0100 Miguel Angel Marchuet miguelan...@marchuet.net

2009-05-04 Thread AbeB
Great. Thanks A Lot. Miguel Angel Marchuet wrote: 2009-05-04 10:00 UTC+0100 Miguel Angel Marchuet miguelan...@marchuet.net * contrib/hbbmcdx/bmdbfcdx.c * contrib/hbbmcdx/hbbmcdx.h * Synchronized with current dbfcdx. Best regards, Miguel Angel Marchuet __

[Harbour] hbmk2.prg

2009-05-03 Thread AbeB
should it say hbrddall? aLIB_BASE_RDD_ST := {; hbrdd ,; hbusrrdd ,; hbuddall ,; hbhsx ,; hbsix ,; rddntx ,; rddnsx ,; rddcdx ,; rddfpt } -- View this message in context:

Re: [Harbour] hbmk2.prg

2009-05-03 Thread AbeB
sorry, my mistake. Viktor Szakáts wrote: No, it's correct, udd stands for user rdd. Brgds, Viktor On Sun, May 3, 2009 at 6:09 PM, AbeB abe.b...@att.net wrote: should it say hbrddall? aLIB_BASE_RDD_ST := {; hbrdd ,; hbusrrdd ,; hbuddall

[Harbour] hbbmcdx broken?

2009-05-03 Thread AbeB
Hi All, hbbmcdx started to GPF on me. is it broken? -- View this message in context: http://n2.nabble.com/hbbmcdx-broken--tp2778228p2778228.html Sent from the harbour-devel mailing list archive at Nabble.com. ___ Harbour mailing list

[Harbour] telepahty, output overflow

2009-03-30 Thread AbeB
Hi All, I'm printing to serial printer with hbtpathy.lib f.e. tp_send(1, replic(012345678901234567890012345678901234567890+chr(13)+chr(10),1000 ) ) but it whould cause overflow in the printed output. any help? Thanks, Abe -- View this message in context:

Re: [Harbour] telepahty, output overflow

2009-03-30 Thread AbeB
Hi Alex, Thanks for quick reply. In the printer it's enabled, but in software i have no clue how. Any guidance? Thanks, abe AbeB wrote: I'm printing to serial printer with hbtpathy.lib f.e. tp_send(1, replic(012345678901234567890012345678901234567890+chr(13)+chr(10),1000

Re: [Harbour] telepahty, output overflow

2009-03-30 Thread AbeB
for this. You could send text in small packets and wait for tp_iscts( nPort ) == .T. between each. Barry AbeB wrote: Hi Alex, Thanks for quick reply. In the printer it's enabled, but in software i have no clue how. Any guidance? Thanks, abe AbeB wrote: I'm printing to serial

[Harbour] box characters in wcecon

2009-03-24 Thread AbeB
Hi All. any help on getting the box characters displayed on wcecon ( running wince) instead of that little box placeholder? Thanks, Abe -- View this message in context: http://n2.nabble.com/box-characters-in-wcecon-tp2528256p2528256.html Sent from the harbour-devel mailing list archive at

  1   2   >