Search:

Type: Posts; User: C+noob

Page 1 of 8 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    895

    also, normally you cant always include headers as...

    also, normally you cant always include headers as much as you like if they dont have a "definition procedure"

    like


    #ifndef HEADER_H
    #define HEADER_H

    // header code
  2. Replies
    9
    Views
    1,800

    i havent done File I/O for a long LONG time ...

    i havent done File I/O for a long LONG time

    but instead of ofstream file_out(MAINPATHNAME)

    try:



    ofstream file_out;
    file_out.open(MAINPATHNAME)
  3. i would also reccomend using get and set ...

    i would also reccomend using get and set



    class wutever
    {
    private int x;

    public int X
    {
  4. Replies
    2
    Views
    2,490

    in the windows form designer click tools ->...

    in the windows form designer click tools -> tolol, box and click listbox and drag it on to your program then loook at the code ot see how its made
    you can also add colums in th eform designer its...
  5. Replies
    2
    Views
    947

    i reccomend using Dev-C++ over Borland for...

    i reccomend using Dev-C++ over Borland for beginning programming, iots free and available at www.bloodshed.net but anyways if that did run it would run and close instantly try this when you fix your...
  6. howe does everyone find all this stuff on msdn? i...

    howe does everyone find all this stuff on msdn? i search it on MSDN and i cant find it :S

    EDIT: ive been to FoosYourDoos, i dont program in Unicode, and it seems deprecetated, as it uses stuff...
  7. yes, those wiondows ones i have, but they dont...

    yes, those wiondows ones i have, but they dont cover the controls i want to learn about
  8. Win32 Common Controls in C++, how do i make and use them?

    i know how to make the simple controls like buttons and edits etc....

    but how do i make..

    progress bars how do i use them and how can i make them look like XP not windows 95, track bars how do...
  9. Replies
    14
    Views
    1,895

    i disagree, microsoft is a memory .......... the...

    i disagree, microsoft is a memory .......... the only reason i uise it is cus of DX but Microsoft pushes everything, and its not our boss geez.
  10. Replies
    17
    Views
    2,371

    i take this as offensive, i cant do DDraw but you...

    i take this as offensive, i cant do DDraw but you can do 2D with Direct3D, DirectX is not hard to learn :rolleyes: !!!!! i had an easier time learning DirectX than OpenGL (i started OpenGL first,...
  11. Replies
    6
    Views
    7,955

    i must say, i didnt have a great knowledge of...

    i must say, i didnt have a great knowledge of windows when i started windows programmong, starting windows OpenGL and DirectX got my programming skills tuned AKA learn as you go and ask questions...
  12. Replies
    1
    Views
    1,253

    Win32 Books/Tutorials (No Ugly MFC)

    im looking form some good windows XP programming books in C++

    and

    i REALLY need to find advanced windows tutorials like with combo boxes list boxes advanced dialogs threads dll's groupboxes...
  13. HDC is the Direct Context which is used in win32...

    HDC is the Direct Context which is used in win32 to write anything to the screen ex. lines or GFX anything like that or simply managing Bitmaps OpenGL uses HDC
  14. Replies
    4
    Views
    2,125

    try this tutorial it should vcover this and...

    try this tutorial it should vcover this and future questions: http://code.glowdot.com/tutorials/win32tutorial.php
  15. Replies
    1
    Views
    1,496

    wow id like to find this out for myself (i too...

    wow id like to find this out for myself (i too use this compiler)
  16. Replies
    17
    Views
    11,709

    #include brings code froma header file into your...

    #include brings code froma header file into your application, eventually it combines into one big CPP or C file now if you included all these headers even ones you dont use you would have an extremly...
  17. Replies
    1
    Views
    2,242

    Calculating FPS for my OpenGL program

    how can i achieve this?
  18. Replies
    0
    Views
    1,185

    WM_TIMER probs (FPS Calculations)

    im havin probs with this bit of code:



    case WM_TIMER:
    {
    if (wParam == FPS_TIMER)
    {
    FPSCount = round(FPSCount * 1000/FPS_INTERVAL);
    ...
  19. Thread: int to string

    by C+noob
    Replies
    6
    Views
    1,243

    i need it for my game to calculate FPS so yes...

    i need it for my game to calculate FPS so yes thts why i asked :P
  20. Thread: Drag and drop

    by C+noob
    Replies
    2
    Views
    1,120

    www.catch22.net/tuts

    www.catch22.net/tuts
  21. Replies
    5
    Views
    3,395

    to link that go to linker settings and in the box...

    to link that go to linker settings and in the box type -lgdi32

    btw? why wud u use an older version of dev?
  22. Replies
    11
    Views
    8,738

    Try This ( i use this methoud for my games) ...

    Try This ( i use this methoud for my games)



    // Global Variables.
    bool keys[256];
    bool tabp; // check if tab is being pressed

    // were you have your ShowWindow() function plce this under it...
  23. Thread: int to string

    by C+noob
    Replies
    6
    Views
    1,243

    tnx and congrats to your 200th post :D

    tnx and congrats to your 200th post :D
  24. Replies
    20
    Views
    2,984

    no need to flame and yea allegro is a piece of...

    no need to flame and yea allegro is a piece of ........
  25. Replies
    10
    Views
    2,624

    its not difficult at all unless ur making it a...

    its not difficult at all unless ur making it a windows program otherwise console ........ like that is easy, best not to post your im ppl will spam u
Results 1 to 25 of 179
Page 1 of 8 1 2 3 4