Search:

Type: Posts; User: willc0de4food

Page 1 of 16 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    1,184

    Good call :] Thanks, Salem.

    Good call :] Thanks, Salem.
  2. Replies
    2
    Views
    1,184

    Help with cURL segfault

    Hello. I've mashed together a program that cURL's Google, attempting to get a JSON response. Everything seems to be going fine, until amidst the SSL stuff, it segfaults. Can anyone see why this...
  3. Replies
    8
    Views
    3,683

    well this is rather...screwy. i modified the part...

    well this is rather...screwy. i modified the part of the code that reads in the team names from the registry to this:

    lRet = RegCreateKeyEx(HKEY_LOCAL_MACHINE, "Software\\ShibbyInc", 0,...
  4. Replies
    8
    Views
    3,683

    bah.. that stinks. i changed the code for the...

    bah.. that stinks. i changed the code for the strcat to this:

    strcat(teams, " ");
    strcat(teams, buf);
    len = strlen(teams);
    teams[len] = 0;
    ++len;
    and it still does the same thing. this makes...
  5. Replies
    8
    Views
    3,683

    It's not in this function :] but like I said,...

    It's not in this function :] but like I said, that part of the code works. I can run the program, enter some text in the dialog box, open up regedit and voila - they're there. If you'd really like to...
  6. Replies
    8
    Views
    3,683

    RegQueryValueEx Doesn't return data

    Hello.. I'm writing a Euchre program because I'm bored >.< and I let the player name the teams which exist so its easier to display the scores. So when the program starts, the user inputs two team...
  7. Replies
    2
    Views
    921

    that looks PERFECT. i'll check it out and report...

    that looks PERFECT. i'll check it out and report back.. thanks a million!


    yup, thats exactly what i needed. thanks again
  8. Replies
    2
    Views
    921

    record and reenact mouse clicks

    hey.. i'd like to write a program so that after ghosting a computer, i can automate the process of activating certain software. from what know, the software comes up at the same place on the screen...
  9. Replies
    8
    Views
    3,499

    you want to communicate with a user...while...

    you want to communicate with a user...while calling what??
    do you mean you want to get input from the user? the argc, argv parameters are if you want to process command line arguments so that when...
  10. Replies
    9
    Views
    2,949

    yess.. :-D i finally have it working how i'd...

    yess.. :-D i finally have it working how i'd like.
    and just for reference, my purpose for the program is so that i can specify an html file to read in, have the program find the first td of each...
  11. Replies
    9
    Views
    2,949

    the only reason i was using the system pause was...

    the only reason i was using the system pause was so that i could see for myself where the error was in my program. the final product would never have such a function.

    thank you for the idea, i'll...
  12. Replies
    9
    Views
    2,949

    program skips over code

    so i'm having this problem, where my program does not execute correctly. i'm not entirely positive what i'm doing wrong, but i wrote the program at like 5am when i was tired as a dog so that could...
  13. oooh yay :] the code in this post...

    oooh yay :]

    the code in this post worked for the static controls
  14. Background "skin" wont apply to my program

    So when i use the AnimateWindow function when opening the program, the background image of the main program doesn't get displayed until the user has some interaction with the program, such as...
  15. Replies
    6
    Views
    2,581

    http://www.microsoft.com/windowsvista/getready/pre...

    http://www.microsoft.com/windowsvista/getready/preview.mspx
    download it ;)



    ooooh...heh. yea. i was trying to convince myself that they were the same thing or you only needed one or the other....
  16. Replies
    6
    Views
    2,581

    have you tried the process or searched the topic...

    have you tried the process or searched the topic about vista?

    ..wow..i need to pay more attention to what i'm doing. anyways..

    for me its erroring at INITCOMMONCONTROLSEX iccx; i have my winver...
  17. Replies
    7
    Views
    1,111

    heh..sweet. it compiles now :] time for some...

    heh..sweet.
    it compiles now :]

    time for some testing..
  18. Replies
    7
    Views
    1,111

    so uh...idk if i'm bad at this game or what, but...

    so uh...idk if i'm bad at this game or what, but i get errors.. lol


    struct player *plyr;
    struct player pone = { {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1},...
  19. Replies
    7
    Views
    1,111

    struct + pointer help..

    hmm..so i have this struct where i want to hold some user data and a value so i know if a control is enabled or disabled. then i want to have a pointer, so that i can cut down on code when changing...
  20. Replies
    9
    Views
    2,902

    hahaha. i think i get it now. i'll have to test...

    hahaha. i think i get it now.
    i'll have to test it out later...
    thanks :]


    but i dont know if the conversion from .c to .cpp is going to go over too well for my program... =\
  21. Replies
    9
    Views
    2,902

    mm...so how do i know when wm_timer gets its...

    mm...so how do i know when wm_timer gets its turn? something like
    if (WM_TIMER)
    {
    // CODE
    }
    ? i dont imagine thatd be a good way of doing things but i've been wrong in the past. lol
  22. Replies
    9
    Views
    2,902

    mm.....so would i add code for processing to the...

    mm.....so would i add code for processing to the wm_timer case? or leave the code in the function i have it in, and then when the wm_timer case gets sent a message have the struct there with the...
  23. Replies
    9
    Views
    2,902

    i like the way you think... but i tried making...

    i like the way you think...
    but i tried making the process a seperate thread, however with what i have currently when i try to execute the seperate thread, i get an access violation.
    i believe the...
  24. Replies
    9
    Views
    2,902

    too much thinking?

    so my program likes to blank out when it has too much thinking to do..
    http://img.photobucket.com/albums/v48/anarchy85/TooMuchThinking.jpg

    the point where it does this is when its searching...
  25. oooooooohh yeeeaaaa............. :sigh: lol ...

    oooooooohh yeeeaaaa.............
    :sigh: lol

    thanks :-D

    so uh...any good tutorials on tooltips ^_^
Results 1 to 25 of 388
Page 1 of 16 1 2 3 4