micro(A)v11 - Printable Version +- QB64 Phoenix Edition (https://staging.qb64phoenix.com) +-- Forum: QB64 Rising (https://staging.qb64phoenix.com/forumdisplay.php?fid=1) +--- Forum: QBJS, BAM, and Other BASICs (https://staging.qb64phoenix.com/forumdisplay.php?fid=50) +--- Thread: micro(A)v11 (/showthread.php?tid=1823) |
RE: micro(A)v11 - dbox - 08-20-2023 (08-14-2023, 04:43 PM)mnrvovrfc Wrote: I was trying to find the post months ago by dbox where he says "JS <> JavaScript". Do you mean where I said “Java <> JavaScript”? https://staging.qb64phoenix.com/showthread.php?tid=1613&pid=15178#pid15178 RE: micro(A)v11 - mnrvovrfc - 08-20-2023 (08-20-2023, 03:46 PM)dbox Wrote:(08-14-2023, 04:43 PM)mnrvovrfc Wrote: I was trying to find the post months ago by dbox where he says "JS <> JavaScript". Thank you! \O/ (08-20-2023, 03:08 PM)aurel Wrote: What you mean under monospaced font What I mean is a font like this one: This is so that all the letters are aligned by lines and columns as it should be in a terminal. EDIT: This presented font isn't a very good example for the lowercase letters. Should have picked "Courier New" or "Lucida Console". EDIT: Highlighting with "Comic Sans MS" or "Courier New" on this forum doesn't work! RE: micro(A)v11 - aurel - 08-20-2023 If you mean on how to change font in micro(A) then i must add new command like: SetFont w, h, fontname RE: micro(A)v11 - aurel - 08-25-2023 Black hole collision B256 in micro(A) Code: (Select All) 'black hole collision B256 RE: micro(A)v11 - aurel - 08-30-2023 star travel by pW Code: (Select All) 'star travel copyright by (c)Peter Wirbelauer in o2 RE: micro(A)v11 - mnrvovrfc - 08-30-2023 Code: (Select All) 'star travel copyright by (c)Peter Wirbelauer in o2 What you're doing is not right. It might be "legal" enough, but it says many things about you. The original author of the program puts down the "( c )" and then reinforces his wishes. I hope you at least consulted with him before even doing the port. Also you put your own "( c )" as if you really didn't care where it came from. You could have left out the first two lines of the comment for greater effect. Probably it would have placated Mr. Wirbelauer if you did the port but didn't post it anywhere online, but simply kept it with the other examples for micro(A), to be checked out the next time you offer the download for your interpreter. Sorry, had to write the copyright symbol like that because the forum converts the "true" one into a single character. RE: micro(A)v11 - TerryRitchie - 08-30-2023 (08-30-2023, 08:36 PM)mnrvovrfc Wrote:I remember reading somewhere that the use of (c) is not a legitimate copyright symbol because the c is not encircled, basically making the addition of (c) in code worthless. In fact, I believe in the late 80's a rule came out that the use of the copyright symbol is no longer needed as all works now enjoy the benefits of copyright without it. RE: micro(A)v11 - aurel - 08-30-2023 I expect such a reaction...don't worry it is a joke RE: micro(A)v11 - aurel - 08-31-2023 TESTING ... SetFont This is not directly with strings but is with FONTS i add for testing SetFont fontHeight, fontWidth, fontFlag, fontName internal code : Code: (Select All) case tkSETFONT RE: micro(A)v11 - aurel - 08-31-2023 Here is a short example : |