Search:

Type: Posts; User: Borommakot

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,518

    Loading a Website

    Is there a way to open a website from within a console program. Not display the website directly in the console, but like open internet explorer and go to a website there.
  2. Thread: Char Arrays

    by Borommakot
    Replies
    17
    Views
    2,128

    Ok, after spending most the night on this, I...

    Ok, after spending most the night on this, I finally got it to work almost how it is supposed to, just one more problem.




    void changename()
    {
    for(i = 0; i < 501; i++)
    {
    szEdit[i]...
  3. Thread: Char Arrays

    by Borommakot
    Replies
    17
    Views
    2,128

    Ok, I did just that and I found out what is...

    Ok, I did just that and I found out what is probably the problem. This is all the code I used and the illegal error still came up.




    void changename()
    {

    i = 0;
    ...
  4. Thread: Char Arrays

    by Borommakot
    Replies
    17
    Views
    2,128

    Heh, thanks for pointing that out, but that still...

    Heh, thanks for pointing that out, but that still does not fix the illegal error problem. Could it have something to do with my compiler? I am using the newest Bloodshed Dev C++. And I just tried...
  5. Thread: Char Arrays

    by Borommakot
    Replies
    17
    Views
    2,128

    I made the changes but still it gives the error,...

    I made the changes but still it gives the error, unless again I am missing something. Here is what it looks like with all the changes:




    void changename()
    {
    fin.open(profilename);
    ...
  6. Thread: Char Arrays

    by Borommakot
    Replies
    17
    Views
    2,128

    Oh ok, I see now, Ill try that and see if that...

    Oh ok, I see now, Ill try that and see if that works, Thanks!
  7. Thread: Char Arrays

    by Borommakot
    Replies
    17
    Views
    2,128

    I am incrementing "i" so that each time the loop...

    I am incrementing "i" so that each time the loop repeats it will place the next line into the next slot of the array. What I am trying to do is make it so a person can edit certain information in a...
  8. Thread: Char Arrays

    by Borommakot
    Replies
    17
    Views
    2,128

    Ok I did that but the error still exists. I did...

    Ok I did that but the error still exists. I did some tests and found that the line that it stopped at was the if statement:




    if (stricmp(fcontact, szEdit[i]) == 0)



    I am not sure if...
  9. Thread: Char Arrays

    by Borommakot
    Replies
    17
    Views
    2,128

    Right, let me post all my variables, and yes,...

    Right, let me post all my variables, and yes, they are all global. :(




    char search[256]
    char fcontact[256] = "Contact: ";
    int input;

    char profilename[100];
  10. Thread: Char Arrays

    by Borommakot
    Replies
    17
    Views
    2,128

    Char Arrays

    I have been working with a program and am almost finished. I am at the last few parts which of course are going to give me the most trouble.

    In this part of the code, the user enters a name in...
Results 1 to 10 of 10