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,
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(
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 cli
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 file
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
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 <
>>Question: What happens if you ping the server (eg. write something to a
>>dummy file) every n seconds ?
>>Wireless connections tend to shutdown to save energy/bandwidth when not
>>in use.
It just keeps on getting replies.
>>P.D. Later I tell you where to send the check :P
I would send it now
>>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)
>
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 th
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.
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
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.co
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
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:
http://n2.
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 ma
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
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 lis
EndDo
if nTimeout = 0
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 lis
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
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
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 exe
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 )
hb_
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 mailing
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
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.
w
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:
http://n2.nabble.com/hbIDE-Requested-Thought-of-Features-Tracking-tp4
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:
http://old.nabble
adam_l wrote:
>
>
>
> Abeb wrote:
>>>
>>>
>>> Hi All,
>>>
>>> #define xlCenter (0xEFF4)
>>>
>>> OSheet:rows(1):HorizontalAlignment := xlCenter //will not work!
>>>
>>>
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:
http://n2.nabble.com/What-s-wrong-with-this-define-tp4
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 arc
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:
ld returned 1 exit status
win-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
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 problem
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:
http://n2.nabble.com/Error-building-Harbour-mingw-wce-tp4430018p443
! 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
C:/Harbour/harbou
>>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 de
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
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 t
Please share here your result
> 2010/1/6 AbeB :
>>
>> Hi,
>>
>> is it possible to draw an Image eather BMP/JPG in a GWVT console?
>> How?
>>
>
>
--
View this message in context:
http://n2.nabble.com/Howto-Draw-an-Image-bmp-jpg-in-GTWVT
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.
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
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 Harb
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
#include
#include
HB_FUNC( PLAYSOUND )
{
hb_retl( PlaySound( hb_parc(1), NULL,S
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 REMOTE
this code generates an error under wista64, never had under XP.
--
DBCREATE( MTEMPFILE,{;
{ "ITEMID", "C", 8, 0 }, ;
{ "ITEM", "C", 12, 0 }, ;
{ "VITEM", "C", 12, 0 }, ;
{ "CLASS", "C", 8, 0 }, ;
{"SUB", "C", 8, 0 }, ;
{
it can return a negative result as a valid handle under wince.
it will return -1 for an error
is that ok?
i used to check the result of fopen if it's < 0 and take it as an error.
--
View this message in context:
http://n2.nabble.com/fopen-in-WINCE-tp3981822p3981822.html
Sent from the harb
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 li
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.
__
Thanks, this fixed it in WinCE too. thanks.
druzus wrote:
>
> Revision: 12649
>
> http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12649&view=rev
> Author: druzus
> Date: 2009-10-05 15:29:34 + (Mon, 05 Oct 2009)
>
> Log Message:
> ---
> 2009-10-05 17
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 d
i observed the same results
1. the font size won't show bigger or smaller when resized, it will only
reserve more pixels for it's height.
2. it will not draw the letters in the center of the charecter cell.
3. non alpha characters don't show.
i'm afraid it's not actually using Tohama font which
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@harbour-p
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?
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
Sent
! 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 Studi
! 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 Studi
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
--
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=12382&view=rev
> Author: druzus
> Date: 2009-08-31 22:56:45
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
Thanks Viktor. very clear now.
Regards,
Abe
vszakats wrote:
>
> Revision: 12307
>
> http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12307&view=rev
> Author: vszakats
> Date: 2009-08-24 16:22:59 + (Mon, 24 Aug 2009)
>
> Log Message:
> ---
> 2009-08-24
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:
http://n2.na
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
woul
../../../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 at
comment it out and it will include
records 50-98 only.
ERASE("temp.cdx")
INDEX ON FLD1 TAG TEMP2 to temp.cdx WHILE FLD1 < 99 usecurrent
? ORDSETFOCUS()
? ""
ORDSETFOCUS( "TEMP" )
? ORDSETFOCUS()
GO TOP
? FLD1
GO BOTTOM
? FLD1
ORDSETFOCUS( "TEMP2" )
?
type:" ,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?
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
--
V
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 su
l now)
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"
>> P
sion of ADS can give 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.
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
>
&
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
gt; Brgds,
> Viktor
>
> On 2009.07.14., 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.
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.
_
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\te
//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, in
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 e
hi everyone,
is there a way to hide the mouse cursor with gtwin and full screen mode
mhide() dosn't do it for me.
thanks
abe
--
View this message in context:
http://n2.nabble.com/nomouse-with-gtwin-in-full-screen-tp3225852p3225852.html
Sent from the harbour-devel mailing list archive at Nab
2>&1'
>
> Brgds,
> Viktor
>
> On 2009.07.08., 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
Brgds,
> Viktor
>
> On 2009.07.07., 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:\WI
problem. I've never experienced such problem
> 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
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 the undefined
functions.
thanks
abe
Viktor Szakáts wrote:
>
>> interesting.
>>
er options
> to bcc linker using 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
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.nabble.com/hbmk%3A-Error%3A-Running-linker.-2-tp3220973p3220973.html
Sent from the harbou
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.
_
ample with a description
> of the problem?
>
> 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:
>
>>
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
>>
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.
__
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
DATAWIDTH, 0, NULL,
> 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?.
>>
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 Nabble.
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.
_
ith pscript.dll?
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.
>>
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 in context:
http://n2.nabble.com/contrib%5Chbwin%5Ctests%5Ctestdll-with-mingw-tp3049754p3049754.html
Sent from the harbour-devel mailing list ar
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:
http://n2.nabble.com/Bug-in-Get-system-tp2899254p2
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 Nabb
cal/harbourCE/lib/libhbmainwin.a(mainwin.o):mainwin.c:(.text+0x140):
undefined reference to `hb_winmainArgInit'
C:/msys/1.0/local/harbourCE/lib/libhbmainwin.a(mainwin.o):mainwin.c:(.text+0x14c):
undefined reference to `hb_cmdargInit'
C:/msys/1.0/local/harbourCE/lib/libhbmainwin.a(mainwi
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
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 maili
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 Ad
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",
1 - 100 of 167 matches
Mail list logo