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 - +KZ

Pages: [1] 2
1
QB64 Discussion / Re: Importing C Code into QB64?
« on: October 05, 2020, 08:55:00 pm »
I knew that you can include .h files, the bad thing is that I don't know how

2
although it occurs to me that you can multiply all graphic things by 2

example:

input pixelx
input pixely
 PSET pixelx x2, pixely x2

3
i am using this on my program

http://www.qb64.org/wiki/NEWIMAGE

on PC-Basic i remember used SCREEN, WIDTH and HEIGHT


ignore this, I misunderstood you

4
I realize that "for next" can only contain one variable (correct me if I'm wrong)

my suggestion is enable "for next" to contain more variables

example:

Code: QB64: [Select]
  1. 'Actual:
  2. FOR X = 1 TO 5
  3. IF z < 3 THEN z = z + 1
  4.  
  5. Y = x + z
  6.  
  7. 'My suggestion
  8.  
  9. FOR X = 1 TO 5, z = 1 TO 3                        'CAN BE:  |IF z < 3 THEN z = z + 1|  OR  |z = z + 1: IF z > 3 then z = 1|
  10.  
  11. Y = x + z
  12.  
  13.  

5
Programs / Re: Place kittens in your programs
« on: July 26, 2020, 06:36:57 pm »
lel

6
Programs / Re: The 65 BASIC Interpreter
« on: July 05, 2020, 02:10:42 pm »
if name it "46BQ"? :P

7
Programs / Re: The 65 BASIC Interpreter
« on: July 04, 2020, 03:26:16 pm »
how when you find a BASIC Compiler and that need to be compiled with a BASIC Compiler and that need to be compiled with a BASIC Compiler and that need to be compiled with a BASIC Compiler and that need to be compiled with a BASIC Compiler and that need to be compiled with a BASIC Compiler......

8
Programs / Re: Moving Water Waves
« on: June 08, 2020, 10:49:14 pm »
@SierraKen, oh it was the title "Ken's Water Waves.bas" title that was the trouble, the ' character. Heck I was surprised that even works in Windows!


Lel

9
Programs / Re: Moving Water Waves
« on: June 08, 2020, 08:23:08 pm »
You're not one of those crazy Linux users who thinks if it does not work in Linux then it's no good ;-))

no

also, that sounds like "If it doesn't work on my pc then this is trash >:P" :P

10
Programs / Re: Moving Water Waves
« on: June 08, 2020, 08:16:45 pm »
I found a neat ocean waves mp3 sound and added the code to automatically play it when you run the program. So here are Ocean.mp3 and Ken's Water Waves.bas files. Put both files in the same directory.

I had trouble compiling the downloadable version of the program (From quoted post), then someone told me to give the file a shorter name, removing the apostrophe  '  ...

it now work, but for prevent more trouble please fix that file name

11
I want to compile this program (last post), but I get the error "c ++ compilation failed Check ./path to /Compilelog.txt" but i don't see text in this file :0

I don't know if I'm doing something wrong


some people helped me on private, no needing more help


12
allow multiple windows on same program will be nice :)

13
QB64 Discussion / Re: Recover AutoSaved Backup
« on: May 24, 2020, 04:02:02 pm »
Thanks

14
QB64 Discussion / Recover AutoSaved Backup
« on: May 24, 2020, 02:32:42 pm »
there is a way to do this?

15
QB64 Discussion / Re: QB64 for Android
« on: May 22, 2020, 07:39:31 pm »
Qb64 edit the QBasic code to C++ before compile this.... maybe you can compile the C ++ code with an Android compiler

Pages: [1] 2