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

Search:

Type: Posts; User: Charlie Curtis

Page 1 of 5 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    1
    Views
    630

    HELP! Windows Services

    Hi All,

    I am using the XYNTServices example I found here or at CodeProject. If I start the Service with everything using local computer resources it works great. However, I want to be able to...
  2. Replies
    3
    Views
    1,186

    Re: OnMouseMove HELP Please

    Sorry, yes I am using it for a Calendar Control and when I mouse over the Calendar I am receiving an assert error in afxcmn.inl on the default code inside the switch statement.


    default:
    {...
  3. Replies
    3
    Views
    1,186

    OnMouseMove HELP Please

    Hi All,

    I am tiered of banging my head against the wall trying to figure this out. So I am here to find out from the experts what the problem might be. The following code:

    void...
  4. Replies
    0
    Views
    715

    Oracle 8i ODBC driver

    :confused:
    In the SQLExecute(hstmt) the hstmt is being passed to the Oracle ODBC 8i driver as an SQL_CHAR which is limited to 255 charaters. So if you have a large table requiring say 300-500...
  5. Replies
    8
    Views
    1,396

    Re: Dynamic Menu Bar Creation?

    Thank You! That is exactly what I was looking for. This will allow me to finally finish this project with all of the functionality I wanted! Thanks for taking the time and effort to provide a small...
  6. Replies
    8
    Views
    1,396

    Re: Dynamic Menu Bar Creation?

    Again my apologies, but I am hoping you might be able to shed a little more light on this subject. I have created the ToolBars in the OnCreateClient in CMainFrame. You said I could show/hide them...
  7. Replies
    8
    Views
    1,396

    Re: Dynamic Menu Bar Creation?

    My apologies I did in fact mean ToolBar.

    Thanks!
    Charlie
  8. Replies
    8
    Views
    1,396

    Re: Dynamic Menu Bar Creation?

    Thanks for the quick response! Will give that a try... When you say create them all are you telling me to create then in the


    int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)

    function?...
  9. Replies
    8
    Views
    1,396

    Dynamic Menu Bar Creation?

    :( Hello All,

    In my MDI project I have multiple Documents and Views. Based on the Document selected I want to change the Menu Bar. Is it possible to do this in the :

    int...
  10. Re: Please Help! What would cause Member Variable problem?

    :)

    THANK YOU!

    That was the problem! It is working fine now.

    Have a Great Day! You just made mine Great!

    Thanks again...
    Charlie
  11. Re: Please Help! What would cause Member Variable problem?

    :confused: Thanks for the super fast reply!

    I am missing something, because I don't understand where I need to place the UpdateData(true) to make the member variables work? I guess I don't...
  12. Please Help! What would cause Member Variable problem?

    :confused: Hi EveryOne!,

    I will add code later, but I am having a problem with member variables. As you will see in the code the variables are being created and ClassWizard recognizes them....
  13. Replies
    5
    Views
    881

    Re: String placement in MDI

    You understand exactly! I forgot you have to check character (according to the font) in pixels rather then trying to do straight character manipulation. I will give it a try and Thank you VERY much...
  14. Replies
    5
    Views
    881

    Re: String placement in MDI

    Thanks for the reply and I am attaching two jpg's that show the behavior I am talking about. Thanks again...

    Charlie
  15. Replies
    5
    Views
    881

    String placement in MDI

    I understand how to use the DrawText function in the code I am providing. The problem I have is that I am retrieving a description field from a database and all is well as long as the string length...
  16. Replies
    12
    Views
    1,110

    Re: Multiple ComboBoxes only one updates

    MANY THANKS for the Help! It's always the simple things that get you. I didn't see it, but now I can.

    Thank You Very Much!
    Charlie :)
  17. Replies
    12
    Views
    1,110

    Re: Multiple ComboBoxes only one updates

    OK Here you go.
    Thanks
    Charlie
  18. Replies
    12
    Views
    1,110

    Re: Multiple ComboBoxes only one updates

    The problem is that when I change the value for the 1st edit box the 1st combobox gets the change i.e. it will change to the input value in the edit box. However, if I then enter a value in the...
  19. Replies
    12
    Views
    1,110

    Re: Multiple ComboBoxes only one updates

    1. Did you try putting a breakpoint into those 2 notification handlers and see if they are being called at all ? Yes I did check this and they are being called when they are supposed to be.
    2. Try...
  20. Replies
    12
    Views
    1,110

    Re: Multiple ComboBoxes only one updates

    Yes that is correct One is executed then when the value is displayed I enter the other one and regardless of which one is executed second it will not change the combobox with the new value.
  21. Replies
    12
    Views
    1,110

    Re: Multiple ComboBoxes only one updates

    Sorry about that. :blush:

    Here is my OnInitDialog Function:

    BOOL CLookupCombosDlg::OnInitDialog()
    {
    iCnt=0;
    dTimeShort=1.700;
    dTimeLong=4.200;
  22. Replies
    12
    Views
    1,110

    Multiple ComboBoxes only one updates

    I have two Comboboxes both have an edit box for searching. If I input a value in edit box 1 when I type the last character (limited to 5) I want to search for the list box goes to the value if found....
  23. Re: Double to CString Conversion using fcvt

    It's always the simple things that hang you up... That was what I missed I wasn't paying close enough to the format string portion. So I added it and sure enough it works fine now!

    Thanks for the...
  24. Double to CString Conversion using fcvt

    Hi All, :wave:

    CString csRegHrs;
    csRegHrs.Empty();

    The next line produces the correct value Say 1000 (for 10.00) in csRegHrs.
    csRegHrs = fcvt(m_pDSet->m_REGHRS,2,&decimal,&sign);

    Can...
  25. Multiple Documents in a Single View (HELP!)

    Hi All,

    OK I have seen numerous articles on using Multiple Views with a Single Document, but can't find anything about Multiple Documents Using a Single View. If I am wrong please provide me...
Results 1 to 25 of 101
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured