Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - hotlnc

Pages: [1] 2
1
QB64 Discussion / Something lost in the translation
« on: March 24, 2020, 04:37:37 pm »
I downgraded my WIN7 machine to work on only a single screen. Ever since then, my programs are acting strange. The biggest example is my QB64 basic program that puts up a scrollable DOS screen. Before, I could expand the screen as big as I want in both horizontal or vertical modes.

But now, I can only expand the DOS screen vertically. No dice horizontally.

I'm running version 1.4, but it makes no difference.

FYI-- I can copy this same exe program to my WIN10 Machine and it is fine.

An exe program compiled on my WIN10 machine is horizontally locket on my WIN7 machine.

So this is a system thing, not a QB64 thing.   Any suggestions?


2
QB64 Discussion / Re: The 8 byte File name limit is back...
« on: November 07, 2019, 06:09:02 pm »
An editor program called "Multi-edit." I started using it back when the program was issued on 3.5" floppies and was DOS based -- before windows.

I am seeing "differences" with this editor running on WIN10. Maybe that is it.

I'll reinstall Multi-edit and see what happens.

There is no WIN10 version form the multi-edit vendor.

Thanks.

3
QB64 Discussion / Re: The 8 byte File name limit is back...
« on: November 07, 2019, 04:58:12 pm »
Based on what you guys are telling me, I traced the problem to the COMMAND$ function.

The command data given: "C:\folder1\folder2\bigname_flat.LST"

A print command at the start of the program shows: C:\folder1\folder2\bignam~3"

The first code line used as test: Print "command$--->";COMMAND$

This used to work on my old WIN7 machine.



4
QB64 Discussion / The 8 byte File name limit is back...
« on: November 06, 2019, 07:37:59 pm »
I'm switching from WIN7 to WIN10 (hopefully I'll finish the task before I stress out and my head explodes.)

I'm using REV 1.3

When I try to open a file that is greater than 8 characters (LargerFileName.LST) it looks for the old 8 byte file name: "Larger~1.LST". Hence it cannot fine the source file.

What am I doing?

Can any one help?

5
QB64 Discussion / Re: Scrollable DOS Screen
« on: April 02, 2019, 10:56:49 am »
That small program worked great.

I moved the three screen format statements below my DIM and shared statements and my screen now is scrollable.

Thanks for all the help guys.

6
QB64 Discussion / Re: Scrollable DOS Screen
« on: April 01, 2019, 07:51:52 pm »
Thanks for the reply.

I'd like to use the scroll bar on the right.  Your program worked great. That's the way I'd like my program to look.

I guess i need to analyze your program and figure out what I'm doing differently.

Compared to your program, my program looks like I wrote it when I was first using a TRS-80 Model 1 to teach myself Basic!

7
QB64 Discussion / Re: Scrollable DOS Screen
« on: April 01, 2019, 04:52:24 pm »
Thanks for the replies.

Well I tried the $console lines and it had no effect. I couldn't scroll up to see what scrolled off the upper part of the string.

How could I screw up two lines?

Any thoughts?

8
QB64 Discussion / Scrollable DOS Screen
« on: March 15, 2019, 02:22:33 pm »
Is it possible to use/access the method a modern DOS computer uses to display large number of lines in the DOS window?

For example, in a dos window type "help" and a long help list is displayed. You can scroll up and down this list.

This would be very useful in the tools firmware I use to monitor my industrial cell phones.

9
QB64 Discussion / Re: There is a sequential file line limit in Basic?
« on: October 28, 2018, 12:34:35 pm »
Well, it passed your test. My problem is not an issue of an early EOF.

The passed result on your test forces me to look into the program for an error.

And I think I found the problem.
Code: QB64: [Select]
  1.             IF (INSTR (MID$ (aIn, 23, 5), "0") = 1) OR (xMacro = 5) THEN    'macro and valid assembly lines only pass this point
  2. Should read:
  3.             IF VAL (MID$ (aIn, 23, 5)) > 0 OR xMacro = 5 THEN    'macro and valid assembly lines only pass this point
  4.  
This is why the program was terminating early -- the line number went from 09999 to 10000 and failed the first conditional INSTR -- there was no ASCII "0" in position #1.
At first I fixed it by replacing "= 1" to "> 0". But that would limit the line number to less than 11111.

So I used the VAL statement and that allows  the number to be larger.

Thanks for the help guys.

10
QB64 Discussion / Re: There is a sequential file line limit in Basic?
« on: October 27, 2018, 08:13:12 pm »
Thanks for the reply.

Changing "For Input" with "For Binary" made the program run much, much faster.  But same result.

I busted the input file into two parts -- one large; one small. the small one contains the chr$(26) spot.

Running the program on both files, I get good output from the larger, except it is missing the last line of the file.  The second file (about 850 lines) terminated at the same spot it did when it was all one file.

I've replace the listing area around where the there could be an embedded chr$(26), but got same result.

Do you remember how DOS marks the EOF?

 

11
QB64 Discussion / Re: There is a sequential file line limit in Basic?
« on: October 27, 2018, 05:29:10 pm »
Opps.  I was using an integer to count.  Using a long integer I get better line counts:

As far as I can tell, I'm getting an early End Of File. And always at the same spot. I'm processing 53,313 lines and that is it.

Using a different input file, I can process 51,770 lines and have good results.  The entire file is processed.

I've backed up to qb64-1.1-20160902.48 and got the same results, although this version doesn't like tab characters in the Basic language.

Do you guys have any ideas for me to try?

12
QB64 Discussion / Re: There is a sequential file line limit in Basic?
« on: October 25, 2018, 04:55:35 pm »
Noted.  Thanks. I guess I should have placed my cursor on the # sign. It would have told me what it was...

13
QB64 Discussion / Re: There is a sequential file line limit in Basic?
« on: October 25, 2018, 04:07:39 pm »
The REV0p0 file uses the macro file and is not a flattened file. It simply reverses the listing process and regurgitates the pre-combo file.

Look at the file "J13Gps4G0p0.ASM"

It terminates too early. There is more in the LST file to process, but nothing comes out.

14
QB64 Discussion / Re: There is a sequential file line limit in Basic?
« on: October 25, 2018, 04:02:39 pm »
The purpose of this program is to flatten an listing file that was generated by a macro assembler.  The macros have been expanded and the program is very hard to read.  The Combo program removes the macro lines and just shows native code. This could can then be compiled with an assembler.

Using your example, after running COMBO.BAS, it would look like this:
Code: QB64: [Select]
  1. SevenDecade_Ascii2Binary:       ;this is stored in accumulatorH:L
  2. ;        Load    TablePointer,Table_7Decades     ;setup to point in decades table
  3.            Ac set 0        ;make ACCESS Bank since already bank 0
  4.            movlw   upper Table_7Decades
  5.            movwf   TBLPTRU,Ac
  6.            Ac set 0        ;make ACCESS Bank since already bank 0
  7.            movlw   high Table_7Decades
  8.            movwf   TBLPTRH,Ac
  9.            Ac set 0        ;make ACCESS Bank since already bank 0
  10.            movlw   low Table_7Decades
  11.            movwf   TBLPTRL,Ac
  12. ;        move    DivisorL,7              ;set up outer loop counter
  13.            Ac set 1
  14.            movlw   7
  15.            movwf   DivisorL,Ac
  16.         bra     Asc2Bin_0       ;and use common
  17.  


15
QB64 Discussion / Re: There is a sequential file line limit in Basic?
« on: October 25, 2018, 03:42:59 pm »
The file you pointed out "include "c:\...\macros_j13_c.asm"" is a file that was a macro file that was included and is no longer needed.  That line is commented out for the output file.

Pages: [1] 2