Embedded form picture disappears (1 Viewer)

mr_fish

Registered User.
Local time
Today, 06:47
Joined
Dec 8, 2005
Messages
40
Hi all,

A switchboard at the front of my application has VBA code that opens a form and lets the user pick browse to a graphics file that should embed and appear on the switchboard menu. It all works o.k and the picture appears while the user has the database open. When you close and open the database the picture disappears, for some reason it is not embedding. The code is below. Does anyone know why this is happening?

Cheers.

Private Sub Command22_Click()
'Requires reference to Microsoft Office 10.0 Object Library.

Dim fDialog As Office.FileDialog
Dim varFile As Variant
Dim strAttachments As String
'Clear listbox contents.


'Set up the File Dialog.
Set fDialog = Application.FileDialog(msoFileDialogFilePicker)
With fDialog
'Allow user to make multiple selections in dialog box
.AllowMultiSelect = False

'Set the title of the dialog box.
.Title = "Please select one or more files"

'Clear out the current filters, and add our own.
.Filters.Clear

.Filters.Add "All Files", "*.*"

'Show the dialog box. If the .Show method returns True, the
'user picked at least one file. If the .Show method returns
'False, the user clicked Cancel.
If .Show = True Then
'Loop through each file selected and add it to our list box.
For Each varFile In .SelectedItems

Me.txtChooseLogo = varFile
'This is where the path to the graphics file is placed in
'the Image objects Picture property
Form_Switchboard.Image22.Picture = Me.txtChooseLogo

Next
Else
MsgBox "You clicked Cancel in the file dialog box."
End If
End With

End Sub
 

Users who are viewing this thread

Top Bottom