Author Topic: [video] QB64 v2 - Quick Help Reference  (Read 4259 times)

0 Members and 1 Guest are viewing this topic.

FellippeHeitor

  • Guest
[video] QB64 v2 - Quick Help Reference
« on: October 21, 2021, 05:36:59 pm »
You know, when you're typing and you forget how many arguments, a certain statement has? QB64 v2 has you covered.


Offline johnno56

  • Forum Resident
  • Posts: 1270
  • Live long and prosper.
    • View Profile
Re: [video] QB64 v2 - Quick Help Reference
« Reply #1 on: October 21, 2021, 10:06:02 pm »
  • Best Answer
  • The extra info in the status display is a great idea... Nicely done!
    Logic is the beginning of wisdom.

    FellippeHeitor

    • Guest
    Re: [video] QB64 v2 - Quick Help Reference
    « Reply #2 on: October 21, 2021, 10:42:58 pm »
  • Best Answer
  • Thanks, johnno56!

    Offline bplus

    • Global Moderator
    • Forum Resident
    • Posts: 8053
    • b = b + ...
      • View Profile
    Re: [video] QB64 v2 - Quick Help Reference
    « Reply #3 on: October 22, 2021, 01:10:08 am »
  • Best Answer
  • First thing I tried for Quick reference was _PutImage, nothing, others worked like _SetAlpha.

    FellippeHeitor

    • Guest
    Re: [video] QB64 v2 - Quick Help Reference
    « Reply #4 on: October 22, 2021, 02:39:54 am »
  • Best Answer
  • PutImage is perfectly valid without parameters. Quick reference shows up when Syntax Errors halt compilation.

    Offline SMcNeill

    • QB64 Developer
    • Forum Resident
    • Posts: 3972
      • View Profile
      • Steve’s QB64 Archive Forum
    Re: [video] QB64 v2 - Quick Help Reference
    « Reply #5 on: October 22, 2021, 03:15:34 am »
  • Best Answer
  • PutImage is perfectly valid without parameters. Quick reference shows up when Syntax Errors halt compilation.

    So try _PUTIMAGE a$ <-- that should toss an error and pop-up the syntax for you.  ;)
    https://github.com/SteveMcNeill/Steve64 — A github collection of all things Steve!

    FellippeHeitor

    • Guest
    Re: [video] QB64 v2 - Quick Help Reference
    « Reply #6 on: October 22, 2021, 05:38:05 am »
  • Best Answer
  • Yeah, that’ll do 🤗

    Offline Dav

    • Forum Resident
    • Posts: 792
      • View Profile
    Re: [video] QB64 v2 - Quick Help Reference
    « Reply #7 on: October 22, 2021, 07:31:39 am »
  • Best Answer
  • These short informative clips are a good idea to help people get started with QB64.  Good job, as always.

    - Dav

    FellippeHeitor

    • Guest
    Re: [video] QB64 v2 - Quick Help Reference
    « Reply #8 on: October 22, 2021, 08:47:20 am »
  • Best Answer
  • Thank you, Dav!

    Offline Pete

    • Forum Resident
    • Posts: 2361
    • Cuz I sez so, varmint!
      • View Profile
    Re: [video] QB64 v2 - Quick Help Reference
    « Reply #9 on: October 22, 2021, 12:09:35 pm »
  • Best Answer
  • I had to play it a couple of times, due to the speed of the presentation, but then again, we are "Quick"64 so I guess it's up to me to catch up.

    I have to admit, I probably would not have known about these new additions, if I hadn't viewed this video. I tend not to focus much at anything not in the coding area.

    One suggestion: Make the "View on Wiki" hyperlink change color for .3 seconds, so it confirms the user's click. The first time I tried this, I opened 6 wiki pages, because it didn't seem to accept the click. Of course, it was just the lag, which is to be expected.

    Al in all, really, really nice IDE additions for ease of reference!

    Pete 👏
    Want to learn how to write code on cave walls? https://www.tapatalk.com/groups/qbasic/qbasic-f1/

    Offline TempodiBasic

    • Forum Resident
    • Posts: 1792
      • View Profile
    Re: [video] QB64 v2 - Quick Help Reference
    « Reply #10 on: October 24, 2021, 08:15:42 pm »
  • Best Answer
  • very smart feature that to suggest syntax during the typing of code for Keywords

    I got this strange segnalation of VWATCH SUB!

    see here
      [ You are not allowed to view this attachment ]  
    Programming isn't difficult, only it's  consuming time and coffee

    FellippeHeitor

    • Guest
    Re: [video] QB64 v2 - Quick Help Reference
    « Reply #11 on: October 24, 2021, 09:49:03 pm »
  • Best Answer
  • When you use $debug, a Sub vWatch is appended to your program. When you don’t use $Debug, an empty Sub vWatch is added to your program, so you cannot create one yourself (which would prevent you from using actual $Debug later on).

    Offline TempodiBasic

    • Forum Resident
    • Posts: 1792
      • View Profile
    Re: [video] QB64 v2 - Quick Help Reference
    « Reply #12 on: October 25, 2021, 12:23:54 pm »
  • Best Answer
  • Thanks  Fellippe
    it is clear now why parser points to a VWATCH sub that I haven't created and I'm using QB64IDE with no debug option activated!
    Programming isn't difficult, only it's  consuming time and coffee