QB / QB64 Discussion Forum      Other Subforums, Links and Downloads      Archived Pascal Resources    Search


Have a computer related question we don't have a forum for? Try asking it here.
Post New TopicView All Messages

Message TitleAuthor and Date
Screen dump - PCOPY - routine. How would I make this in C? (URL to post in Main Forum*)Pete on May 13
 * You would have to create your own console buffer, which I haven't experimented with.rpgfan3233 on May 13
  Not exactly Step 2 in the tutorial where step 1 is printf("Hello World");Pete on May 13
 * Another alternative is something like SDL or Allegro. :Prpgfan3233 on May 14
I'd use FreeBasic but it costs too much!Pete on May 12
 Why CHR$(255) was changed from CHR$(0)rpgfan3233 on May 12
 You can still use CHR$(0) in a file in FB...'lipse on May 13
 "So, the only thing I see in favor of FreeBasic is Free. I'll take power over cheaper any"2 on May 13
 huh? Did you even try benchmarkng the two?relsoft on May 16
I made this 4 matt. on May 9
 Binary counting program in FreeBASIC on May 9
  Huh? Why you do that? on May 9
  * There is a built-in BIN$ function that was created for FB. . .rpgfan3233 on May 10
   LOL,I love that function.2 on May 10
    There are other numerical systems... on May 10
     NOOOO! Anything but ternary!2 on May 10
      * I wrote one a while back @ program that does roman numerals on May 10
      I can up until you need to go beyond 3999. . .rpgfan3233 on May 10
      Yea. Here's a roman numeral program I did as an asignment: on May 11
       Dude,I could use something simpler.2 on May 11
     "any other base=2" ->rpgfan3233 on May 10
      ?! negabinary?! How does somebody know which is which?2 on May 11
Here is the only way I know of doing colors in C.2 on May 9
 Here is you a color function: on May 9
  *NOTE: My color function only works under windows on May 9
   But it works well!2 on May 9
   BTW,where did you learn how 2 use Windows.h?2 on May 9
    That's a reference I often use. on May 9
    I learn it as I need it.rpgfan3233 on May 9
     "Don't you love how colours relate to powers of 2?" on May 9
  I had 2 change it 2 get it 2 work.2 on May 9
Maybe rpg can satisfy my curiosity.2 on May 8
 (URL) Sure, you can open a file in binary mode.rpgfan3233 on May 8
  Well thanks alot! :P2 on May 8
   I figured it out.I don't need binary mode!2 on May 8
My file comparing tool in C.2 on May 8
...M$ and the horse they rode in on. So many Basics do 32-bit Anyone try these?Pete on May 7
 BAD? Nah, not if you're dead ;-). on May 8
 What?!2 on May 8
  You know what Chandler...you're abs(right).Pete on May 8
   "Fight MS! (The disease and the company are one-in-the-same!)"2 on May 8
   * LOL @ QB.NET!Solitaire on May 23
LOL,this is kinda like a virus!2 on May 7
If you like QB's IDE,you'll like the IDE of this!2 on May 6
 I've been using Turbo C/C++ (version 3) for DOS (by Borland).Solitaire on May 8
  It looks like 2.01.2 on May 8
Funny thing I saw about C...Pete on May 6
 *C is popular, but Java still seems 2 be more valuable 2 businesses. I don't know why. . .rpgfan3233 on May 6
  rpg is right on May 6
   Well excuuuuse me...LOL (The ref I found was from last year...)Pete on May 6
    Re: Well excuuuuse me...LOL (The ref I found was from last year...) on May 6
     *Thanks for info 'lipse.Pete on May 6
     WOW.That's sad.2 on May 6
      * The java specification is much larger than C++. That's why it is so large.rpgfan3233 on May 7
    programming languages on May 7
     Some examples of sizes of dynamic arrays in C, C++ and Java (Windows XP)rpgfan3233 on May 7
      sizeof in c on May 7
      * 'public static void main()' should be 'public static void main(String args[])'rpgfan3233 on May 11
     How about Ada? on May 7
      It has been around for a while. . .rpgfan3233 on May 7
       IT was blamed, but not as a language per se. on May 9
  (STATS*) Proof of statementrpgfan3233 on May 6
   (using asterisk from above post since it didn't need it) lipse beat me to it. :Prpgfan3233 on May 6
  An article you might enjoy in support of open-source software - URL*Pete on May 6
C Programming is not for the faint of heart...Pete on May 5
Dude,there are differences between C compilers!2 on May 4
 * Post your code. This after all the "Non-QBasic Forum". :Prpgfan3233 on May 5
  OK.2 on May 5
   * What compiler doesn't this work with? M$ Visual C++ or what?rpgfan3233 on May 5
    * And tell what errors you get too, plz.rpgfan3233 on May 5
    There are 2 compilers it wouldn't work with.2 on May 6
     Miracle C is just. . . wrong.rpgfan3233 on May 6
      It's a miracle they can call it C,,,Pete on May 6
       It has that 16-bit app style.rpgfan3233 on May 6
      *Yeah,I did later get Watcom 2 compile the "Hello World".2 on May 6
Question for C and C++ Console applications.Pete on May 3
 Well,it depends on the compiler.2 on May 3
  That either didn't answer my question or I simply didn't understand the answer.Pete on May 3
   * AFAIK, console apps in NT-based environments (NT, 2K, XP) requires cmd.exe, not NTVDM.rpgfan3233 on May 3
    *So do you think console apps will be available as long as windows apps because of that?Pete on May 3
     NTVDM is stubbornrpgfan3233 on May 3
      Why is it that the Task Manager never has an option: KIck NTVDM in the nads?Pete on May 3
     Re: *So do you think console apps will be available as long as windows apps because of that? on May 3
      'lipse, you're the man! That makes good sense.Pete on May 3
       * note that system("cls"); is platform-specific and isn't guaranteed to work in the future on May 3
        I also read this about tapping into the command line...Pete on May 3
         *Win32 API has SetConsoleCursorPosition() (same as LOCATE in QB, but starting at 0, not 1)rpgfan3233 on May 3
          I wish I could use that...or something!Pete on May 3
           (URL) You can download the Win32 API @. . .rpgfan3233 on May 3
        * Windows = "cls", Linux = "clear"rpgfan3233 on May 3
        Yes,I know.2 on May 3
      Thank God! I was scared!2 on May 3
      Bad news: The Console window in the .NET framework is NOT the same as the DOS console.Solitaire on May 5
       I want 2 kill M$!!!!!!2 on May 5
        DOS != Windows consolerpgfan3233 on May 5
         Well yeah,I knew it wasn't true DOS.2 on May 6
   Well,maybe you could try it!2 on May 3
My knowledge of C has grown!2 on May 2
 The system() function is fun.rpgfan3233 on May 2
  Yes,I always liked SHELL.2 on May 2
 4 2Pete on May 3
  *Gotta love the simplicity of binary!2 on May 3
  * You should add this one and the Befunge one to your Powers of 2 archive.rpgfan3233 on May 4
 another one 4 2 on May 3
  * Wow, I can't beat that...but I can optimize you're msg. title: another 14 2Pete on May 3
   * lol on May 3
CG's (ComputerGhost's) C tutorial is awesome!Pete on May 1
 *:-) Thanks, Pete. I'm glad they are of use. on May 1
  CG, any ideas on thisPete on May 2
   No ANSI-C, C89 or C99 function seems to do that in Windows (for me anyway).rpgfan3233 on May 2
    Examplesrpgfan3233 on May 2
     Cannot get that to compile in Dev-C++Pete on May 2
      a = ''; returns an error of empty character constant.Pete on May 3
      conio isn't in Dev-C++.2 on May 3
       Well, it works for me! Also, here is the best INKEY$ replacement code I have found so far:Pete on May 3
 You're right! It IS good!2 on May 2
Befunge on Apr 29
I wrote a page about autism.2 on Apr 25
 Quote: "I've been trying 2 improve for my entire life,but nothing's worked so far." on Apr 25
  CG - "Repetitive behaviors, force yourself to not do them."Pete on Apr 25
   Sure, but... on Apr 25
    "potentially harmful or embarassing repetitive behaviors."2 on Apr 25
     It is if your life is going to be ruled by itroy on Apr 30
      A 13-year-old with ADHD wrote in to New Scientist... on May 4
       Yes!2 on May 4
We'll C about that. on Apr 25
 The answer depends upon which OS you wish to use.rpgfan3233 on Apr 25
  The only footnotes I ever used were written across my toes...Pete on Apr 25
I DID dislike C++,but something happened!2 on Apr 24
 * The next thing to explore is the STL string class or the STL vector class! ;)rpgfan3233 on Apr 24
  What do those do?2 on Apr 24
   Check out the STL string class.rpgfan3233 on Apr 24
    Thanks alot.2 on Apr 25
    I kinda got something working.2 on Apr 25
     To get an entire line: on Apr 25
      *Thanks,I'll look this up.2 on Apr 25
       Also note that getline() isn't restricted to just console input.rpgfan3233 on Apr 25
        Well,it works now! Thanks!2 on Apr 25
         *I found a reason for it (primes) and you should know what it is because you are involved.rpgfan3233 on Apr 26
          Yes,that's true!2 on Apr 26
           * A file is faster than a console because everything runs through NTVDM (slower than DOS).rpgfan3233 on Apr 26
            * I think it's because file output in QB/FB uses a buffer and screen output doesn't. on Apr 26
            Well,the TYPE command can still read those files fast!2 on May 6
NEWS: Microsoft Visual Studio 2005 Express Edition suite is permanently free!rpgfan3233 on Apr 21
 Sure...The first one is free.Pete on Apr 22
  * lol, no offence taken.rpgfan3233 on Apr 22
  C# on Apr 24
   *The new VB.NET and C# 2005 Express programs are free and include an IDE.Solitaire on Apr 24
   For some reason, there's also Visual J#. . .rpgfan3233 on Apr 24
    more... on Apr 24
     arghhhh... on Apr 24
  Pete! Learn C :) on Apr 25
   Learned it yesterday...got anything else?Pete on May 2
    Re: Learned it yesterday...got anything else? on May 2
     LOL - I just read about SWITCH online! Came back with this question...Pete on May 2
      Just answered my own question...Pete on May 2
       Oops, not entirely right...Pete on May 2
      That exact code worked fine for me. on May 2
       Good debug! Apparently, in Dev C++ the Enter key is character 10. However...Pete on May 2
        Re: Good debug! Apparently, in Dev C++ the Enter key is character 10. However... on May 2
         Unbelievable inconsistency!Pete on May 2
          *Maybe it is the compiler settings, because it runs the same in my XP.Pete on May 2
    3 answers on May 2
     Thanks CGPete on May 2
      The Win32 API has a function called SetConsoleActiveScreenBuffer()rpgfan3233 on May 2
C/C++xXlennonboyXx on Apr 21
 (URLs) IDE+Compiler and Tutorial Recommendationsrpgfan3233 on Apr 21
 *URLs inside on Apr 21
HTML VisuallyxXlennonboyXx on Apr 20
 * Comment: I really hate doing HTML visuallyBen on Apr 21
 Me too but I don't know too much HTMLxXlennonboyXx on Apr 21
 Learning HTML is a better option.rpgfan3233 on Apr 21
I made a conversion tool 4 converting binary to decimal!2 on Apr 8
 your obsession with powers of 2 is getting unhealthy ;) *anonymous on Apr 10
  Chandler alias 2 knows he has a problem androy on Apr 11
   Thanks roy.2 on Apr 11
You can't say you didn't know it would happen!2 on Apr 6
mandelbrot on Apr 6
 *Neat on Apr 6
 * hey, thats awesome! on Apr 6

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 

<< Prev Next >>