Search:

Type: Posts; User: bliss

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,508

    For anyone else who cares to know: ...

    For anyone else who cares to know:

    WritePrivateProfileString() and GetPrivateProfileString() are two functions a friend suggested to look up. That produced a lot of search results and answered my...
  2. Replies
    5
    Views
    1,508

    Umm.... okay. I got links to source code that...

    Umm.... okay. I got links to source code that when compiled, produces a slew of errors. I put all of the header files in the right directory, tried compiling it, nope...

    All I get from searching...
  3. Replies
    5
    Views
    1,508

    So that's what I was doing wrong. Thanks. ...

    So that's what I was doing wrong.

    Thanks.

    EDIT: Actually, I took away the quotes and it still worked. I dunno, maybe it was the lack of sleep, oh well, still.... thanks.
  4. Replies
    5
    Views
    1,508

    Searching in a file

    I'm wanting to create a C++ program that uses kind of a config.ini file.

    Basically I'm wanting to have my program search through a file for [choice1] and return it's value, "thisischoiceone", in a...
  5. Replies
    10
    Views
    2,835

    You're a life saver! I was looking for something...

    You're a life saver! I was looking for something just like this.

    Thanx
  6. Thread: File I/O

    by bliss
    Replies
    11
    Views
    1,750

    I wish I could've pulled that out of what you...

    I wish I could've pulled that out of what you posted. A lot of that didn't make a lot of sense, ah well, I'm learnin' at least.
  7. Thread: File I/O

    by bliss
    Replies
    11
    Views
    1,750

    I appreciate the help. What you guys have is a...

    I appreciate the help. What you guys have is a little hard for me to decipher. (I am still very new to programming.) I think what I was looking for was something like this:

    void filename(){
    ...
  8. Thread: File I/O

    by bliss
    Replies
    11
    Views
    1,750

    File I/O

    Heh, stumped by something easy again.

    What's the C++ equivilant of the DOS command "type"?

    I know some basic file i/o but this is a little beyond me.

    Allow me to elaborate a little:

    I've...
  9. Replies
    2
    Views
    2,134

    Duh, I knew that, I was testing you see! :P ...

    Duh, I knew that, I was testing you see! :P

    (In reality, I missed the FAQ on the main page and was looking through the message board's FAQ.)
  10. Replies
    2
    Views
    2,134

    Simple Timer, Call external program,

    I've taken a few questions that have me stumped and put them into one thread.

    1) I'm looking to make a simple timer for a program I'm writing: The program displays a character string next to a...
  11. Replies
    6
    Views
    2,095

    Made sense and answered my query, thanks.

    Made sense and answered my query, thanks.
  12. Replies
    6
    Views
    2,095

    Supposed to return float but doesn't.

    #include <iostream>

    using namespace std;

    float dividethesenumbers(int x, int y){
    return x/y;
    }

    int main()
    {
  13. Replies
    15
    Views
    2,449

    I know it's an older post but I found that it was...

    I know it's an older post but I found that it was VERY helpful in the fact that it was broken down and made understandable, especially to me as a newbie to programming.

    /me shows his gratitude.
    :)
  14. Replies
    2
    Views
    1,220

    "Doh!!" Makes sense now, thanks a bunch.

    "Doh!!"

    Makes sense now, thanks a bunch.
  15. Replies
    2
    Views
    1,220

    Stuck again: Arrays

    I'm stuck, I can find how to change the value in a single-dimension array but not a multi-dimensional one. :(

    This, I know how to do:


    example1[2] = 1;



    This, I can't figure out:
Results 1 to 15 of 15