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 - bplus

Pages: 1 2 [3] 4 5 ... 537
31
The color picker and Paint3 subs (my contributions) pretty useful as well as save image code, wouldn't be hard to fix, Steve may have already!

32
Yeah, those were annoying but easy to fix.

COMDLG32 is a Windows DLL file.  So I can't see this program working on my computer.


Oh they used that too! Yep you're right!

33
I know Linux is strict about upper and lower case file names.

I just looked at old thread and it seems the Paint Box or Orbits needs a 2 click system one to start and one to stop, otherwise the start of next was the end of the other. Don't know what version 9 is doing.

 
image_2022-04-09_205539889.png


Plus a problem with saveimage.bm, it is not updated to QB64 v 2.0+ using a Function name as a temp variable is no longer valid.


34
Welcome to forum Edwin,

Double only has 8 bytes precision about 15 decimals give or take and according to others Print has a mind of it's own.
https://wiki.qb64.org/wiki/Variable_Types

jack might have something for you and those that need precision math. I can give you some slow String math routines with arbitrary precision for add, subtr and mult, 100 decimal precision for division oh I have Sqr now too if I recall.

Original author of QB64 left and those that maintain QB64 complain of code mess. QB64 really a hobbiest language for Retro gamers.

35
Programs / Re: ascII almost smooth pixel scroll
« on: April 09, 2022, 12:26:22 pm »
Just random junk (SCROLLS IF CAPS LOCK IS ON, Q OR E)
 
image_2022-04-09_122614257.png

36
Programs / Re: ascII almost smooth pixel scroll
« on: April 08, 2022, 09:53:00 am »
@PMACKAY  been awhile, welcome back!

37
Ken was working on pretty good paint program some time ago, including a picture save.

38
QB64 Discussion / Re: Drop target in QB64, is it even possible.
« on: April 07, 2022, 12:21:52 pm »
Sanmayce used this in his first post of the humongous thread:
https://qb64forum.alephc.xyz/index.php?topic=3518.0

That's where/when I first encountered those keywords.

39
Programs / Re: Just a silly "Hello World" Marquis
« on: April 06, 2022, 09:26:44 pm »
Here is what the program looks like in my interpreter called oh:
 
image_2022-04-06_212637145.png

40
QB64 Discussion / Re: ElseIF v's Or
« on: April 06, 2022, 05:55:54 pm »
Ok, time for another dumb questions on "Why can't I...?"

Now I realize there is such a thing as ELSEIF. I do use it a lot. But I often find myself wondering why an IF statement can not follow an OR.

To give you an example.. Suppose you have an Array (1 to 10) and you want to search the array for duplicate, or triplicate, or quadruplicate, or Quintuplicate, or Sextuplicate etc values

For x = 1 to 10
  For y = 1 to 10
     If Array(x) = Array(y) then Duplicate = Array(x)
     or IF Array(x) = Array(y) and Array(x)=Array(y+1) then Tripiplicate = Array(x)

etc etc



I predict 10 duplicates even if all the values of Array() are different!

41
I think I recall Steve or someone setting that up, maybe under a different name. Try wiki help places that discuss console or try a search here. Guess about a year ago? I remember requesting mouse polling for console, while, I am pretty sure it was Steve, was doing a bunch of improvements to console.

Update: Eh couldn't find anything about inputs, if you don't Console Only you might have to set _Source to Console? Don't know for sure but _DEST and _SOURCE were discussed under Wiki on Console.

Update2: links from search that might be relevant
inp might be it!  https://qb64forum.alephc.xyz/index.php?topic=1535.msg107483#msg107483
WIP console enhancements https://qb64forum.alephc.xyz/index.php?topic=1540.msg107531#msg107531
another about keypress (CINP): https://qb64forum.alephc.xyz/index.php?topic=4181.msg135462#msg135462

That's most relevant check of first of 3 pages in Search for "console" and SMcNeill member.
If you need more try search yourself.



42
Programs / Re: QBZerk
« on: April 06, 2022, 09:16:44 am »
TerryWho? :D

Nice to see you back!

Pete

Is Pete thinking Terry is back?

We wish!

43
Programs / Re: Just a silly "Hello World" Marquis
« on: April 05, 2022, 09:57:10 pm »
Code: QB64: [Select]
  1. Width 130, 100: _FullScreen: View Print 1 To 100
  2. For i = 1 To 10: b$ = b$ + "Hello World! ": Next
  3. 1 Print Mid$(b$, i + 1) + Mid$(b$, 1, i)
  4. i = (i + 1) Mod 130: _Limit 10: GoTo 1
  5.  

No escape? nah, Alt+F4

44
Programs / Re: Just a silly "Hello World" Marquis
« on: April 05, 2022, 08:00:12 pm »
Code: QB64: [Select]
  1. 1 Print Mid$("Hello world!  ", i + 1) + Mid$("Hello world!  ", 1, i)
  2. i = (i + 1) Mod 14: _Limit 10: GoTo 1
  3.  

EDIT: think I have it fixed?

45
Programs / Re: B+'s Matrix Rain With World Map Backdrop
« on: April 05, 2022, 06:08:01 pm »
Yeah 44 to 47 for me, for app alone.

Blow the dust off the CPU!

Pages: 1 2 [3] 4 5 ... 537