I'm trying to create a program that can be used by other people. Currently, my files are in the directory C:\Documents and Settings\jpmccros\Desktop\test
This directory contains my macro.xlsm, names.bat, and another sub-directory called Data.
The batch file names.bat does the following:
cd data
dir/b/o:n > names.txt
This does exactly what I want it to do. When I open the batch file (which is in the directory C:\Documents and Settings\jpmccros\Desktop\test\, the MS DOS Command Prompts starts in C:\Documents and Settings\jpmccros\Desktop\test\ then runs my commands and makes my file names.txt, and puts it exactly where I want it.
When I open up macro.xlsm and run the macro1, it calls the batch file to open.
This is my macro command:
Dim names_txt, names_bat, full_name, filename, folder As String
Dim position As Integer
Dim pathcrnt As String
full_name = ThisWorkbook.FullName
filename = ThisWorkbook.Name
position = InStr(1, full_name, filename, 1)
position = position - 1
folder = Left(full_name, position)
names_bat = folder & "names.bat"
Shell names_bat, vbMaximizedFocus
Now here is my problem: The macro actually opens the batch file, or at least it opens the MS DOS Command Prompt. However, when it opens the batch file, the initial directory is:
C:\Documents and settings\jpmccros\My Documents
I need this batch file and macro to be dynamic, therefore I need the batch file to open up its displaying directory. What's going on with this? Is there a command I can write on my batch file? Is it something in VBA?
debug.print ThisWorkbook.FullNamein your code you do get "C:\Documents and Settings\jpmccros\Desktop\test\macro.xlsm" in the Immediate window , ie your code is running in the correct workbook saved to the right path? – brettdj Feb 25 '12 at 9:26C:\Documents and Settings\jpmccros\Desktop\test\data, or whatever folder you want, as a parameter to the batch file and how to use that parameter in acdcommand to switch to the desired directory. You do not explain why my solution does not meet your need. Have you tried it? – Tony Dallimore Feb 25 '12 at 9:39