I have written a sub (sub1)that will then run batch routine that will open a series of files, then do one of my other subroutines based on what sub1 has stored for a Sub name in a variable (routine).
Does anyone have any ideas?
Eg
Sub test()
routine = "acad.dvb!Startup.ImportPS"
batchroutine(routine)
End sub
function batchroutine (routine as string)
'open filelist
'for each blah blah blah
'this is where I dont know what to do, I want to run
'the subroutine here, but dont know what to say
'next
'close filelist
End sub
Does anyone have any ideas?
Eg
Sub test()
routine = "acad.dvb!Startup.ImportPS"
batchroutine(routine)
End sub
function batchroutine (routine as string)
'open filelist
'for each blah blah blah
'this is where I dont know what to do, I want to run
'the subroutine here, but dont know what to say
'next
'close filelist
End sub