Search:

Type: Posts; User: emilyh

Search: Search took 0.01 seconds.

  1. Replies
    25
    Views
    24,313

    Thanks for the help. :)

    Thanks for the help. :)
  2. Replies
    25
    Views
    24,313

    Thanks. I was trying to do an example from a...

    Thanks. I was trying to do an example from a book and replace their text string with a variable. It prints out, but it's all on one line, LOL. I was thinking I'd have to loop, but my VC++ MSDN...
  3. Replies
    25
    Views
    24,313

    Hi, I am trying to get a multi-line string...

    Hi,

    I am trying to get a multi-line string (m_Poem) to print out -- how do you get the Textout to acknowledge the carriage returns, instead of printing them out as little boxes? Or is there a...
  4. Thanks! This seems to work now. void...

    Thanks! This seems to work now.

    void CProject2eView::OnEdit()
    {
    m_pSet->Edit();

    CString amt;

    CEdit* pPayto = (CEdit*)GetDlgItem(IDC_PAYTO);
    CEdit* pAmount...
  5. pAmount is not a char or string, it's a double. ...

    pAmount is not a char or string, it's a double. That's why I'm having problems with it. I need a good type cast or conversion method that works, preferably by next week when the project is due. ...
  6. How to get double data to work with edit boxes?

    I'm working on a program that connects to a Microsoft Access database, and am about 2/3 of the way done. It will edit string data from the text boxes, but not numeric. I have tried numerous...
  7. Thread: Delete Item

    by emilyh
    Replies
    10
    Views
    2,012

    No Problem. :) Thanks.

    No Problem. :) Thanks.
  8. Replies
    11
    Views
    1,615

    Planet Source code,...

    Planet Source code, http://www.planet-source-code.com, has some good VB resources, C & C++, and web programming. I go there sometimes to look for code samples. Visual Basic does have its uses,...
  9. Thread: Delete Item

    by emilyh
    Replies
    10
    Views
    2,012

    I did get it to work eventually. Thanks. Yes,...

    I did get it to work eventually. Thanks.

    Yes, I'm a female programming student. What's wrong with that? My GPA is 3.8, I'm a couple of months away from finishing an Associate's in C...
  10. Thread: Delete Item

    by emilyh
    Replies
    10
    Views
    2,012

    I just tried this:...

    I just tried this:
    m_Orders.DeleteString(SendMessage(m_Orders.GetCurSel()));

    and it only deletes the string above the one that is selected.
  11. Thread: Delete Item

    by emilyh
    Replies
    10
    Views
    2,012

    Delete Item

    Please help! It's part of my assignment to delete a string from a list box when the string is selected and a button is clicked, but the darned textbook does not give an example of this! The...
  12. Replies
    7
    Views
    2,843

    The project required that each item be added to a...

    The project required that each item be added to a list box on the main dialogue screen. I can live without the extra formatting, but it would have been nice.
  13. Replies
    7
    Views
    2,843

    I've tried \r\n as well, and it didn't work. ...

    I've tried \r\n as well, and it didn't work. None of the escape sequences do.

    I'm trying to add the text from a text box because it's the only way I can get the data to transfer from another...
  14. Replies
    7
    Views
    2,843

    Escape sequences in VC++

    How do you get Microsoft Visual C++ to put carriage returns into strings and use them in list boxes? It just puts a small line in whenever I try using the old \n. I need to have carriage returns in...
Results 1 to 14 of 14