Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how can I change view mode of webbrowser control (thumbs, icon, list)

Status
Not open for further replies.

sezer

Programmer
Sep 19, 2007
1
TR
Hi everyone,
This is my first post to this forum. I review many previous posts about vb and its controls and I learn lot of things. Thank you for your sharings.

Now I have a question. There is a webbrowser control in my vb application. I use it to browse for folder and file. Can I change programmaticaly webbrowser's view mode (Thumbnails, Tiles, Icons, List, Details)
 
You need the following info from one of my examples that has been posted in this forum in the past

This property of the WebBrowser:

.Document.CurrentViewMode

And this enum:

Public Enum FolderViewMode
FVM_ICON = 1
FVM_SMALLICON = 2
FVM_LIST = 3
fvm_details = 4
FVM_THUMBNAIL = 5
FVM_TILE = 6
FVM_THUMBSTRIP = 7
End Enum


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top