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 Wanet Telecoms Ltd 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: BeegOrange
  • Content: Threads
  • Order by date
  1. BeegOrange

    Popup Context Menu problem...

    Hello, I have a menu which gets called like this: void CCinitView::OnContextMenu(CWnd* pWnd, CPoint point) { CMenu menu; menu.LoadMenu(IDR_POPUP_CRYPTO_MENU); menu.GetSubMenu(0); menu.TrackPopupMenu(TPM_RIGHTALIGN | TPM_RIGHTBUTTON, point.x, point.y, this); } Unfortunately...
  2. BeegOrange

    ::OnRButtonUp

    Hello, Totally weird problem! I use the following notification message: void CCinitView::OnRButtonUp(UINT nFlags, CPoint point) { //some code here } The function gets triggered ONLY on right button's DOUBLE click! what could be causing the problem? I needed to show a floating pop-up menu...
  3. BeegOrange

    CListView columns

    Hi, I just cant seem to find the way to populate columns in a list view. That is, I CAN POPULATE THE FIRST COLUMN, but not second, third etc! How exactly is it done?? I have used code like this: 1. theCtrl.InsertItem(0, fd.cFileName , NULL); and 2. theCtrl.InsertItem(LVIF_TEXT|LVIF_STATE...
  4. BeegOrange

    Explorer style application (Urgent plz)

    Hello, I am working on an app-wizard generated Explorer style application using MFC, on a 'windows explorer' replicate. The left hand side is derived from CTreeView and shows the directory structure on the computer. I am able to populate the directories complete with the 'item expand' etc. (I...

Part and Inventory Search

Back
Top