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 SkipVought 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. DavePilot

    probs with pkzip

    I had a similar problem using the command line interface for WinZip. I ended up hardcoding the double quote " and that seemed to fix the problem. Try something like this const kPkzip = "pkzip " dim strSource as string dim strDest as string strSource = Chr(34) &...
  2. DavePilot

    MsgBox

    I've figured out what was going on. Looks like a known bug in VB. I was able to change the border style of the from from FixedDialog to FixedSingle. http://support.microsoft.com/default.aspx?scid=KB;en-us;q189741 Thanks, Dave
  3. DavePilot

    MsgBox

    Well the search feature is down on Tek Tips so don't blast me too much if this has been answered. What I've done: Set a form's ShowInTaskBar property to false and then use a message box inside this form. What Happens: The main window (the one with ShowInTaskBar property set to true) displays...
  4. DavePilot

    RaiseEvent not working

    Thanks. Referring to MyEvent was the trick. Dave
  5. DavePilot

    RaiseEvent not working

    I'm working on a good sized project and I am having problems raising an event. So I've just created a little test program to work it out. The code seems to work correctly except I never receive the event in my form?? '------------------ ' The CLASS '------------------ Public Event...
  6. DavePilot

    Inserting an Icon into a Command button

    I've looked for a font with the triangle in it. There isn't one that has the triangle and text. Only picture fonts seem to contain it. Drat. Dave
  7. DavePilot

    Inserting an Icon into a Command button

    I'm trying to figure out how to duplicate an effect like one in Outlook. In outlook if you select Tools/Accounts the Add button has a arrow (right facing triangle) in it. Any ideas on how to insert something like that into a command button?? Thanks, Dave
  8. DavePilot

    An array list....?

    There is no "One Line" of code to do this in VBScript. You'll have to ReDim your array then loop through the array backwards moving each element to the next higher location in the array. When you reach the location you want to put your data stop and write that data. i.e. sub...
  9. DavePilot

    Wsh.AppActivate "anythin' but notepad"

    You simply have to provide the full path. i.e. WshShell.Run """c:\Program Files\Procomm\Procomm.exe""" Use the """ if you've got a space in your absolute path. Dave
  10. DavePilot

    Problem with Blanks in Pathname

    The first problem I see is having the parentheses around your path. You don't need that in VBScript if you are just calling a sub/function and not expecting a return value. You can add the double quotes to the beginning and end to fix the space problem. ie. objShell.run...
  11. DavePilot

    Entering information on a Web Page

    Thanks for the help. I've found to ways for this to work successfuly. Either: objIE.document.forms(0).Airline(0).click objIE.document.forms(0).Airline(0).checked=true Thanks, Dave
  12. DavePilot

    Entering information on a Web Page

    I'm writing a VBScript to navigate to a secure site and log in. The log in process has a radio button to select which part of the company you are with and 2 fields one for employee id and your password. I can launch the IE object and navigate to the logon page and enter my employee id and...

Part and Inventory Search

Back
Top