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
 
Top