Is it possible to use a wild card for a file extension?
ImageDir = CurrentProject.Path & "\Images\Invitory Items\" & Me.ListInvent.Column(1, r) & ".*"
The above is not working. Google doesn't offer much.
Is it possible to use a wild card for a file extension?
ImageDir = CurrentProject.Path & "\Images\Invitory Items\" & Me.ListInvent.Column(1, r) & ".*"
The above is not working. Google doesn't offer much.
iDir = Dir(CurrentProject.Path & "\Images\InvitoryItems\" & Me.ListInvent.Column(1, r) & ".*")
ImageDir = CurrentProject.Path & "\Images\InvitoryItems\" & iDir