IE

A

a

Friends

After searching a lot on the net I find this code to open IE From Access
2003:

Command_1_click

Dim IE As Object

Dim IEpage As Object

Set IE = CreateObject("internetexplorer.application")

IE.Visible = True

With IE

.Height = 570

.Width = 9500

End With

Set IE = Nothing

End sub

My Question:

Where can I find complete list of properties of IE as example (.Height,
..width)

I want to control

Moveable like access 2003 form

I need:

URL

Web page

List the properties of IE

And controlling programmatically from any programming language specially VBA

Or You know book

Please tell me the name of the book
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top