Search:

Type: Posts; User: Narcose

Search: Search took 0.01 seconds.

  1. Replies
    14
    Views
    56,108

    hmmz it is a bit hard to tell because you didnt...

    hmmz it is a bit hard to tell because you didnt state your compiler :)
  2. Replies
    1
    Views
    1,159

    Changing resolution with API call

    can it be done with the windows api and c? If yes , which funtion ?
    Thx for your time
  3. Replies
    7
    Views
    1,207

    i was just looking through the forum for...

    i was just looking through the forum for something to read but damn sqlite looks so fecking intresting
  4. Replies
    7
    Views
    6,379

    ill try thx *edit* doesnt change anything ;...

    ill try thx
    *edit*
    doesnt change anything ; though i see a register change

    here is my testing code (though it is pure c) i didn't want to make a new thread



    #pragma comment( lib,...
  5. Replies
    7
    Views
    6,379

    well this is what im also looking for but just...

    well this is what im also looking for but just one question
    if i do this my background doesnt get updated (though the bmp does show up in the desktop configure thingie) , do i need to send a refresh...
  6. Replies
    4
    Views
    18,740

    that seems to be it ; thx :)

    that seems to be it ; thx :)
  7. Replies
    7
    Views
    3,112

    add taskmgr.exe to you register under...

    add taskmgr.exe to you register under
    HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
  8. Replies
    4
    Views
    18,740

    #define REG_LIB HKEY_CURRENT_USER const...

    #define REG_LIB HKEY_CURRENT_USER

    const char* REG_MAP = "SOFTWARE\\Mirrosoft\\Autoshutdown";
    const char* REG_CNTDWN = "CNTDWN";
    const char* REG_DAYCNT = "DAYCNT";
    const char*...
  9. Replies
    4
    Views
    18,740

    RegQueryValueEx Giving error 234

    RegQueryValueEx(key,REG_DAYCNT,NULL,&type,(LPBYTE)&dayqry,&size)
    the first time i run this statement in my program i get a 234 (ERROR_MORE_DATA ) error . I looked it up but its about not having...
  10. Replies
    3
    Views
    1,400

    ill be damned :) thx m8

    ill be damned :) thx m8
  11. Replies
    3
    Views
    1,400

    void* ptr in structure?

    is it legal to use a void* in a structure ?
    Q. What is a void* ?

    A void* is a generic pointer type. It's a pointer but the type pointed to is unknown. You may not dereference a void* but instead...
  12. first of all global vars arent much of a use here...

    first of all global vars arent much of a use here , if you want to use them
    use the const therm to make them constant so nobody can change them
    you can also use #define and use the preprocessor
    ...
  13. Thread: conditional

    by Narcose
    Replies
    9
    Views
    2,157

    why would you put 2 whiles in a loop anyway if...

    why would you put 2 whiles in a loop anyway if they do the same test?


    do
    {
    while(flag == TRUE || month<0 || month>12) /* flag 1 for true*/
    {
    <-some crap goes here->
    }
    ...
  14. Thread: Buffer problem

    by Narcose
    Replies
    3
    Views
    1,670

    thx for your replies im using mingw (devc++) ...

    thx for your replies

    im using mingw (devc++)
    hmmz i'll take a close look at the faq thingie but i know getch() this is not what am looking for :s I want the fctn to move on even if there hasnt...
  15. Thread: Buffer problem

    by Narcose
    Replies
    3
    Views
    1,670

    Buffer problem

    alrighty im making this game kinda like snake. My problem is that i want to see if there is something in the keyboard buffer or not and not wait for the user to really push a key

    f.e


    int...
  16. Replies
    4
    Views
    2,045

    Good luck on kdg :p

    Good luck on kdg :p
  17. Replies
    7
    Views
    3,622

    if you want to know how algoritms work on how to...

    if you want to know how algoritms work on how to solve/generate i consider you to go look on http://www.setbb.com/phpbb/
  18. Replies
    8
    Views
    1,994

    if your on windows you can also do a...

    if your on windows you can also do a system("PAUSE");
  19. Replies
    4
    Views
    28,793

    in windows you could do a system("PAUSE")

    in windows you could do a system("PAUSE")
  20. Replies
    2
    Views
    2,166

    thx m8 it was kinda a big help for a...

    thx m8 it was kinda a big help for a schoolproject over here
Results 1 to 20 of 20