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

Search:

Type: Posts; User: C19H28O2

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    6
    Views
    1,398

    Re: Graphical navigation bar

    Sorry, I meant once linked menu's have been cut out and placed in their own image file, would you use divs to reconstruct the image on the site?
  2. Replies
    6
    Views
    1,398

    Re: Graphical navigation bar

    Thanks for the reply.

    I did figure I would need him to slice the image.

    Once it has been cut apart, do i stick the parts in divs? is that what you would recommend?
  3. Replies
    6
    Views
    1,398

    Graphical navigation bar

    Guys,

    I have a navigation bar that was built in photoshop, but i'm a bit stuck on how to get the add the links behind the graphics

    This is the image...
    ...
  4. ODBC: Object 'ua_customer_valuedb.ref_summary_outputs' does not exist

    I have changed my code to connect to an odbc database. The database returns its own errors for example if I doesn't recognise the sql it it will display

    "Warning: odbc_exec()...
  5. Replies
    2
    Views
    845

    Re: Only 1 row returned?

    Solved!

    while($row = mysql_fetch_row($result)) {

    for($i=0; $i < $num_cols; $i++) {
    echo "<td class='body'>".$row[$i]."</td>";
    }
    echo "</tr>";
    }
  6. Replies
    2
    Views
    845

    Only 1 row returned?

    Hi

    I have a question regarding my code below

    1. I know I have 7 rows in the authors table but only 1 is being display.... (refers to the for($i=0; $i < $num_rows; $i++) {... line)

    Thanks
  7. Replies
    0
    Views
    469

    Refresh datagrid from frame 1

    Hi,

    I have 2 frames on a webform, header frame and main frame - Is it possible to change the values in a datagrid from the header frame, i.e. if a button is clicked on the header from the datagrid...
  8. Replies
    1
    Views
    504

    calling javascript from 2 webforms

    Hi,

    Is it possible to call a javascript function with 2 webforms.

    i.e. i have a function in bookings.aspx that when called from itself will insert a value into a textbox. So i decided to...
  9. Replies
    14
    Views
    3,064

    Re: stringstream conversion

    Actually,

    I just looked on Bjarne's site and this is how he has put it in his FAQ

    string itos(int i) // convert int to string
    {
    stringstream s;
    s << i;
    return s.str();
    }
  10. Replies
    14
    Views
    3,064

    Re: stringstream conversion

    Hi,

    I'll definitely see what I can find out. Thanks.

    On the same topic, do you know if the body that looks after the c++ standard will ever implement basic type conversions? Or is it the...
  11. Replies
    14
    Views
    3,064

    Re: stringstream conversion

    [QUOTE=exterminator]


    bool isInteger(std::string input_){
    return (std::find_if(input_.begin(), input_.end(), std::not1(std::ptr_fun(::isdigit)))==input_.end());
    }

    I'm not too sure how the...
  12. Replies
    14
    Views
    3,064

    Re: stringstream conversion

    Hey exterminator,

    apologies i didn't realise that wouldn't work.....

    I did have a look at both of your approaches however I do not understand the syntax of them, and its all well and good...
  13. Replies
    6
    Views
    755

    Re: istream& problems?

    lol, woops,

    was missing using std::istream;!!!!

    Thanks

    Michael
  14. Replies
    14
    Views
    3,064

    Re: stringstream conversion

    This is what i came up with...



    bool isNumeric(vector<string>& s) {
    for(vector<string>::iterator i = s.begin(); i != s.end(); i++) {
    stringstream s;
    s.clear();
    s << *i;
    char r;
  15. Replies
    6
    Views
    755

    istream& problems?

    Hi,

    Can anyone tell me whats wrong with this?



    #include <iostream>

    istream& isNumeric(istream& in);
  16. Replies
    14
    Views
    3,064

    stringstream conversion

    Hi,

    Does anyone know why the if (isdigit(r))... part of this function is not evaluating to true???




    void isNumeric(vector<string>& s) {
    for(vector<string>::iterator i = s.begin(); i !=...
  17. Replies
    3
    Views
    9,470

    Re: istream& - can anyone explain?

    Thanks...

    Anyone else?
  18. Replies
    3
    Views
    9,470

    istream& - can anyone explain?

    Hi,

    can anyone explain what this function header does



    istream& read_hw(istream& in, vector<double>& hw)
    {....}
  19. Replies
    1
    Views
    1,102

    Help with TICPP Chapter 3 Q3

    Guys,

    I'm working my way through Thinking in c++, I'm on chapter 3 question 3
    "Write a program that uses a while loop to read words from standard input (cin) into a string. This is an...
  20. Replies
    13
    Views
    1,315

    Passing Vectors by reference

    Hi,

    I have this code....



    #include <string>
    #include <iostream>
    #include <fstream>
    #include <vector>
  21. Replies
    3
    Views
    635

    Re: Enter key help

    Hey,

    I just need a few examples of the enter key bit.

    Thanks

    C19
  22. Replies
    3
    Views
    635

    Enter key help

    Guys,

    I have some text that I am printing to the screen however i would like each line displayed by hitting the enter key.

    Cheers

    C19
  23. Replies
    6
    Views
    1,059

    Poll: Re: Poll: C or C++?

    SuperKoko,

    Thanks for the input, I've a "pure c++" book (Accelerated C++) is there any other excellent modern C++ books that teach pure c++ without the c background etc?

    Thanks

    C19
  24. Replies
    6
    Views
    1,059

    Poll: Poll: C or C++?

    Hi,

    I'm having a hard time figuring out which would be best to learn, I'm thinking towards C as I want to program on UNIX but would like more peoples opinion on the matter.

    Cheers

    C19
  25. Replies
    6
    Views
    1,034

    Re: Is there an easy way to create forms?

    You should definitely try Matisse, its a drag and drop environment very VB like.... Not sure why its take so long someon to think of this http://www.netbeans.org/kb/articles/matisse.html if you don't...
Results 1 to 25 of 37
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured