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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MyFlight

  1. MyFlight

    DIsplaying Help with Functions

    I found the Function: under Object Browser and Module 2 and WhatInteriorColorIndex. After I add the Text and save the Workbook (Personal.xls) The text never appears. Am I forgetting something do I need to change the Help Context ID or something? Your assistance will be greatly appreciated.
  2. MyFlight

    DIsplaying Help with Functions

    Is there a way to Display Help when uing the Insert Function (Shift + F3) for Functions I have Created? Example Function WhatFontColorIndex(rng As Range) ' Select the Cell with the FONT Color you want Translated WhatFontColorIndex = rng.Font.ColorIndex End Function How would I display...
  3. MyFlight

    Running WZZIP from ProComm

    I am trying to figure out how to run WZZIP.exe (the command line interface for WinZip. I have an Aspect Script that downloads Many files and need to zip them together. . All files begin with a 7 digit number followed by an Underscore and then the text file name. I need to zip any file in...
  4. MyFlight

    Runing a WZZIP.exe from Excel VBA?

    I am trying to figure out how to run WZZIP.exe (the command line interface for WinZip from VBA. I have multiple VBA Modules and macros that run and I need to zip all of the files prior to running these macros (in case of problems). All files begin with a 7 digit number followed by an...
  5. MyFlight

    Capture Files not Writing

    Here is a Simplified Version with the same problem, proc main string DirPathID = "C:\Program Files\Symantec\Procomm Plus\*.DIR" string sDirName = "TempDir.txt" string fName = $DDIRFNAME string AcctNum = "" ; User Input Company (CMR) Number string Directory ...
  6. MyFlight

    Capture Files not Writing

    I have a script I have written for accessing and running/downloading data in our switches. The porblem is I am calling it from another script and the capture function no longer seems to work. The way it is supposed to work is that the Data is written to certian file in the C:\Temp Data\Raw...
  7. MyFlight

    Selecting ProComm Directories from a Dropdown box

    KNOB, Got it to work. Here is the script I have to open a Directory and display all the folders. Thought it may be helpful for someone else. I really appricate the help. #define SaveDir "C:\Program Files\Symantec\Procomm Plus\Aspect\" string DirPathID = "C:\Program...
  8. MyFlight

    Selecting ProComm Directories from a Dropdown box

    KNOB, Ok disregard my last post. Figured that part out. However,how do I get all 3 Group Names to appear in the list box? Here is my complete script to this point. I am currently working on case 103 proc main string s_line = "", s_Bucket = "", s_CbxType = "", sSmrVer = "" string...
  9. MyFlight

    Selecting ProComm Directories from a Dropdown box

    Knob, I know I am doing something wrong here but all this seems to do is count the Entries, NOT the Groups. proc main integer NumGrps ; Used to count Number of Groups. integer NumEnt ; Used to count Number of Entries. integer Count ...
  10. MyFlight

    Selecting ProComm Directories from a Dropdown box

    Knob, Most of my Directories have multiple Folders in them. How ould they select the Specific folder they want. Thanks
  11. MyFlight

    Selecting ProComm Directories from a Dropdown box

    I am trying to write a script to Ask the user to: 1. Select a ProComm Directory from a Dropdown box 2. Select a Folder from within the Directory (i.e. Switches, VoiceMails). 3. Set off a subscript to dail all Entries (when connected execute the Export.wax script). Needless to say I could...
  12. MyFlight

    Finding Entry In Directory with Script File

    I am trying to write a script file to Select an entry from a ProCom Directory. However I need to match on the Company Name. Since this is a Multiphase script I need to keep the Company in memory (Global Variable). Once the I use DialLoad to load the directoy I cannot match on the Company, I...
  13. MyFlight

    Insert Blank Row

    Help I need a Macro that will insert a blank row in a worksheet. I receive a worksheet every week with a list of numbers between 100 and 1000 (and ohter data). I need to insert a blank row after each number in the spreadsheet (the numbers are not sequencial). thanks
  14. MyFlight

    Excel Macro Cell Formatting question

    Skip, Does Slecting the Cells slow the Macro down?
  15. MyFlight

    Excel Macro Cell Formatting question

    Skip, here is what I came up with. Does this look right to you? Sub MainHubDigitalFormat() ' ' MainHubDigitalFormat Macro ' Macro Created On 6/12/2008 by Ralph M. Hill ' ' Const SAVESTR As String = "0" Dim myRange As Range Dim cell As Range Dim delRange As Range...

Part and Inventory Search

Back
Top