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

Search:

Type: Posts; User: jd53887

Search: Search took 0.03 seconds.

  1. Re: Matching Query Results inside another Query Results

    I solved it. All I need was a night of sleep and breakfast.

    Code:
    SELECT B.BID
    FROM TableA A, TableB B
    WHERE A.AID = B.BID AND A.A1 = 1
    HAVING COUNT(B.AID) = (
    SELECT FROM COUNT(A.AID)
    FROM...
  2. Matching Query Results inside another Query Results

    TableA(AID,A1)
    TableB(BID, AID)

    SELECT AID FROM TABLEA WHERE A1 = 1;

    SELECT B.BID, A.AID FROM AID A, BID B WHERE A.AID = B.BID AND A1 = 1;

    The first code above will give a list. (Ex....
  3. JAVA Quick $10 paypal, need it within the hour

    delete please
  4. Why can relational operators be used for char variables but not String objects?

    Why can relational operators be used for char variables but not String objects?
  5. Re: I finished my project, but I have two bugs, help please

    ahhh... ur a genius.

    i just typed it in, and it worked perfectly.

    they should have a rep button.
  6. Re: I finished my project, but I have two bugs, help please

    ok obviously, something is filling in the first cin of hte lab1.cpp, so I decided I'm just going to insert another cin to overwrite that first cin that gets skipped.

    i didnt solve the problem, i...
  7. Re: I finished my project, but I have two bugs, help please

    these are multiples files taken from the "Header Files" and the "Source Files"

    the program wont work if I take some of the headers out, even the repeated ones.
  8. Re: I finished my project, but I have two bugs, help please

    a lot of the headers seems to be repeated... should I delete some of them?

    Edit: ok so I fixed the exit problem by using "exit(1)"

    so... why is it skipping my first cin when my prelab is...
  9. I finished my project, but I have two bugs, help please

    Goal of project: create a menu system so I can intergrate all current and future labs

    problem: my prelab 0, which ask for basic user inputs, and relaying that information, is skipping the first...
  10. Replies
    4
    Views
    903

    Re: Taking my HW to the next level.

    char *strchr( const char *s, int c )

    I'm thinking I use that to search for the character and use a for loop to output the rest of hte string base on the position of the character in the string.
    ...
  11. Replies
    4
    Views
    903

    Taking my HW to the next level.

    Hey, I need to do some simple C++ programming for my first lab assignment. It's relatively easy. I just ask for their name, email, and phone number. lots of cin and couts. yay.
    now what I want to do...
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured