Search found 49 matches

by LEGRAND
Sun Sep 14, 2008 9:38 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Printer Problems
Replies: 11
Views: 23586

I think that the solution given is nice to get from .BAS file copied in note a record of the program 's code. But what I think more useful would be to get in a file the RESULTS of the program's calculations.Otherwise if the data is long enough, all the beginning is lost, remaining on the screen the ...
by LEGRAND
Mon Aug 18, 2008 8:42 am
Forum: General Discussion
Topic: Icon change
Replies: 2
Views: 6708

Icon change

in the past, I read somewhere it was possible to use a personnal icon (drawn with paint?) to replace (enhance?) the standard exe one. Is there something on the subject?
by LEGRAND
Sun Aug 17, 2008 2:15 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: No " .exe" !
Replies: 23
Views: 35730

no exe

Here is what happens. In My Documents,in the same folder named QBASIC7 all folders are together: BC.EXE, LINK, LIB,QBX and of course my program in 2 versions: .BAS and .TXT I have also MSDOSQBX that I runned. This time, it works till that warning: LINK:warning L4051:bc171enr.lib;cannot find library....
by LEGRAND
Sat Aug 16, 2008 10:07 am
Forum: QBASIC and QB64 Questions & Answers
Topic: No " .exe" !
Replies: 23
Views: 35730

No exe...

Don't know if my answer is somewhere in the pipe. Sent it 2 times but do not see it in the list...
by LEGRAND
Wed Aug 13, 2008 8:41 am
Forum: QBASIC and QB64 Questions & Answers
Topic: No " .exe" !
Replies: 23
Views: 35730

Getting .EXE

Everything works fine till I run Make EXE.( I use QB7) I'm there advised that the program does not find BC.EXE (it is in the same folder as QBX)and obliged to give the path (very long to type) then same with LINK (idem in the same foler) and then same for LIB (also in the same folder).Here I do not ...
by LEGRAND
Mon Aug 11, 2008 12:15 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: No " .exe" !
Replies: 23
Views: 35730

I do not succeed.Is there somewhere a clear tutoriel on how to compile with quickbasic 4.5 on windows 2000 XP?
by LEGRAND
Sat Aug 09, 2008 10:37 am
Forum: QBASIC and QB64 Questions & Answers
Topic: No " .exe" !
Replies: 23
Views: 35730

No " .exe" !

I'm using Quickbasic compiler 4.5 on Windows 2000 XP. The program I want to compile works fine but I cannot compile it. If I get the 2 files .OBJ and .LST, the .exe file does not appear. I see no errors comments on the .LST even if I cannot understand codes like 6E72 followed by 02B6 etc. 2 question...
by LEGRAND
Thu Jul 31, 2008 3:09 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Understanding code
Replies: 8
Views: 10123

UNDERSTANDING CODE

Thanks for your help. Never seen that before. I wander what language it is. Fortran? I also noted this one: D0 = FNH(D): A0= FNH(A/15) nowhere you can find DEF FNH Basic refuses this direct using of FNH and also refuses a variable For instance: H being an input, N previously calculated, the program ...
by LEGRAND
Wed Jul 30, 2008 8:13 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Understanding code
Replies: 8
Views: 10123

Understanding code

Looking at a program for astronomy, I find the following line: A= ATN2(SIN(L1(0))*COS(E) , COS(L1(0))) MOD 360 Can somebody knows what this comma means, right in the middle, and how the line should be written in correct qbasic style? I must say this program is from a 20 years old book and it is not ...