如何获得其他应用程序的方法?示例SHELL,INTERNETEXPLORER,。。。。。我找不到他们帮忙。
如以下常规:
- (defun NavigateTo ( url / ie )
- ;; © Lee Mac ~ 02.06.10
- (vl-load-com)
- (if (setq ie (vlax-create-object "InternetExplorer.Application"))
- (progn
- (vlax-put ie 'Visible :vlax-true)
- (vlax-invoke ie 'Navigate url)
- (vlax-release-object ie)
- )
- )
- )
或
- (setq dir (vlax-invoke (vlax-get-or-create-object "Shell.Application") 'browseforfolder 0 "Select folder with DWG files:" 1 directory ))
如何知道“internetexplorer的导航”或“shell的browserforfolder”方法。应用我想有一个通用的方法来做这件事。谢谢 |