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 strongm 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. vetaal

    Creating a Autorun CD Menu using Visual Basic

    No issues. I was not making a call to a windows installer .EXE. I was calling a standalone executable called WiLogUtl.exe (a utility to parse log files). The utility was opening in minimized mode. As soon as I changed my .EXE to a different installer program, the installation started in...
  2. vetaal

    Creating a Autorun CD Menu using Visual Basic

    Andy, The call to exe works, but the call to a msi comes with some error. Quick question - all the apps get executed in a minimize mode. I have to click on these apps on the taskbar to maximize them. How do I open them in maximize mode? Thanks
  3. vetaal

    Creating a Autorun CD Menu using Visual Basic

    I tried adding this in the code: Private sub installVisio() shell("visio2003.exe") End sub above comes with a runtime error of path not found or file not found If I enter shell("D:\visio2003.exe") it works but I cannot hard code the path coz the user may have a different drive mapped for the...
  4. vetaal

    Creating a Autorun CD Menu using Visual Basic

    Andy, To make a call to install Visio - I created a sub-function: Private sub installVisio() End sub Now, to call the Visio installer - do I just enter: Execute "visio2003.msi" or run "visio2003.msi" I am getting a sub not defined on this command on trying to compile the program. How do I...
  5. vetaal

    Creating a Autorun CD Menu using Visual Basic

    Wonderful Andy! I will upload the code once I have it up and running! Thanks
  6. vetaal

    Creating a Autorun CD Menu using Visual Basic

    Thanks Andy. I am relatively new to VB. I guess creating a control menu will be a good idea alongwith a cmd button for OK and Exit How do I create a control array? Is it a feature in the menus or the toolbox? My concept is pretty simple, we send out these Cds to our field people. Normally we...
  7. vetaal

    Creating a Autorun CD Menu using Visual Basic

    I want to create a VB .exe to include in my autorun CD. Here is what I need: The .exe should prompt user with a form with 3-4 options, and on clicking the respective options, the user should be see another form with second set of options. Does anyone have a VBScript for the same? Here is what...

Part and Inventory Search

Back
Top