Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 8 of 8
  1. #1
    Join Date
    Dec 2005
    Posts
    41

    how browse my folder like windows browser

    how browse my folder like windows browser to use commands in right mouse-click in my project no out >>

  2. #2
    Join Date
    Dec 2005
    Posts
    41
    this is necessary help me

  3. #3
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    If you're in a hurry, try the search button

    http://www.indigorose.com/forums/sho...light=explorer

  4. #4
    Join Date
    Dec 2005
    Posts
    41
    no no no i want use commands in right mouse-click in this browser in my project no out

  5. #5
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    create your own popup menus

    Application.ShowPopupMenu

  6. #6
    Join Date
    Dec 2005
    Posts
    41
    you are good man

    i am happy with you

    can gave me Example

  7. #7
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    straight from the help file

    Code:
    if(e_Type == RIGHT_BUTTON_DOWN)then
      tblMenu = {};
      tblMenu[1] ={};
      tblMenu[1].Text = "&New Menu";
      tblMenu[1].ID = 100;
      tblMenu[1].Checked = false;
      tblMenu[1].Enabled = true;
      tblMenu[1].SubMenu = {};
      tblMenu[1].SubMenu[1] = {};
      tblMenu[1].SubMenu[1].Text = "&SubItem 1";
      tblMenu[1].SubMenu[1].ID = 101;
      tblMenu[1].SubMenu[1].Checked = false;
      tblMenu[1].SubMenu[1].Enabled = true;
      tblMenu[1].SubMenu[2] = {};
      tblMenu[1].SubMenu[2].Text = "S&ubItem 2";
      tblMenu[1].SubMenu[2].ID = 102;
      tblMenu[1].SubMenu[2].Checked = false;
      tblMenu[1].SubMenu[2].Enabled = true;
      
      nRes = Application.ShowPopupMenu(e_X, e_Y, tblMenu, TPM_LEFTALIGN, TPM_TOPALIGN, true, true);
    
      if(nRes == 0)then
          Dialog.Message("Menu Result","Cancelled");
      else
          Dialog.Message("Menu Result","Menu ID selected = "..nRes);
      end
    end

  8. #8
    Join Date
    Dec 2005
    Posts
    41
    thank you

    i am will try

    to understand it

Similar Threads

  1. cookies
    By goukilord10 in forum AutoPlay Media Studio 5.0
    Replies: 6
    Last Post: 05-20-2005, 04:08 PM
  2. INFO: JET and MDAC (Complete) Runtime Notes
    By Desmond in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 11-28-2003, 08:35 AM
  3. %WINDIR% reports wrong folder on Windows Server 2003
    By jinjoid in forum Setup Factory 6.0
    Replies: 5
    Last Post: 06-09-2003, 03:26 AM
  4. INFO: The Explore Button on the Distribution Folder Dialog
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-11-2002, 12:06 PM
  5. Lightweight browser runs from CD
    By fargus in forum AutoPlay Menu Studio 3.0
    Replies: 1
    Last Post: 10-24-2001, 01:02 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts