> Устинов Юрий
он просит вас установить Xscale,Yscale и т.д. ... Итак каким образом можно это решить?
Да никаки не надо решать. Пусть Пользователь нажмет пару раз Enter. Ничего, палец не отсохнет.
> Устинов Юрий
Хочу ещё добавить вопросик, как мне из командной строки или программно запускать конкретный макрос, vbarun даёт только диалог. :(
Для "добавления ..." надо открывать новую тему, вообще-то. Но, похоже, вы новичок на форуме и поэтому я дам вам один но ОЧЕНЬ ХОРОШИЙ СОВЕТ - "Читайте Help!". Вот что там написано по вашему "вопросику":
Sub Example_RunMacro()
' This example loads a DVB file into AutoCAD the VBA system and runs a macro
' contained in the file using the RunMacro method.
'
' For this example we will use one of the sample files installed
' with the system, so the filename used in this example may
' have to be modified for this example to work.
'
' * Note: If the he drawline DVB is already open, there will be an error
' when trying to unload the drawline DVB.
Dim FileName As String
FileName = "c:\program files\autocad 2000i\sample\vba\drawline.dvb"
' Load a sample VBA project DVB file
LoadDVB FileName
' Run the drawline sample macro
RunMacro "Module1.Drawline"
' Unload the drawline VBA project DVB file now that we are done
UnloadDVB FileName
MsgBox "We just loaded, ran, and unloaded a VBA sample from code!"
End Sub
Удачи!