doco
Power User
- Local time
 - Today, 07:49
 
- Joined
 - Feb 14, 2007
 
- Messages
 - 482
 
		Code:
	
	
	
	
		Code:
	
	
	Private Sub cmdImage_Click()
    Me.image_path.SetFocus
    Call InsertPhotoLink
    
End Sub
Public Sub InsertPhotoLink()
    On Error GoTo insertPhotoLink_Err
    DoCmd.RunCommand acCmdInsertHyperlink
insertPhotoLink_Exit:
    Exit Sub
insertPhotoLink_Err:
    MsgBox Err.Description
    Resume insertPhotoLink_Exit
    
End Sub
	Running Win7 Pro and Office 2013 Pro
The problem is every time this runs it creates a new folder share on my computer. I have checked other databases that uses this command and they work as expected.
Why would this happen?
TIA