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 IamaSherpa 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: *

  1. BeegOrange

    Popup Context Menu problem...

    Hello Vincent, It more or less worked. I learnt a few menu fundamentals on the way. Thanks for the tip!
  2. BeegOrange

    Message Box API

    Nope. I dont think so. Easiest way is to display a dialog box and a .ini file (to remember options). best of luck!
  3. 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...
  4. 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...
  5. BeegOrange

    CListView columns

    Gednick, Thnx a million! Exactly what I was looking for. You are a regular life-saver.
  6. 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...
  7. BeegOrange

    Explorer style application (Urgent plz)

    Dear gednick, I am pretty sure I shouldnt have made it work thru PostMessage()...but it's working :) I struggled a bit, but the entire process of putting the question up to making it work took 35 mins! Thanx a bunch...
  8. 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