Question Web Browser Control in form

What exactly do you want to filter? Can you provide an example?
 
I would like to have a textbox where I type the name of the image and locate that image in the browser control.

Thanx Jdraw
 
Have you considered some sort of file dialog to select an image from a folder?

Something like this
Public Function OpenFileDialog() As String
'// Single file return
'// Ref required:= Microsoft Office 11.0 Object Library

Dim fd As FileDialog
Set fd = Application.FileDialog(msoFileDialogFilePicker)

With fd

.Title = "Select a file"
.Filters.Add "Text Files", "*.txt", 1
.Filters.Add "All Files", "*.*", 2
.AllowMultiSelect = False
.InitialFileName = CurrentProject.Path
If .Show = True Then
OpenFileDialog = .InitialFileName & ".txt"
End If
End With

Set fd = Nothing
End Function

Are you going to pursue the image/database in the link you gave earlier?
 
Images should be relative to data. I locate the image by a unique ID. This way I know if I have associated called the image the wrong name or it is missing or I have simply made a mistake.

I enter a stock record and after updating the maker - the image appears.

Simon
 

Users who are viewing this thread

Back
Top Bottom