Hi Dan, ... <SNIP> That's what I ended up doing, and... ... I do this too, and also declare it Public. This is the most flexible method I found after...
7154
John Ely
JohnEly@...
Sep 1, 2001 4:23 pm
Using Hyperterminal was the next thing I tried. It would only store about half an hour's worth of data before it over wrote the screen. The next step was to...
7155
Neil Jepsen
jepsen@...
Sep 1, 2001 8:59 pm
Hi Dan I often use the F4 key if I'm working on the laptop and odn't have a processor hooked up. Because we don't have clever debugging tools, the method I use...
7156
Dan Bielecki
Dan.Bielecki@...
Sep 2, 2001 5:23 am
Are there any plans to increase the maxium baud rate for Com3 ? .db. [Non-text portions of this message have been removed]...
7157
Dan Bielecki
Dan.Bielecki@...
Sep 2, 2001 1:37 pm
Im wondering if this bug will be fixed in version 2.0: Editor module. Set the Window color to BLACK. Set the Text color to any other color. Compile a source...
7158
Frank Manning
fmanning@...
Sep 2, 2001 5:31 pm
From: "Dan Bielecki" <Dan.Bielecki@...> ... Well, since you can't change colors in V2.0, I suppose the answer is yes. Plans are to restore colors, so we'll...
7159
Dan Bielecki
Dan.Bielecki@...
Sep 3, 2001 2:35 am
Frank, You crack me up!!!!.....I guess that counts as a bug fix, eh?!! I did read that the colors were not in 2.0, but also that you all may be putting the...
7160
James R. Parish
wiz@...
Sep 3, 2001 12:43 pm
I'm trying to squeeze code so I thought I would see if anyone can save me some space. I need to flip a BOOLEAN VAR this is how I'm doing it now. DIM DEBUG1 as...
7161
Justin
justin@...
Sep 3, 2001 1:20 pm
I don't have a BasicX chip to play with yet but if it supports standard VB, you could try this one-liner; Call LCD(Chr(254) & Chr(212) & "DEBUG" & IIf(DEBUG1 =...
7162
Dan Bielecki
Dan.Bielecki@...
Sep 3, 2001 1:23 pm
Dim DEBUG1 as Boolean Select Case Debug1 Case False Call LCD(Chr(254) & Chr(212) & "DEBUG OFF") Debug1 = True Case Else Call LCD(Chr(254) & Chr(212) & "DEBUG...
7163
Justin
justin@...
Sep 3, 2001 1:24 pm
Oops - forgot to toggle the DEBUG1 value - here's the code again... Call LCD(Chr(254) & Chr(212) & "DEBUG" & IIf(DEBUG1 = True, " ON", " OFF")) DEBUG1 =...
7164
Dan Bielecki
Dan.Bielecki@...
Sep 3, 2001 1:26 pm
Both IFs will still be executed. Select Case only process one case group and moves on.... ... From: Justin [mailto:justin@...] Sent: Monday,...
7165
Dan Bielecki
Dan.Bielecki@...
Sep 3, 2001 1:31 pm
Another form of Select Case.... Dim DEBUG1 as Boolean Dim TextWords as String * 9 Select Case Debug1 Case False TextWords = "Debug Off" Debug1 = True Case Else...
7166
Justin
justin@...
Sep 3, 2001 1:34 pm
I don't quite see what you mean. The only IF is the IIF, this one line replaces the need for the rest of the code. With the exception of toggling the variable...
7167
Dan Bielecki
Dan.Bielecki@...
Sep 3, 2001 1:36 pm
IIF is not support as far as I know...only IF/Then/Else/EndIF Wasn't in the manual last I checked.... .db. ... From: Justin [mailto:justin@...] ...
7168
Justin
justin@...
Sep 3, 2001 1:40 pm
Fair enough - like I said - I haven't got a BX processor yet but I was under the impression it supported almost standard VB. I'll get me coat ! Justin. ... ...
7169
Dan Bielecki
Dan.Bielecki@...
Sep 3, 2001 1:45 pm
VB-like....not VB. Think original Basic....but with some of the VB bells and whistles!. ... From: Justin [mailto:justin@...] Sent: Monday,...
7170
Dan Bielecki
Dan.Bielecki@...
Sep 3, 2001 1:49 pm
Oops....Had em backwards.... Dim DEBUG1 as Boolean Dim TextWords as String * 9 Select Case Debug1 Case False TextWords = "Debug On" Debug1 = True Case Else ...
7171
yahoo@...
Sep 3, 2001 3:06 pm
... eye.... ... Dan, just for you I'll recallibrate my comment: I'm using the fastest Basic compiler available for the PC. I checked and it seems I made it...
7172
yahoo@...
Sep 3, 2001 3:08 pm
A nice way of flipping an INTEGER var is like this: ivar = 1 - ivar No IF statements needed. Peter. ... save me...
7173
arowland
arowland@...
Sep 3, 2001 3:28 pm
DEBUG1 = NOT DEBUG1 CALL LCD(CHR(254)&CHR(212)& DEBUG1) ... From: James R. Parish [mailto:wiz@...] Sent: Monday, September 03, 2001 7:27 AM To:...
7174
Dan Bielecki
Dan.Bielecki@...
Sep 3, 2001 4:11 pm
Wow! I remember the teletype days...we called them SPO consoles (Spooled Paper Output) I remember coding Fortran on them. Man that was years ago !!! I still...
7175
Dave Houston
dhouston1@...
Sep 3, 2001 5:10 pm
I d/l and installed the beta compiler. Under 1.48 I use... Intvar = &HFFFF The Beta 2.0 compiler wanted a trailing ampersand and then complained about a type...
7176
Frank Manning
fmanning@...
Sep 3, 2001 5:39 pm
From: "Dave Houston" <dhouston1@...> ... I assume Intvar is a signed 16-bit integer. If you try to set it to &HFFFF (65535), that violates the range...
7177
Frank Manning
fmanning@...
Sep 3, 2001 6:20 pm
... Correction, -32768 to 32767. -- Frank Manning -- NetMedia, Inc....
7178
Dave Houston
dhouston1@...
Sep 3, 2001 6:37 pm
Yeah, I figured out that it was the Strict Syntax working that was screwing me up. Now my app compiles OK. One suggestion for CStr - it would be nice if the...
7179
Vic Fraenckel
vfraenc1@...
Sep 3, 2001 7:01 pm
... The guy is looking to SQUEEZE his code. Perhaps he can save a few bytes by writing: Dim Debug1 as Boolean Debug1 = Not(Debug1) 'toggle debug1 If...
7180
csonka@...
Sep 3, 2001 8:48 pm
First of all, thanks Frank for all the work on the compiler. ... Yes, I agree. I have an interesting occurence which I'm pretty sure others have encountered. ...
7181
Frank Manning
fmanning@...
Sep 3, 2001 9:19 pm
From: <csonka@...> ... I'm not sure I follow. Are you using CStr to display a variable? If so, how is a value assigned to the variable? -- Frank Manning --...
7182
Cute Clicks
home4work@...
Sep 4, 2001 2:13 pm
Get Paid To Read Email programs directory There are dozens of companies that will pay you to read your own email. All they require is that you read the...