debug question?
Archiver
Posts: 46,084
I have seen an issue where the windows based software will miss 1-2 bytes or
the first line of a debug statment after a code download. This might be that
the serail port takes time to "settle." The code below debugs enough that it
should rule that issue out. Again that is an issue with the Windows software
and not the stamp its self. Which version of the SW and OS are you running?
MH
Original Message
From: "Al Williams" <alw@a...>
To: <basicstamps@egroups.com>
Sent: Wednesday, October 04, 2000 2:26 PM
Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> What do you mean hang? It is supposed to Stop (all Stamp programs have an
> END at the -- um, well -- end).
>
> Try this:
>
> top:
> debug "Howdy World" ' I'm from texas --
> goto top
>
> or:
>
> top:
> debug "Howdy Stampers"
> pause 500
> goto top
>
> or:
> for b1=1 to 100
> debug dec b1,cr
> next
>
>
> I suspect everything is fine. Now, if your Windows software is hanging,
> that's another problem.
>
> Regards,
>
> Al Williams
> AWC
> *Floating point math for the Stamp, PIC, SX, or any microcontroller:
> http;//www.al-williams.com/awce/pak1.htm
>
>
>
> >
Original Message
> > From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=6L1lklxjY_klhmOZNiCpzA4L-wzTxJr0Q0DFtTWUXrLCJgtDEkLcD9ab4DTM28Gk12R5UrkgFVbUCGI]rden25@m...[/url
> > Sent: Wednesday, October 04, 2000 1:20 PM
> > To: Stampers!
> > Subject: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > Hello,
> >
> > I was using a debug command on a BS2-SX and
> > with a simple one line program
> >
> > debug "hello world"
> >
> > it would display the debug window and then hang
> >
> > Is this happening for you too. What am I missing here?
> >
> > the program is just this one line
> >
> >
> > Thanks
> >
> >
> >
>
>
>
>
the first line of a debug statment after a code download. This might be that
the serail port takes time to "settle." The code below debugs enough that it
should rule that issue out. Again that is an issue with the Windows software
and not the stamp its self. Which version of the SW and OS are you running?
MH
Original Message
From: "Al Williams" <alw@a...>
To: <basicstamps@egroups.com>
Sent: Wednesday, October 04, 2000 2:26 PM
Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> What do you mean hang? It is supposed to Stop (all Stamp programs have an
> END at the -- um, well -- end).
>
> Try this:
>
> top:
> debug "Howdy World" ' I'm from texas --
> goto top
>
> or:
>
> top:
> debug "Howdy Stampers"
> pause 500
> goto top
>
> or:
> for b1=1 to 100
> debug dec b1,cr
> next
>
>
> I suspect everything is fine. Now, if your Windows software is hanging,
> that's another problem.
>
> Regards,
>
> Al Williams
> AWC
> *Floating point math for the Stamp, PIC, SX, or any microcontroller:
> http;//www.al-williams.com/awce/pak1.htm
>
>
>
> >
Original Message
> > From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=6L1lklxjY_klhmOZNiCpzA4L-wzTxJr0Q0DFtTWUXrLCJgtDEkLcD9ab4DTM28Gk12R5UrkgFVbUCGI]rden25@m...[/url
> > Sent: Wednesday, October 04, 2000 1:20 PM
> > To: Stampers!
> > Subject: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > Hello,
> >
> > I was using a debug command on a BS2-SX and
> > with a simple one line program
> >
> > debug "hello world"
> >
> > it would display the debug window and then hang
> >
> > Is this happening for you too. What am I missing here?
> >
> > the program is just this one line
> >
> >
> > Thanks
> >
> >
> >
>
>
>
>
Comments
I was using a debug command on a BS2-SX and
with a simple one line program
debug "hello world"
it would display the debug window and then hang
Is this happening for you too. What am I missing here?
the program is just this one line
Thanks
END at the -- um, well -- end).
Try this:
top:
debug "Howdy World" ' I'm from texas --
goto top
or:
top:
debug "Howdy Stampers"
pause 500
goto top
or:
for b1=1 to 100
debug dec b1,cr
next
I suspect everything is fine. Now, if your Windows software is hanging,
that's another problem.
Regards,
Al Williams
AWC
*Floating point math for the Stamp, PIC, SX, or any microcontroller:
http;//www.al-williams.com/awce/pak1.htm
>
Original Message
> From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=1HBdn66YKNZk5_aiook8TvExyp0xXurYsQ0Bu1U70UGa9u7BoGIrDhPDDaNjpcQZbkxeDftQdsQy4HwxUg]rden25@m...[/url
> Sent: Wednesday, October 04, 2000 1:20 PM
> To: Stampers!
> Subject: [noparse][[/noparse]basicstamps] debug question?
>
>
> Hello,
>
> I was using a debug command on a BS2-SX and
> with a simple one line program
>
> debug "hello world"
>
> it would display the debug window and then hang
>
> Is this happening for you too. What am I missing here?
>
> the program is just this one line
>
>
> Thanks
>
>
>
if you run just this line
debug "hello"
the program will hang
if you try to pause the debug window or close it
you cannot. the only way to recover is to
ctrl alt del
I'm not using a loop or a next or an end or any thing else,
just that one line
even with an end statement it hangs
I just want to know why, if this is suposed to do this??
Thanks
Original Message
From: "Al Williams" <alw@a...>
To: <basicstamps@egroups.com>
Sent: Wednesday, October 04, 2000 1:26 PM
Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> What do you mean hang? It is supposed to Stop (all Stamp programs have an
> END at the -- um, well -- end).
>
> Try this:
>
> top:
> debug "Howdy World" ' I'm from texas --
> goto top
>
> or:
>
> top:
> debug "Howdy Stampers"
> pause 500
> goto top
>
> or:
> for b1=1 to 100
> debug dec b1,cr
> next
>
>
> I suspect everything is fine. Now, if your Windows software is hanging,
> that's another problem.
>
> Regards,
>
> Al Williams
> AWC
> *Floating point math for the Stamp, PIC, SX, or any microcontroller:
> http;//www.al-williams.com/awce/pak1.htm
>
>
>
> >
Original Message
> > From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=7pj7eh32Fdl8oSRWMyOy4qZwT6QfryN4uX1HF-ZSbLuNQSH1BBm6hnj-Q3puKglwsq9wtrGzdGNXPELpSA]rden25@m...[/url
> > Sent: Wednesday, October 04, 2000 1:20 PM
> > To: Stampers!
> > Subject: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > Hello,
> >
> > I was using a debug command on a BS2-SX and
> > with a simple one line program
> >
> > debug "hello world"
> >
> > it would display the debug window and then hang
> >
> > Is this happening for you too. What am I missing here?
> >
> > the program is just this one line
> >
> >
> > Thanks
> >
> >
> >
>
>
>
>
Original Message
From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=R_Sf98ac5aCVX-B3lzuDVfTRWdugpJ3JrpEB3RC9WHGGXXar10RuSchwgEHCZSfg-Xmp-cpG2P5Py3zwrYCoHQ]rden25@m...[/url
Sent: Wednesday, October 04, 2000 2:45 PM
To: basicstamps@egroups.com
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
well, I mean it hangs
if you run just this line
debug "hello"
the program will hang
if you try to pause the debug window or close it
you cannot. the only way to recover is to
ctrl alt del
I'm not using a loop or a next or an end or any thing else,
just that one line
even with an end statement it hangs
I just want to know why, if this is suposed to do this??
Thanks
Original Message
From: "Al Williams" <alw@a...>
To: <basicstamps@egroups.com>
Sent: Wednesday, October 04, 2000 1:26 PM
Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> What do you mean hang? It is supposed to Stop (all Stamp programs have an
> END at the -- um, well -- end).
>
> Try this:
>
> top:
> debug "Howdy World" ' I'm from texas --
> goto top
>
> or:
>
> top:
> debug "Howdy Stampers"
> pause 500
> goto top
>
> or:
> for b1=1 to 100
> debug dec b1,cr
> next
>
>
> I suspect everything is fine. Now, if your Windows software is hanging,
> that's another problem.
>
> Regards,
>
> Al Williams
> AWC
> *Floating point math for the Stamp, PIC, SX, or any microcontroller:
> http;//www.al-williams.com/awce/pak1.htm
>
>
>
> >
Original Message
> > From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=R_Sf98ac5aCVX-B3lzuDVfTRWdugpJ3JrpEB3RC9WHGGXXar10RuSchwgEHCZSfg-Xmp-cpG2P5Py3zwrYCoHQ]rden25@m...[/url
> > Sent: Wednesday, October 04, 2000 1:20 PM
> > To: Stampers!
> > Subject: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > Hello,
> >
> > I was using a debug command on a BS2-SX and
> > with a simple one line program
> >
> > debug "hello world"
> >
> > it would display the debug window and then hang
> >
> > Is this happening for you too. What am I missing here?
> >
> > the program is just this one line
> >
> >
> > Thanks
> >
> >
> >
>
>
>
>
I'm using a stamp BS2 SX and windows 2000, maybe it's
the windows 2k I guess
Original Message
From: "Rick*" <rheine@m...>
To: <basicstamps@egroups.com>
Sent: Wednesday, October 04, 2000 3:20 PM
Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> Mine doesn't hang on that code. Win95 BS2
>
>
Original Message
> From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=fG8pqnxtRUa4_e-Xi-Qavzae1UHfkM6WjWh8IBaOfJx087gy8Tqp3pdrXIWNQFZP3aUoFLsZAK6bX9CP]rden25@m...[/url
> Sent: Wednesday, October 04, 2000 2:45 PM
> To: basicstamps@egroups.com
> Subject: Re: [noparse][[/noparse]basicstamps] debug question?
>
>
> well, I mean it hangs
>
> if you run just this line
>
> debug "hello"
>
> the program will hang
>
> if you try to pause the debug window or close it
>
> you cannot. the only way to recover is to
> ctrl alt del
>
> I'm not using a loop or a next or an end or any thing else,
> just that one line
>
> even with an end statement it hangs
>
> I just want to know why, if this is suposed to do this??
>
> Thanks
>
>
Original Message
> From: "Al Williams" <alw@a...>
> To: <basicstamps@egroups.com>
> Sent: Wednesday, October 04, 2000 1:26 PM
> Subject: RE: [noparse][[/noparse]basicstamps] debug question?
>
>
> > What do you mean hang? It is supposed to Stop (all Stamp programs have
an
> > END at the -- um, well -- end).
> >
> > Try this:
> >
> > top:
> > debug "Howdy World" ' I'm from texas --
> > goto top
> >
> > or:
> >
> > top:
> > debug "Howdy Stampers"
> > pause 500
> > goto top
> >
> > or:
> > for b1=1 to 100
> > debug dec b1,cr
> > next
> >
> >
> > I suspect everything is fine. Now, if your Windows software is hanging,
> > that's another problem.
> >
> > Regards,
> >
> > Al Williams
> > AWC
> > *Floating point math for the Stamp, PIC, SX, or any microcontroller:
> > http;//www.al-williams.com/awce/pak1.htm
> >
> >
> >
> > >
Original Message
> > > From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=fG8pqnxtRUa4_e-Xi-Qavzae1UHfkM6WjWh8IBaOfJx087gy8Tqp3pdrXIWNQFZP3aUoFLsZAK6bX9CP]rden25@m...[/url
> > > Sent: Wednesday, October 04, 2000 1:20 PM
> > > To: Stampers!
> > > Subject: [noparse][[/noparse]basicstamps] debug question?
> > >
> > >
> > > Hello,
> > >
> > > I was using a debug command on a BS2-SX and
> > > with a simple one line program
> > >
> > > debug "hello world"
> > >
> > > it would display the debug window and then hang
> > >
> > > Is this happening for you too. What am I missing here?
> > >
> > > the program is just this one line
> > >
> > >
> > > Thanks
> > >
> > >
> > >
> >
> >
> >
> >
>
>
>
>
>
>
>
my older windows98 computer and as you all
know it works fine
debug "hello world"
But, on windows 2000, when you run this simple
line of code, the debug window will not close and
the mouse will not click on anything, the only way to
exit is to repeatedly click on the exit 'x' and when
the task manager responds saying the program
is not responding, would you like to exit?
respond yes
OK it must /may be windows 2000 thanks all
BTW are there any other know problems with
using windows 2000?? Is there a new version
ot the stamp editor available? I'm using 1.096
Thanks all...
Original Message
From: "rad0" <rden25@m...>
To: <basicstamps@egroups.com>
Sent: Wednesday, October 04, 2000 3:24 PM
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> OK, thanks
>
> I'm using a stamp BS2 SX and windows 2000, maybe it's
> the windows 2k I guess
>
>
>
>
Original Message
> From: "Rick*" <rheine@m...>
> To: <basicstamps@egroups.com>
> Sent: Wednesday, October 04, 2000 3:20 PM
> Subject: RE: [noparse][[/noparse]basicstamps] debug question?
>
>
> > Mine doesn't hang on that code. Win95 BS2
> >
> >
Original Message
> > From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=QT6sz4GP5dY3qxCWTZnyJUtMtP8pjwrCghUMOZHyp84or0FJwE49crDQMRLI__EODgPbUmt_q_2VAe-Dzx9z_w]rden25@m...[/url
> > Sent: Wednesday, October 04, 2000 2:45 PM
> > To: basicstamps@egroups.com
> > Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > well, I mean it hangs
> >
> > if you run just this line
> >
> > debug "hello"
> >
> > the program will hang
> >
> > if you try to pause the debug window or close it
> >
> > you cannot. the only way to recover is to
> > ctrl alt del
> >
> > I'm not using a loop or a next or an end or any thing else,
> > just that one line
> >
> > even with an end statement it hangs
> >
> > I just want to know why, if this is suposed to do this??
> >
> > Thanks
> >
> >
Original Message
> > From: "Al Williams" <alw@a...>
> > To: <basicstamps@egroups.com>
> > Sent: Wednesday, October 04, 2000 1:26 PM
> > Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > > What do you mean hang? It is supposed to Stop (all Stamp programs have
> an
> > > END at the -- um, well -- end).
> > >
> > > Try this:
> > >
> > > top:
> > > debug "Howdy World" ' I'm from texas --
> > > goto top
> > >
> > > or:
> > >
> > > top:
> > > debug "Howdy Stampers"
> > > pause 500
> > > goto top
> > >
> > > or:
> > > for b1=1 to 100
> > > debug dec b1,cr
> > > next
> > >
> > >
> > > I suspect everything is fine. Now, if your Windows software is
hanging,
> > > that's another problem.
> > >
> > > Regards,
> > >
> > > Al Williams
> > > AWC
> > > *Floating point math for the Stamp, PIC, SX, or any microcontroller:
> > > http;//www.al-williams.com/awce/pak1.htm
> > >
> > >
> > >
> > > >
Original Message
> > > > From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=QT6sz4GP5dY3qxCWTZnyJUtMtP8pjwrCghUMOZHyp84or0FJwE49crDQMRLI__EODgPbUmt_q_2VAe-Dzx9z_w]rden25@m...[/url
> > > > Sent: Wednesday, October 04, 2000 1:20 PM
> > > > To: Stampers!
> > > > Subject: [noparse][[/noparse]basicstamps] debug question?
> > > >
> > > >
> > > > Hello,
> > > >
> > > > I was using a debug command on a BS2-SX and
> > > > with a simple one line program
> > > >
> > > > debug "hello world"
> > > >
> > > > it would display the debug window and then hang
> > > >
> > > > Is this happening for you too. What am I missing here?
> > > >
> > > > the program is just this one line
> > > >
> > > >
> > > > Thanks
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> >
> >
> >
> >
> >
> >
> >
>
>
>
>
MH
Original Message
From: "rad0" <rden25@m...>
To: <basicstamps@egroups.com>
Sent: Wednesday, October 04, 2000 4:24 PM
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> OK, thanks
>
> I'm using a stamp BS2 SX and windows 2000, maybe it's
> the windows 2k I guess
>
>
>
>
Original Message
> From: "Rick*" <rheine@m...>
> To: <basicstamps@egroups.com>
> Sent: Wednesday, October 04, 2000 3:20 PM
> Subject: RE: [noparse][[/noparse]basicstamps] debug question?
>
>
> > Mine doesn't hang on that code. Win95 BS2
> >
> >
Original Message
> > From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=wDhyJVlzEurYTQa_Uj8G-p4RddW2cnphOtwO3XMrRTrxA6-tj_m9aWWFyczqMWyXCz822JbQHIiJo62JIGedNg]rden25@m...[/url
> > Sent: Wednesday, October 04, 2000 2:45 PM
> > To: basicstamps@egroups.com
> > Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > well, I mean it hangs
> >
> > if you run just this line
> >
> > debug "hello"
> >
> > the program will hang
> >
> > if you try to pause the debug window or close it
> >
> > you cannot. the only way to recover is to
> > ctrl alt del
> >
> > I'm not using a loop or a next or an end or any thing else,
> > just that one line
> >
> > even with an end statement it hangs
> >
> > I just want to know why, if this is suposed to do this??
> >
> > Thanks
> >
> >
Original Message
> > From: "Al Williams" <alw@a...>
> > To: <basicstamps@egroups.com>
> > Sent: Wednesday, October 04, 2000 1:26 PM
> > Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > > What do you mean hang? It is supposed to Stop (all Stamp programs have
> an
> > > END at the -- um, well -- end).
> > >
> > > Try this:
> > >
> > > top:
> > > debug "Howdy World" ' I'm from texas --
> > > goto top
> > >
> > > or:
> > >
> > > top:
> > > debug "Howdy Stampers"
> > > pause 500
> > > goto top
> > >
> > > or:
> > > for b1=1 to 100
> > > debug dec b1,cr
> > > next
> > >
> > >
> > > I suspect everything is fine. Now, if your Windows software is
hanging,
> > > that's another problem.
> > >
> > > Regards,
> > >
> > > Al Williams
> > > AWC
> > > *Floating point math for the Stamp, PIC, SX, or any microcontroller:
> > > http;//www.al-williams.com/awce/pak1.htm
> > >
> > >
> > >
> > > >
Original Message
> > > > From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=wDhyJVlzEurYTQa_Uj8G-p4RddW2cnphOtwO3XMrRTrxA6-tj_m9aWWFyczqMWyXCz822JbQHIiJo62JIGedNg]rden25@m...[/url
> > > > Sent: Wednesday, October 04, 2000 1:20 PM
> > > > To: Stampers!
> > > > Subject: [noparse][[/noparse]basicstamps] debug question?
> > > >
> > > >
> > > > Hello,
> > > >
> > > > I was using a debug command on a BS2-SX and
> > > > with a simple one line program
> > > >
> > > > debug "hello world"
> > > >
> > > > it would display the debug window and then hang
> > > >
> > > > Is this happening for you too. What am I missing here?
> > > >
> > > > the program is just this one line
> > > >
> > > >
> > > > Thanks
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> >
> >
> >
> >
> >
> >
> >
>
>
>
>
No. It was an "out of the box" Interesting thing I did find was pushing the "reset" button on the carrier board would unfreeze the download/debug dialog box... Quite interesting. I believe it is bad interaction with the comm drivers...
MH
Original Message
From: nags
To: 'basicstamps@egroups.com'
Sent: Wednesday, October 04, 2000 6:35 PM
Subject: RE: [noparse][[/noparse]basicstamps] debug question?
Mike,
Did you install the service pack from Ms's web site ?
Original Message
From: Michael Hendricks [noparse]/noparse][url=mailto:mjh80@bigfoot.com]mailto:mjh80@bigfoot.com[/url
Sent: Wednesday, October 04, 2000 5:11 PM
To: basicstamps@egroups.com
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
Win2k has lotsa problems. I boot to 95 when I work on Stamp applications...
MH
Original Message
From: "rad0" <rden25@mindspring.com>
To: <basicstamps@egroups.com>
Sent: Wednesday, October 04, 2000 4:24 PM
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> OK, thanks
>
> I'm using a stamp BS2 SX and windows 2000, maybe it's
> the windows 2k I guess
>
>
>
>
Original Message
> From: "Rick*" <rheine@mindspring.com>
> To: <basicstamps@egroups.com>
> Sent: Wednesday, October 04, 2000 3:20 PM
> Subject: RE: [noparse][[/noparse]basicstamps] debug question?
>
>
> > Mine doesn't hang on that code. Win95 BS2
> >
> >
Original Message
> > From: rad0 [noparse]/noparse][url=mailto:rden25@mindspring.com]mailto:rden25@mindspring.com[/url
> > Sent: Wednesday, October 04, 2000 2:45 PM
> > To: basicstamps@egroups.com
> > Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > well, I mean it hangs
> >
> > if you run just this line
> >
> > debug "hello"
> >
> > the program will hang
> >
> > if you try to pause the debug window or close it
> >
> > you cannot.· the only way to recover is to
> > ctrl alt del
> >
> > I'm not using a loop or a next or an end or any thing else,
> > just that one line
> >
> > even with an end statement it hangs
> >
> > I just want to know why, if this is suposed to do this??
> >
> > Thanks
> >
> >
Original Message
> > From: "Al Williams" <alw@al-williams.com>
> > To: <basicstamps@egroups.com>
> > Sent: Wednesday, October 04, 2000 1:26 PM
> > Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > > What do you mean hang? It is supposed to Stop (all Stamp programs have
> an
> > > END at the -- um, well -- end).
> > >
> > > Try this:
> > >
> > > top:
> > >··· debug "Howdy World"·· ' I'm from texas --
> > >··· goto top
> > >
> > > or:
> > >
> > > top:
> > >·· debug "Howdy Stampers"
> > >·· pause 500
> > >·· goto top
> > >
> > > or:
> > >·· for b1=1 to 100
> > >·· debug dec b1,cr
> > >·· next
> > >
> > >
> > > I suspect everything is fine. Now, if your Windows software is
hanging,
> > > that's another problem.
> > >
> > > Regards,
> > >
> > > Al Williams
> > > AWC
> > > *Floating point math for the Stamp, PIC, SX, or any microcontroller:
> > > http;//www.al-williams.com/awce/pak1.htm
> > >
> > >
> > >
> > > >
Original Message
> > > > From: rad0 [noparse]/noparse][url=mailto:rden25@mindspring.com]mailto:rden25@mindspring.com[/url
> > > > Sent: Wednesday, October 04, 2000 1:20 PM
> > > > To: Stampers!
> > > > Subject: [noparse][[/noparse]basicstamps] debug question?
> > > >
> > > >
> > > > Hello,
> > > >
> > > > I was using a debug command on· a BS2-SX and
> > > > with a simple one line program
> > > >
> > > > debug "hello world"
> > > >
> > > > it would display the debug window and then hang
> > > >
> > > > Is this happening for you too.· What am I missing here?
> > > >
> > > > the program is just this one line
> > > >
> > > >
> > > > Thanks
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> >
> >
> >
> >
> >
> >
> >
>
>
>
>
Thanks for the fix...
MH
Original Message
From: nags
To: 'basicstamps@egroups.com'
Sent: Wednesday, October 04, 2000 6:42 PM
Subject: RE: [noparse][[/noparse]basicstamps] debug question?
I have the same problem. When it freezes, I simply press the reset button and the upload resumes. But, sometimes, this does not work either. I then end up killing the app and restarting it. This is a service pack related issue and will solve it when installed.
http://msdn.microsoft.com/windows2000
has the sp_
Original Message
From: Michael Hendricks [noparse][[/noparse]mailto:mjh80@bigfoot.com]
Sent: Wednesday, October 04, 2000 5:16 PM
To: basicstamps@egroups.com
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
No. It was an "out of the box" Interesting thing I did find was pushing the "reset" button on the carrier board would unfreeze the download/debug dialog box... Quite interesting. I believe it is bad interaction with the comm drivers...
MH
Original Message
From: nags
To: 'basicstamps@egroups.com'
Sent: Wednesday, October 04, 2000 6:35 PM
Subject: RE: [noparse][[/noparse]basicstamps] debug question?
Mike,
Did you install the service pack from Ms's web site ?
Original Message
From: Michael Hendricks [noparse]/noparse][url=mailto:mjh80@bigfoot.com]mailto:mjh80@bigfoot.com[/url
Sent: Wednesday, October 04, 2000 5:11 PM
To: basicstamps@egroups.com
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
Win2k has lotsa problems. I boot to 95 when I work on Stamp applications...
MH
Original Message
From: "rad0" <rden25@mindspring.com>
To: <basicstamps@egroups.com>
Sent: Wednesday, October 04, 2000 4:24 PM
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> OK, thanks
>
> I'm using a stamp BS2 SX and windows 2000, maybe it's
> the windows 2k I guess
>
>
>
>
Original Message
> From: "Rick*" <rheine@mindspring.com>
> To: <basicstamps@egroups.com>
> Sent: Wednesday, October 04, 2000 3:20 PM
> Subject: RE: [noparse][[/noparse]basicstamps] debug question?
>
>
> > Mine doesn't hang on that code. Win95 BS2
> >
> >
Original Message
> > From: rad0 [noparse]/noparse][url=mailto:rden25@mindspring.com]mailto:rden25@mindspring.com[/url
> > Sent: Wednesday, October 04, 2000 2:45 PM
> > To: basicstamps@egroups.com
> > Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > well, I mean it hangs
> >
> > if you run just this line
> >
> > debug "hello"
> >
> > the program will hang
> >
> > if you try to pause the debug window or close it
> >
> > you cannot.· the only way to recover is to
> > ctrl alt del
> >
> > I'm not using a loop or a next or an end or any thing else,
> > just that one line
> >
> > even with an end statement it hangs
> >
> > I just want to know why, if this is suposed to do this??
> >
> > Thanks
> >
> >
Original Message
> > From: "Al Williams" <alw@al-williams.com>
> > To: <basicstamps@egroups.com>
> > Sent: Wednesday, October 04, 2000 1:26 PM
> > Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > > What do you mean hang? It is supposed to Stop (all Stamp programs have
> an
> > > END at the -- um, well -- end).
> > >
> > > Try this:
> > >
> > > top:
> > >··· debug "Howdy World"·· ' I'm from texas --
> > >··· goto top
> > >
> > > or:
> > >
> > > top:
> > >·· debug "Howdy Stampers"
> > >·· pause 500
> > >·· goto top
> > >
> > > or:
> > >·· for b1=1 to 100
> > >·· debug dec b1,cr
> > >·· next
> > >
> > >
> > > I suspect everything is fine. Now, if your Windows software is
hanging,
> > > that's another problem.
> > >
> > > Regards,
> > >
> > > Al Williams
> > > AWC
> > > *Floating point math for the Stamp, PIC, SX, or any microcontroller:
> > > http;//www.al-williams.com/awce/pak1.htm
> > >
> > >
> > >
> > > >
Original Message
> > > > From: rad0 [noparse]/noparse][url=mailto:rden25@mindspring.com]mailto:rden25@mindspring.com[/url
> > > > Sent: Wednesday, October 04, 2000 1:20 PM
> > > > To: Stampers!
> > > > Subject: [noparse][[/noparse]basicstamps] debug question?
> > > >
> > > >
> > > > Hello,
> > > >
> > > > I was using a debug command on· a BS2-SX and
> > > > with a simple one line program
> > > >
> > > > debug "hello world"
> > > >
> > > > it would display the debug window and then hang
> > > >
> > > > Is this happening for you too.· What am I missing here?
> > > >
> > > > the program is just this one line
> > > >
> > > >
> > > > Thanks
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> >
> >
> >
> >
> >
> >
> >
>
>
>
>
Mike,
Did you install the service pack from Ms's web site ?
Original Message
From: Michael Hendricks [noparse]/noparse][url=mailto:mjh80@bigfoot.com]mailto:mjh80@bigfoot.com[/url
Sent: Wednesday, October 04, 2000 5:11 PM
To: basicstamps@egroups.com
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
Win2k has lotsa problems. I boot to 95 when I work on Stamp applications...
MH
Original Message
From: "rad0" <rden25@mindspring.com>
To: <basicstamps@egroups.com>
Sent: Wednesday, October 04, 2000 4:24 PM
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> OK, thanks
>
> I'm using a stamp BS2 SX and windows 2000, maybe it's
> the windows 2k I guess
>
>
>
>
Original Message
> From: "Rick*" <rheine@mindspring.com>
> To: <basicstamps@egroups.com>
> Sent: Wednesday, October 04, 2000 3:20 PM
> Subject: RE: [noparse][[/noparse]basicstamps] debug question?
>
>
> > Mine doesn't hang on that code. Win95 BS2
> >
> >
Original Message
> > From: rad0 [noparse]/noparse][url=mailto:rden25@mindspring.com]mailto:rden25@mindspring.com[/url
> > Sent: Wednesday, October 04, 2000 2:45 PM
> > To: basicstamps@egroups.com
> > Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > well, I mean it hangs
> >
> > if you run just this line
> >
> > debug "hello"
> >
> > the program will hang
> >
> > if you try to pause the debug window or close it
> >
> > you cannot.· the only way to recover is to
> > ctrl alt del
> >
> > I'm not using a loop or a next or an end or any thing else,
> > just that one line
> >
> > even with an end statement it hangs
> >
> > I just want to know why, if this is suposed to do this??
> >
> > Thanks
> >
> >
Original Message
> > From: "Al Williams" <alw@al-williams.com>
> > To: <basicstamps@egroups.com>
> > Sent: Wednesday, October 04, 2000 1:26 PM
> > Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > > What do you mean hang? It is supposed to Stop (all Stamp programs have
> an
> > > END at the -- um, well -- end).
> > >
> > > Try this:
> > >
> > > top:
> > >··· debug "Howdy World"·· ' I'm from texas --
> > >··· goto top
> > >
> > > or:
> > >
> > > top:
> > >·· debug "Howdy Stampers"
> > >·· pause 500
> > >·· goto top
> > >
> > > or:
> > >·· for b1=1 to 100
> > >·· debug dec b1,cr
> > >·· next
> > >
> > >
> > > I suspect everything is fine. Now, if your Windows software is
hanging,
> > > that's another problem.
> > >
> > > Regards,
> > >
> > > Al Williams
> > > AWC
> > > *Floating point math for the Stamp, PIC, SX, or any microcontroller:
> > > http;//www.al-williams.com/awce/pak1.htm
> > >
> > >
> > >
> > > >
Original Message
> > > > From: rad0 [noparse]/noparse][url=mailto:rden25@mindspring.com]mailto:rden25@mindspring.com[/url
> > > > Sent: Wednesday, October 04, 2000 1:20 PM
> > > > To: Stampers!
> > > > Subject: [noparse][[/noparse]basicstamps] debug question?
> > > >
> > > >
> > > > Hello,
> > > >
> > > > I was using a debug command on· a BS2-SX and
> > > > with a simple one line program
> > > >
> > > > debug "hello world"
> > > >
> > > > it would display the debug window and then hang
> > > >
> > > > Is this happening for you too.· What am I missing here?
> > > >
> > > > the program is just this one line
> > > >
> > > >
> > > > Thanks
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> >
> >
> >
> >
> >
> >
> >
>
>
>
>
I have the same problem. When it freezes, I simply press the reset button and the upload resumes. But, sometimes, this does not work either. I then end up killing the app and restarting it. This is a service pack related issue and will solve it when installed.
http://msdn.microsoft.com/windows2000
has the sp_
Original Message
From: Michael Hendricks [noparse][[/noparse]mailto:mjh80@bigfoot.com]
Sent: Wednesday, October 04, 2000 5:16 PM
To: basicstamps@egroups.com
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
No. It was an "out of the box" Interesting thing I did find was pushing the "reset" button on the carrier board would unfreeze the download/debug dialog box... Quite interesting. I believe it is bad interaction with the comm drivers...
MH
Original Message
From: nags
To: 'basicstamps@egroups.com'
Sent: Wednesday, October 04, 2000 6:35 PM
Subject: RE: [noparse][[/noparse]basicstamps] debug question?
Mike,
Did you install the service pack from Ms's web site ?
Original Message
From: Michael Hendricks [noparse]/noparse][url=mailto:mjh80@bigfoot.com]mailto:mjh80@bigfoot.com[/url
Sent: Wednesday, October 04, 2000 5:11 PM
To: basicstamps@egroups.com
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
Win2k has lotsa problems. I boot to 95 when I work on Stamp applications...
MH
Original Message
From: "rad0" <rden25@mindspring.com>
To: <basicstamps@egroups.com>
Sent: Wednesday, October 04, 2000 4:24 PM
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> OK, thanks
>
> I'm using a stamp BS2 SX and windows 2000, maybe it's
> the windows 2k I guess
>
>
>
>
Original Message
> From: "Rick*" <rheine@mindspring.com>
> To: <basicstamps@egroups.com>
> Sent: Wednesday, October 04, 2000 3:20 PM
> Subject: RE: [noparse][[/noparse]basicstamps] debug question?
>
>
> > Mine doesn't hang on that code. Win95 BS2
> >
> >
Original Message
> > From: rad0 [noparse]/noparse][url=mailto:rden25@mindspring.com]mailto:rden25@mindspring.com[/url
> > Sent: Wednesday, October 04, 2000 2:45 PM
> > To: basicstamps@egroups.com
> > Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > well, I mean it hangs
> >
> > if you run just this line
> >
> > debug "hello"
> >
> > the program will hang
> >
> > if you try to pause the debug window or close it
> >
> > you cannot.· the only way to recover is to
> > ctrl alt del
> >
> > I'm not using a loop or a next or an end or any thing else,
> > just that one line
> >
> > even with an end statement it hangs
> >
> > I just want to know why, if this is suposed to do this??
> >
> > Thanks
> >
> >
Original Message
> > From: "Al Williams" <alw@al-williams.com>
> > To: <basicstamps@egroups.com>
> > Sent: Wednesday, October 04, 2000 1:26 PM
> > Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > > What do you mean hang? It is supposed to Stop (all Stamp programs have
> an
> > > END at the -- um, well -- end).
> > >
> > > Try this:
> > >
> > > top:
> > >··· debug "Howdy World"·· ' I'm from texas --
> > >··· goto top
> > >
> > > or:
> > >
> > > top:
> > >·· debug "Howdy Stampers"
> > >·· pause 500
> > >·· goto top
> > >
> > > or:
> > >·· for b1=1 to 100
> > >·· debug dec b1,cr
> > >·· next
> > >
> > >
> > > I suspect everything is fine. Now, if your Windows software is
hanging,
> > > that's another problem.
> > >
> > > Regards,
> > >
> > > Al Williams
> > > AWC
> > > *Floating point math for the Stamp, PIC, SX, or any microcontroller:
> > > http;//www.al-williams.com/awce/pak1.htm
> > >
> > >
> > >
> > > >
Original Message
> > > > From: rad0 [noparse]/noparse][url=mailto:rden25@mindspring.com]mailto:rden25@mindspring.com[/url
> > > > Sent: Wednesday, October 04, 2000 1:20 PM
> > > > To: Stampers!
> > > > Subject: [noparse][[/noparse]basicstamps] debug question?
> > > >
> > > >
> > > > Hello,
> > > >
> > > > I was using a debug command on· a BS2-SX and
> > > > with a simple one line program
> > > >
> > > > debug "hello world"
> > > >
> > > > it would display the debug window and then hang
> > > >
> > > > Is this happening for you too.· What am I missing here?
> > > >
> > > > the program is just this one line
> > > >
> > > >
> > > > Thanks
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> >
> >
> >
> >
> >
> >
> >
>
>
>
>
Thanks for the response,
but, I still have the problem when I
use the debug window, it seems alright
otherwise.
I've installed sp 1, is this exactly what you were
talking about and did it fix all problems
for you??
Thanks
Rick
Original Message
From: Michael Hendricks
To: basicstamps@egroups.com
Sent: Wednesday, October 04, 2000 5:22 PM
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
Thanks for the fix...
MH
Original Message
From: nags
To: 'basicstamps@egroups.com'
Sent: Wednesday, October 04, 2000 6:42 PM
Subject: RE: [noparse][[/noparse]basicstamps] debug question?
I have the same problem. When it freezes, I simply press the reset button and the upload resumes. But, sometimes, this does not work either. I then end up killing the app and restarting it. This is a service pack related issue and will solve it when installed.
http://msdn.microsoft.com/windows2000
has the sp_
Original Message
From: Michael Hendricks [noparse][[/noparse]mailto:mjh80@bigfoot.com]
Sent: Wednesday, October 04, 2000 5:16 PM
To: basicstamps@egroups.com
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
No. It was an "out of the box" Interesting thing I did find was pushing the "reset" button on the carrier board would unfreeze the download/debug dialog box... Quite interesting. I believe it is bad interaction with the comm drivers...
MH
Original Message
From: nags
To: 'basicstamps@egroups.com'
Sent: Wednesday, October 04, 2000 6:35 PM
Subject: RE: [noparse][[/noparse]basicstamps] debug question?
Mike,
Did you install the service pack from Ms's web site ?
Original Message
From: Michael Hendricks [noparse]/noparse][url=mailto:mjh80@bigfoot.com]mailto:mjh80@bigfoot.com[/url
Sent: Wednesday, October 04, 2000 5:11 PM
To: basicstamps@egroups.com
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
Win2k has lotsa problems. I boot to 95 when I work on Stamp applications...
MH
Original Message
From: "rad0" <rden25@mindspring.com>
To: <basicstamps@egroups.com>
Sent: Wednesday, October 04, 2000 4:24 PM
Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> OK, thanks
>
> I'm using a stamp BS2 SX and windows 2000, maybe it's
> the windows 2k I guess
>
>
>
>
Original Message
> From: "Rick*" <rheine@mindspring.com>
> To: <basicstamps@egroups.com>
> Sent: Wednesday, October 04, 2000 3:20 PM
> Subject: RE: [noparse][[/noparse]basicstamps] debug question?
>
>
> > Mine doesn't hang on that code. Win95 BS2
> >
> >
Original Message
> > From: rad0 [noparse]/noparse][url=mailto:rden25@mindspring.com]mailto:rden25@mindspring.com[/url
> > Sent: Wednesday, October 04, 2000 2:45 PM
> > To: basicstamps@egroups.com
> > Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > well, I mean it hangs
> >
> > if you run just this line
> >
> > debug "hello"
> >
> > the program will hang
> >
> > if you try to pause the debug window or close it
> >
> > you cannot.· the only way to recover is to
> > ctrl alt del
> >
> > I'm not using a loop or a next or an end or any thing else,
> > just that one line
> >
> > even with an end statement it hangs
> >
> > I just want to know why, if this is suposed to do this??
> >
> > Thanks
> >
> >
Original Message
> > From: "Al Williams" <alw@al-williams.com>
> > To: <basicstamps@egroups.com>
> > Sent: Wednesday, October 04, 2000 1:26 PM
> > Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > > What do you mean hang? It is supposed to Stop (all Stamp programs have
> an
> > > END at the -- um, well -- end).
> > >
> > > Try this:
> > >
> > > top:
> > >··· debug "Howdy World"·· ' I'm from texas --
> > >··· goto top
> > >
> > > or:
> > >
> > > top:
> > >·· debug "Howdy Stampers"
> > >·· pause 500
> > >·· goto top
> > >
> > > or:
> > >·· for b1=1 to 100
> > >·· debug dec b1,cr
> > >·· next
> > >
> > >
> > > I suspect everything is fine. Now, if your Windows software is
hanging,
> > > that's another problem.
> > >
> > > Regards,
> > >
> > > Al Williams
> > > AWC
> > > *Floating point math for the Stamp, PIC, SX, or any microcontroller:
> > > http;//www.al-williams.com/awce/pak1.htm
> > >
> > >
> > >
> > > >
Original Message
> > > > From: rad0 [noparse]/noparse][url=mailto:rden25@mindspring.com]mailto:rden25@mindspring.com[/url
> > > > Sent: Wednesday, October 04, 2000 1:20 PM
> > > > To: Stampers!
> > > > Subject: [noparse][[/noparse]basicstamps] debug question?
> > > >
> > > >
> > > > Hello,
> > > >
> > > > I was using a debug command on· a BS2-SX and
> > > > with a simple one line program
> > > >
> > > > debug "hello world"
> > > >
> > > > it would display the debug window and then hang
> > > >
> > > > Is this happening for you too.· What am I missing here?
> > > >
> > > > the program is just this one line
> > > >
> > > >
> > > > Thanks
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> >
> >
> >
> >
> >
> >
> >
>
>
>
>
On Wed, 4 Oct 2000, Michael Hendricks wrote:
> Win2k has lotsa problems. I boot to 95 when I work on Stamp applications...
Too bad there isn't a Linux version :-( Or is there and I just
haven't found it, yet??? :-)
--- Jay
>
Original Message
> From: "rad0" <rden25@m...>
> To: <basicstamps@egroups.com>
> Sent: Wednesday, October 04, 2000 4:24 PM
> Subject: Re: [noparse][[/noparse]basicstamps] debug question?
>
>
> > OK, thanks
> >
> > I'm using a stamp BS2 SX and windows 2000, maybe it's
> > the windows 2k I guess
> >
> >
> >
> >
Original Message
> > From: "Rick*" <rheine@m...>
> > To: <basicstamps@egroups.com>
> > Sent: Wednesday, October 04, 2000 3:20 PM
> > Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> >
> >
> > > Mine doesn't hang on that code. Win95 BS2
> > >
> > >
Original Message
> > > From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=SgIFdZn8F_ZTn3f4LuXov-TLLqP93FvCc_vcyzVbrsemrEqXDHuvRwO_Wo8Gq52HaWMtys5yLeJjs8Qq4AejKw]rden25@m...[/url
> > > Sent: Wednesday, October 04, 2000 2:45 PM
> > > To: basicstamps@egroups.com
> > > Subject: Re: [noparse][[/noparse]basicstamps] debug question?
> > >
> > >
> > > well, I mean it hangs
> > >
> > > if you run just this line
> > >
> > > debug "hello"
> > >
> > > the program will hang
> > >
> > > if you try to pause the debug window or close it
> > >
> > > you cannot. the only way to recover is to
> > > ctrl alt del
> > >
> > > I'm not using a loop or a next or an end or any thing else,
> > > just that one line
> > >
> > > even with an end statement it hangs
> > >
> > > I just want to know why, if this is suposed to do this??
> > >
> > > Thanks
> > >
> > >
Original Message
> > > From: "Al Williams" <alw@a...>
> > > To: <basicstamps@egroups.com>
> > > Sent: Wednesday, October 04, 2000 1:26 PM
> > > Subject: RE: [noparse][[/noparse]basicstamps] debug question?
> > >
> > >
> > > > What do you mean hang? It is supposed to Stop (all Stamp programs have
> > an
> > > > END at the -- um, well -- end).
> > > >
> > > > Try this:
> > > >
> > > > top:
> > > > debug "Howdy World" ' I'm from texas --
> > > > goto top
> > > >
> > > > or:
> > > >
> > > > top:
> > > > debug "Howdy Stampers"
> > > > pause 500
> > > > goto top
> > > >
> > > > or:
> > > > for b1=1 to 100
> > > > debug dec b1,cr
> > > > next
> > > >
> > > >
> > > > I suspect everything is fine. Now, if your Windows software is
> hanging,
> > > > that's another problem.
> > > >
> > > > Regards,
> > > >
> > > > Al Williams
> > > > AWC
> > > > *Floating point math for the Stamp, PIC, SX, or any microcontroller:
> > > > http;//www.al-williams.com/awce/pak1.htm
> > > >
> > > >
> > > >
> > > > >
Original Message
> > > > > From: rad0 [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=SgIFdZn8F_ZTn3f4LuXov-TLLqP93FvCc_vcyzVbrsemrEqXDHuvRwO_Wo8Gq52HaWMtys5yLeJjs8Qq4AejKw]rden25@m...[/url
> > > > > Sent: Wednesday, October 04, 2000 1:20 PM
> > > > > To: Stampers!
> > > > > Subject: [noparse][[/noparse]basicstamps] debug question?
> > > > >
> > > > >
> > > > > Hello,
> > > > >
> > > > > I was using a debug command on a BS2-SX and
> > > > > with a simple one line program
> > > > >
> > > > > debug "hello world"
> > > > >
> > > > > it would display the debug window and then hang
> > > > >
> > > > > Is this happening for you too. What am I missing here?
> > > > >
> > > > > the program is just this one line
> > > > >
> > > > >
> > > > > Thanks
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> >
> >
> >
> >
>
>
>
>
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/~~\
| Jay Nugent jjn@n... |____|
| Nugent Telecommunications www.nuge.com |
| Web-Pegasus www.webpegasus.com |
| ISP Monitoring www.ispmonitor.net |
| LinuxNIC, Inc. www.linuxnic.net |
| (734)971-1076 (734)971-4529 /Fax |
| (734)649-0850/cell |
| |
| ISP & Modem Performance Monitoring Svcs. |
| Discount Reseller of 123.Net ISP Services|
| Internet Consulting / Linux SysAdmin |
| Web Hosting / DNS Hosting / Shell Accts. |
| Embedded Controllers / Engr. & Design |
| Registrar of the .linux TLD |
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/ |
\_________________________________________\__/
7:00pm up 147 days, 1:20, 6 users, load average: 0.01, 0.06, 0.08
> Date: Wed, 4 Oct 2000 19:23:29 -0400 (EDT)
> From: Jay Nugent <jjn@n...>
> Reply-To: basicstamps@egroups.com
> To: basicstamps@egroups.com
> Subject: Re: [noparse][[/noparse]basicstamps] debug question?
>
> Greetings,
>
> On Wed, 4 Oct 2000, Michael Hendricks wrote:
>
> > Win2k has lotsa problems. I boot to 95 when I work on Stamp applications...
>
> Too bad there isn't a Linux version :-( Or is there and I just
> haven't found it, yet??? :-)
>
> --- Jay
>
If anybody writes or finds a Linux version be sure to post a note here,
because I want one.!! :-)
--
Jerry A. Covington
jerry@p...