Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: panioti
  • Content: Threads
  • Order by date
  1. panioti

    SetDialogBkColor gives error c3861

    I found lots of examples on how to change the dialog vbackground color--all the examples agree with each other. BOOL CEzApp::InitInstance() { SetDialogBkColor(RGB(255, 255, 255), RGB(0, 0, 0)); LoadStdProfileSettings(); // Load standard INI file options (including MRU) ... This...
  2. panioti

    My Radio Button Groups are misbehaving

    I have a problem with my radio button groups. I am working on an SDI app based on CFormView, with multiple views, 12 views. Most views have several radio groups. I coded view1, then reread the specs and found that the operator could choose any one of the group, or none. To allow the operator to...
  3. panioti

    ON_MESSAGE Error?

    I have just migrated from version 5 to .net 2003. I get some warnings, pointing out my sloppy coding technique; but also one error on the ON_MESSAGE message map entry. I reviewed the .net documentation and found no changes in the format. I can't figure out what's wrong. It works for version 5...
  4. panioti

    How do I override "OnExit"

    What happens when operator clicks File->Exit, or hits the "X" button in upper-rt corner (whats the name of this X function). I want to do some cleanup before allowing exit to proceed. Is there a message that can be intercepted.
  5. panioti

    What is the sequence of events on window activation?

    In an sdi application, I have created several additional CFormViews, and switch between them. A view/window could have 50-70 controls plus a lot of static text. The views are created in CMyApp, and also switched there. The switching function ends with: pActiveView->ShowWindow(SW_HIDE); //last...
  6. panioti

    How to Send & Receive a WM_USER Message?

    I want to send a user-defined message, and process it in the destination Class. (CWnd*) pDest->SendMessage(WM_USER,0,0); This compiles with no error and will presumably send the msg. I don't know how to map the msg at the receiving class. Class Wizard doesn't list WM_USER as a message ID, so...
  7. panioti

    How do I create a folder?

    I want to create a folder in Documents & Settings to hold some working files, but don't know how. 1. How do I find the current user. 2. How do I create the folder.
  8. panioti

    Inter-Class access?

    I'm learning to cope with the mfc; and trying to make peace with the mostly damnable C++ language. I have an application based on CFormView. From operator inputs thru edit controls, the View must access member functions of CDoc & CApp. My head is filled to confusion reading about scopes...
  9. panioti

    MSVC Version 6 v .Net?

    I'm ready to upgrade from version 5 learning edition--not that I've learned enough yet--and have noticed on ebay that version 6 is selling for more than .net 2003. Why is that. Is .net going to be too complicated for me. Please give me some opinions/advice. Is the professional/enterprise edition...
  10. panioti

    msvc resource editor limits?

    I have a CFormView based app with a rather large dialog template. Using the resource editor, I have apparently hit the limit with about 130 controls. (msvc version 5). Is there some way to override this limit. Would a later msvc version help.

Part and Inventory Search

Back
Top