QB64.org Forum

Active Forums => QB64 Discussion => Topic started by: FellippeHeitor on October 21, 2021, 05:36:59 pm

Title: [video] QB64 v2 - Quick Help Reference
Post by: FellippeHeitor 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.

Title: Re: [video] QB64 v2 - Quick Help Reference
Post by: johnno56 on October 21, 2021, 10:06:02 pm
The extra info in the status display is a great idea... Nicely done!
Title: Re: [video] QB64 v2 - Quick Help Reference
Post by: FellippeHeitor on October 21, 2021, 10:42:58 pm
Thanks, johnno56!
Title: Re: [video] QB64 v2 - Quick Help Reference
Post by: bplus on October 22, 2021, 01:10:08 am
First thing I tried for Quick reference was _PutImage, nothing, others worked like _SetAlpha.
Title: Re: [video] QB64 v2 - Quick Help Reference
Post by: FellippeHeitor on October 22, 2021, 02:39:54 am
PutImage is perfectly valid without parameters. Quick reference shows up when Syntax Errors halt compilation.
Title: Re: [video] QB64 v2 - Quick Help Reference
Post by: SMcNeill on October 22, 2021, 03:15:34 am
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.  ;)
Title: Re: [video] QB64 v2 - Quick Help Reference
Post by: FellippeHeitor on October 22, 2021, 05:38:05 am
Yeah, that’ll do 🤗
Title: Re: [video] QB64 v2 - Quick Help Reference
Post by: Dav on October 22, 2021, 07:31:39 am
These short informative clips are a good idea to help people get started with QB64.  Good job, as always.

- Dav
Title: Re: [video] QB64 v2 - Quick Help Reference
Post by: FellippeHeitor on October 22, 2021, 08:47:20 am
Thank you, Dav!
Title: Re: [video] QB64 v2 - Quick Help Reference
Post by: Pete on October 22, 2021, 12:09:35 pm
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 👏
Title: Re: [video] QB64 v2 - Quick Help Reference
Post by: TempodiBasic on October 24, 2021, 08:15:42 pm
very smart feature that to suggest syntax during the typing of code for Keywords

I got this strange segnalation of VWATCH SUB!

see here
  [ This attachment cannot be displayed inline in 'Print Page' view ]  
Title: Re: [video] QB64 v2 - Quick Help Reference
Post by: FellippeHeitor on October 24, 2021, 09:49:03 pm
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).
Title: Re: [video] QB64 v2 - Quick Help Reference
Post by: TempodiBasic on October 25, 2021, 12:23:54 pm
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!