Search:

Type: Posts; User: taku

Search: Search took 0.01 seconds.

  1. Thread: Multi link errors

    by taku
    Replies
    4
    Views
    956

    the the top of your header file include #ifndef...

    the the top of your header file include
    #ifndef MYHEADER_H
    #define MYHEADER_H

    then at the end add
    #endif /* MYHEADER_H */

    (and change MYHEADER_H to something more relevent to file)
  2. Replies
    5
    Views
    1,062

    A for loop is generaly used when you have a set...

    A for loop is generaly used when you have a set number of times the loop should be executed. (There are "tricks" you can use on them but that's another discusion)

    A while loop is generaly used to...
  3. Replies
    4
    Views
    1,393

    First wrong forum, Second what your seeing is...

    First wrong forum,

    Second what your seeing is a console which closes when no more input is required.

    to fix that see The faq
  4. Replies
    25
    Views
    2,984

    Well I havn't worked with it myself as of yet...

    Well I havn't worked with it myself as of yet apperently mananged directx using c# is easer to use then directx with c++
  5. Thread: a how to question

    by taku
    Replies
    2
    Views
    1,315

    Why not use something like the following with the...

    Why not use something like the following with the turtles movements shown in the area above the buttons.
  6. Replies
    10
    Views
    42,821

    Not a problem.

    Not a problem.
  7. Replies
    10
    Views
    42,821

    How about _getch()? using System; using...

    How about _getch()?



    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Runtime.InteropServices;

    namespace ConsoleApplication1
  8. Replies
    2
    Views
    2,496

    First are you using .net 1.x or 2.x? if your...

    First are you using .net 1.x or 2.x?

    if your using 2.x then instead of the listbox you should use the DataGridView control.

    if your using 1.x I belive you might be able to use the dataGrid...
Results 1 to 8 of 8