Search results

  1. mt70

    Beginner question about icons for forms

    In an application which contains many forms, I am hoping to create an icon for each form. Furthermore I wish to display the icons in an additional form. Now when I click on an icon, the associated form should pop up. Question: I assume that I can specify a .bmp file as the value of the icon...
  2. mt70

    New user question regarding use of string value variable as a menu item name

    The issue is that I need to create a "new menu" item each time I loop around in the for loop shown in the code snippet in the original post. Somehow I have to be able to change the name of the menuitem when I am instantiating it in the loop: For each str in mystring Dim <some name based on...
  3. mt70

    New user question regarding use of string value variable as a menu item name

    Thanks for the quick response, however I get an error: "Name is not a member of system.Windows.Forms.MenuItem" Please help!!
  4. mt70

    New user question regarding use of string value variable as a menu item name

    I would like to accomplish the following task: 1. Read the names of all folders in c:/temp 2. create a menu item for each folder that is found under c:/temp and name the menu item with the concatanation of "mnu" and "folder name" I can read the names of folders under c:/temp as follows: Dim...
  5. mt70

    New User question regarding use of string variable value as a new menuitem name

    I would like to accomplish the following task: 1. Read the names of all folders in c:/temp 2. create a menu item for each folder that is found under c:/temp and name the menu item with the concatanation of "mnu" and "folder name" I can read the names of folders under c:/temp as follows: Dim...
Back
Top