Search:

Type: Posts; User: trenzterra

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Thread: Tokens?

    by trenzterra
    Replies
    12
    Views
    1,419

    Thanks. So I guess I'll put the read line stuff...

    Thanks. So I guess I'll put the read line stuff inside a function...

    Also, str2 does not seem to work. It outputs some funny ASCII character instead of "Notepad". Why is this so?
  2. Thread: Tokens?

    by trenzterra
    Replies
    12
    Views
    1,419

    I tried the example and it returns a Windows...

    I tried the example and it returns a Windows error... Using pointers solved the problem, but now I can't get rid of the ='s
  3. Thread: Tokens?

    by trenzterra
    Replies
    12
    Views
    1,419

    What do you mean?

    What do you mean?
  4. Thread: Tokens?

    by trenzterra
    Replies
    12
    Views
    1,419

    But I wish to specify which line to read, eg read...

    But I wish to specify which line to read, eg read line 3... Is this possible?
  5. Thread: Tokens?

    by trenzterra
    Replies
    12
    Views
    1,419

    I'm quite a noob to this, and the MSDN library is...

    I'm quite a noob to this, and the MSDN library is almost like Greek to me... can you give me a demonstration?
  6. Thread: Tokens?

    by trenzterra
    Replies
    12
    Views
    1,419

    Thanks. I am not planning to port it, so it'll...

    Thanks. I am not planning to port it, so it'll work I guess...
  7. Thread: Tokens?

    by trenzterra
    Replies
    12
    Views
    1,419

    Tokens?

    I am making a simple DOS program to launch programs...

    So to make it user configurable there's a text file where the user can add and delete stuff.



    is what's in my text file.

    I have two...
  8. Replies
    14
    Views
    2,305

    Thanks for that link... I am trying it out....

    Thanks for that link... I am trying it out. However, why is the output file so big?
  9. Replies
    13
    Views
    2,038

    Sorry for hijacking, but is there a replacement...

    Sorry for hijacking, but is there a replacement for goto loops?



    if (opt == "1")
    {
    long int a = 1;
    char* newchar;
    int z;
    ...
  10. Replies
    14
    Views
    2,305

    May I know where can I get the resource.h file?...

    May I know where can I get the resource.h file? My resource editor only creates the RC files.
  11. Replies
    14
    Views
    2,305

    I found a resource editor, but it seems that the...

    I found a resource editor, but it seems that the tutorials from WinProg.net doesn;'t work with Dev-C++... I get lots of syntax errors in the resource file.

    Is there any tutorial that uses Dev-C to...
  12. Replies
    14
    Views
    2,305

    I use Dev-C++ right now, but I can't find any...

    I use Dev-C++ right now, but I can't find any resource editor
  13. Replies
    14
    Views
    2,305

    What about IDEs with resource editor? Is there...

    What about IDEs with resource editor? Is there any good one that's free?
  14. Replies
    14
    Views
    2,305

    Learning Windows programming

    Hi, I wish to port my Win32 Console app to a Win32 GUI app. However, I'm a complete noob at this...

    Is there a free compiler out there with a resource editor to aid me?

    Also, is there any good,...
  15. Replies
    13
    Views
    8,718

    Thank you guys.. it works!

    Thank you guys.. it works!
  16. Replies
    13
    Views
    8,718

    So there is no way to get around this?

    So there is no way to get around this?
  17. Replies
    13
    Views
    8,718

    if (exp == "y") { ...

    if (exp == "y")
    {
    time(&timz);
    ofstream exp("export.txt", ios::app);
    ...
  18. Replies
    13
    Views
    8,718

    Stop ctime from breaking line?

    When I use ctime and time, it always breaks a line after it outputs... How do I change this behaviour so that it doesn't break line?
  19. Replies
    5
    Views
    1,592

    I tried using this: char *...

    I tried using this:



    char * conz;
    cin>>conz;
    int z;
    z = atoi(conz);
    if (isalpha(z) != 0)
    {
  20. Replies
    5
    Views
    1,592

    I tried: int z; ...

    I tried:



    int z;
    cin>>z;
    if (isalpha(z))
    {
    cout<<"No alphabets allowed.\n\n";
    cin.get();
  21. Replies
    5
    Views
    1,592

    Detect alphabets in integer?

    I am making a console benchmark program, so I need the user to input an integer. However, I want to fool-proof it so the program will detect if an alphabet is being entered. Is there a way to do so?...
  22. Mm ok, so it's a 32-bit program?

    Mm ok, so it's a 32-bit program?
  23. Will performance be greatly hit? Because the...

    Will performance be greatly hit? Because the program I am writing is a benchmark program
  24. So my console-type programs will still work in XP...

    So my console-type programs will still work in XP x64? I'm too lazy to master the Win32 API yet.
  25. Will console programs still work in WinXP x64?

    I heard it doesn't support DOS anymore. Will this mean that all console programs will stop functioning, eg those cout<<"hello world" stuff?
Results 1 to 25 of 43
Page 1 of 2 1 2