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 TouchToneTommy 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: *

  • Users: Johnomill
  • Content: Threads
  • Order by date
  1. Johnomill

    how to save a file when using shortcuts to browse to the folder?

    I have a program which allows the user to save data to a location. My save-as-dialog shows 'real' folders but also shortcuts (.lnk). I use the file scripting object to check if the selected folder exists. When i select a shortcut (.lnk), fso.folderExists returns False. Is there a way to save a...
  2. Johnomill

    VBA: adding a search path

    I want to email from Excel with Lotus Notes. When Notes is not running I get the following error: the notes.ini file cannot be found in the search path: notes.ini Is there a sollution to this error? When notes is allready running, it works fine. Best regards, John
  3. Johnomill

    Excel: problem showing Formulabar

    I have a workbook and i'm hiding al commandbars at startup. When i close the workbook all the commandbars are set to the normal value. This works except for my formulabar. this is my code: Dim Bar As Object For Each Bar In Application.CommandBars Bar.Enabled = True Next Bar...
  4. Johnomill

    W2K - finding associated filetype for current user

    Hi! I want to search in the registry in W2K for a program that is associated with &quot;.out&quot;. I can do it in W98 but in W2K it is located under the (current) user: HKEY_USERS\<encrypted uservalue>\software\...\FileExts I know how to get my computername and username, but how do i get the...
  5. Johnomill

    using formula in Header/Footer

    Hi, I would like to modify the footer of my page before printing it with the name of my company-unitname. But the code interprets everything as string. Is there another sollution to this problem? Unitname=Worksheets(n).Cells(r,k) With ActiveSheet.PageSetup .LeftFooter =...
  6. Johnomill

    VBA Excel hangs up when closing with macro

    I have created a button so I can save and quit my active workbook. When I do this, Excel hangs up. In Explorer I can see that a new file is created with a strange name. When I run the macro step by step, this problem doesn't occur. I tried different things s.a. closing with application.quit...
  7. Johnomill

    VBA Excel - import into cell changes cellformat

    I'm reading data from a comma-separated-file into a worksheet. The worksheet is protected. The cells have a format with left allignment of the Euro-sign and right allignment of the value. After import the Left allignment of the Euro-sign is changed to right. How can I prevent this from...
  8. Johnomill

    How to handle more then 1 file with GetOpenFilename

    How can I access each File with Application.GetOpenFilename in Excel? I know the option Multiselect must by set to True. My old VBA code was: objA = Application.GetOpenFilename A contains the path and filename I call another macro and pass through the value of A Now I want to do the same for a...

Part and Inventory Search

Back
Top