Lee Mac Posted June 2, 2010 Posted June 2, 2010 (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) ) ) ) (NavigateTo "www.cadtutor.net") (NavigateTo "C:\\Users\\Lee Mac\\Documents\\Doc1.txt") Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.