Search:

Type: Posts; User: BuezaWebDev

Search: Search took 0.01 seconds.

  1. Would any of these packages help me out then? ...

    Would any of these packages help me out then?

    http://www.devpaks.org/list.php?category=GUI
  2. How to move a sprite around inside a windows GUI

    Hey guys,

    I was wondering how to go about making a sprite move from position X to Y with a mouse click on a windows GUI?

    I just want to know what kind of API's to use....because I have no idea....
  3. Replies
    6
    Views
    1,447

    I can't find any description documentation on how...

    I can't find any description documentation on how to install it. Even the ReadMe doesn't explain the installation process very well.

    Could anyone please help me out? I googled it already and I...
  4. Replies
    16
    Views
    5,552

    Ah man--this is what I get for joking around....

    Ah man--this is what I get for joking around. What's sad is people didn't think it was a joke even when I made sure it would look like a joke--> I put a ;) smiley.
  5. Replies
    13
    Views
    3,368

    Where do you find previews of Longhorn??

    Where do you find previews of Longhorn??
  6. Thread: ini files

    by BuezaWebDev
    Replies
    6
    Views
    1,946

    Ohh, cool. And INI files are basically just...

    Ohh, cool.

    And INI files are basically just config files that the C program uses?

    Sorry if I sound stupid--I don't know anything about C but I'm learning because I want to make games :D
  7. Replies
    4
    Views
    1,639

    Interesting, would it be possible to validate the...

    Interesting, would it be possible to validate the input as well? Like...what I'm trying to do here:




    while ( fgets(buffer, sizeof(buffer), configFile) != NULL ) {
    for(i = 0; buffer[i] !=...
  8. Thread: ini files

    by BuezaWebDev
    Replies
    6
    Views
    1,946

    Hey there, I just started C and I'm wanting to...

    Hey there,

    I just started C and I'm wanting to learn a lot more :D

    Just a question about this topic: I found this INI file on C: and say for example it says this:



    [WoS]
    name=Well of...
  9. Replies
    4
    Views
    1,639

    Ah, thank you! It worked! But for some reason...

    Ah, thank you! It worked!

    But for some reason it's not reading the whole config file. My first post had different code than what I have now:

    In my config file:


    italic
    bold 0;31 # red...
  10. Replies
    4
    Views
    1,639

    Quick problem about fscanf

    Hey guys,

    I'm trying to scan a file that contains:


    john smithenson #John
    andrea johnson #Andrea
    michael smith #Michael
  11. Replies
    16
    Views
    5,552

    Visio is free ;) If you get what I mean.

    Visio is free ;) If you get what I mean.
  12. My Linksys router keeps locking my connection!

    My linksys router keeps locking my connection after I download too much. :|

    Should I return it? I've already done the following things:

    1) Called my ISP to ask if there's a stable connection...
  13. Replies
    8
    Views
    1,553

    I got my domain registered with GoDaddy...it was...

    I got my domain registered with GoDaddy...it was about 2 years ago. I've had absolutely no problems with them. :)

    Big ups to GoDaddy.com :D

    As for a web host...try and get hosted by someone...
  14. Replies
    20
    Views
    90,121

    Well, the program is supposed to read off an html...

    Well, the program is supposed to read off an html file...



    <bold>Instructions:</bold> This is a closed-book exam. There are 6
    questions with a total of 25 marks. Answer <italic>all</italic>...
  15. Replies
    4
    Views
    1,361

    I'm trying to understand what his code is doing...

    I'm trying to understand what his code is doing since I'm a total newb at C.

    So basically, DECK is a structure, right? and DECK is kind of like an object in Java?
  16. Replies
    20
    Views
    90,121

    I was trying to find a way to find a way to find...

    I was trying to find a way to find a way to find the tags within the buffer, but I can't figure out the logic.

    I tried doing this:



    int main(void) {

    FILE *fp;
    tags tagList[NTAGS];
  17. Replies
    20
    Views
    90,121

    I don't understand....but I need to get the last...

    I don't understand....but I need to get the last element of the array so I can validate it.

    My program has to do something like the HTML engine...however, it has to display an error if the tags...
  18. Replies
    20
    Views
    90,121

    In my int main(void), I have variables that...

    In my int main(void), I have variables that store the "top" integer.
  19. Replies
    16
    Views
    5,552

    Microsoft Visio! Works like a charm--also very...

    Microsoft Visio!

    Works like a charm--also very easy to understand.
  20. Hey guys, I tried to follow your example but with...

    Hey guys, I tried to follow your example but with regards to something else.



    #include <stdio.h>
    #include <ctype.h>
    #include <stdlib.h>
    #include <string.h>

    #ifndef BUFSIZE
  21. Replies
    20
    Views
    90,121

    Yay, l0cke! Thank you so much! So basically,...

    Yay, l0cke!

    Thank you so much! So basically, the loop will keep iterating until the end (once it hits the null character), and then integer i will be set to the last index number?

    I would have...
  22. Replies
    20
    Views
    90,121

    Oops, sorry. It's an integer. int stack[10];

    Oops, sorry. It's an integer.

    int stack[10];
  23. Replies
    4
    Views
    7,166

    Hehe, that was fun trying to install GCC. I tried...

    Hehe, that was fun trying to install GCC. I tried to install it so many times because it wouldn't download a few of the files. Finally, I realized that, yes, you had to click the "GCC compiler" check...
  24. Replies
    20
    Views
    90,121

    How to return the last element of an array?

    Hi guys,

    I'm trying to create a function that will return the last element of an array. I am working in ANSI C.



    char *top(void) {
    int i;
    /* Check for the last element */
    ...
Results 1 to 24 of 24