CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: voidflux

Page 1 of 10 1 2 3 4

Search: Search took 0.09 seconds.

  1. Replies
    8
    Views
    1,155

    Re: Is there a way to cast a char to a string?

    when you say CString do you mean <string> or is there an actual library called CString?
  2. Replies
    8
    Views
    1,155

    Re: Is there a way to cast a char to a string?

    It seems I don't need to do that at all but the problem I'm having now is how do I delete the last character of this string without an overflow?

    I'm telling it to delete the o off hello, and its...
  3. Replies
    8
    Views
    1,155

    Is there a way to cast a char to a string?

    Hello everyone, I havn't been doing C++ in awhile but I need to freshen up fast!

    I'm doing the following,

    I'm trying to see if somthing in string2 is in string1,
    for example string2 is "eo"...
  4. Replies
    4
    Views
    861

    Re: Creating Server

    www.google.com
  5. Replies
    3
    Views
    871

    Re: I need advice!

    Thanks for the responces!

    PeeJAvery,

    I understand that, and I enjoy testing and debugging but I don't want my only job to be just Test.

    At IBM, there are so many people, there are 3 levels...
  6. Replies
    3
    Views
    871

    I need advice!

    Hello everyone.

    I'm still in school and currently co-oping with IBM and I have been for 7 months.

    I would really like a job where I'm coding all the time. The title of my current job is...
  7. Re: What makes somthing many-to-one relationship?

    Thanks guys! Very nice explanation :)
  8. What makes somthing many-to-one relationship?

    Hello everyone.

    I was confused on what makes a many-to-one relationship. For instance I modeled this .ddl db2 code in Rational Software Architect and its showing its a many to 1 relationship based...
  9. Replies
    15
    Views
    5,150

    Re: Help w/ c++ assignment...

    hah I remember doing this program years ago!
    Probably same book too,
    main_savitch_2C namespace.
  10. Replies
    3
    Views
    3,780

    Re: Unknown column, any ideas? syntax error.

    Thanks for the help again,

    I do like your method alot better it seems cleaner as well.

    I'm not sure if I'm logically connecting these tables correctly or not...
    This is what I think all the...
  11. Replies
    3
    Views
    3,780

    Unknown column, any ideas? syntax error.

    Hello everyone! having alittle issues here...



    mysql> SELECT
    -> ncim.entity.entityId, ncim.entity.mainNodeEntityId,
    -> ncim.entity.entityName, ncim.entity.domainMgrId,
    ->...
  12. Replies
    7
    Views
    1,649

    Re: basic INNER join question

    Awesome! worked like a charm! thanks!!
  13. Replies
    7
    Views
    1,649

    Re: basic INNER join question

    I posted 2 versions of the code, one a straight paste from this guy into a text file then in the mysql console and another version with the quotes, that were wrong like you said, i was thinking it...
  14. Replies
    7
    Views
    1,649

    Re: basic INNER join question

    Thanks so much that made it really clear but i'm not sure why i'm getting this error, the syntax looks correct....
    I'm using mysql 5.0



    mysql> SELECT
    -> *
    -> FROM ncim.entity AS...
  15. Replies
    7
    Views
    1,649

    basic INNER join question

    Hello everyone I'm having issues converting this statement into an inner join statement.

    The statement I wrote works fine but isn't up to date with standards where they prefer inner joins rather...
  16. Re: SQL confused on foreign key/references/constraints, newb question.

    Thanks for the responce! Now i'm lost on how I would get data from 4 of the tables.


    I'm trying to get all the data that link these tables together. They all have forgien keys in common so I...
  17. SQL confused on foreign key/references/constraints, newb question.

    Hello everyone,

    I'm confused on this part of the SQL code of the connects table below:


    CONSTRAINT `connects_entity_fk1` FOREIGN KEY (`aEndEntityId`) REFERENCES `entity` (`entityId`) ON...
  18. Replies
    3
    Views
    1,765

    Re: Issues deleting a value from a mutlimap.

    Thanks for the help! With your explanation I figured it out!

    My intial code was quite messed up I'm not sure what I was thinking. What I wanted it to do was once the database was already...
  19. Replies
    3
    Views
    1,765

    Issues deleting a value from a mutlimap.

    I'm having an issue deleting from a map where the KEY is the Serial data member and i'm trying to delete where the KEY is somthing and the PackID is equal to a value.

    here's me trying to do it:
    ...
  20. Replies
    1
    Views
    1,033

    Bytes sent and recieved from sockets?

    Hello everyone i'm using java and I'm having issues figuring out how many bytes are sent/recieved from a socket.

    I'm sending a string from a client socket to a server.

    I can't find any built in...
  21. Re: for some reason, after I send my first string via socket, the rest are cutt off?

    ahh i see, thanks for the clarification :)
  22. Re: for some reason, after I send my first string via socket, the rest are cutt off?

    n/m I got it, for some reason this check screwed it:


    if(in.read() == -1)
    {
    System.out.println("Connection closed by client.");

    break;
    }
  23. for some reason, after I send my first string via socket, the rest are cutt off?

    Hello everyone.

    For some reason when I send my first string through the socket, everything works fine. But after that Its cutting off the first 2 or 3 characters of the string and I have no idea...
  24. Advice on how I should approach this, newbie question

    Hello everyone,

    I'm new to network programming and I was just wondering if I could get some clarification and some advice on networking.


    Right now I have a serversocket program that accepts a...
  25. Replies
    4
    Views
    891

    Re: Size of object?

    Thanks guys!
Results 1 to 25 of 237
Page 1 of 10 1 2 3 4





Click Here to Expand Forum to Full Width

Featured