Thankyou for the help.
I feel as if im missing somethink, If the listbox has a value and cancle is pressed it returning "value"
NewName:
strName = Application.InputBox(Prompt:=Label1.Caption & vbNewLine & vbNewLine _
& vbNewLine & vbNewLine & "Rename File Before Database Entry???", _
Title:="Attachment File Name", Default:="Your Name here", Type:=2): Rem change for filename
If strName = "" Then msgbox "A Name Must Be Entered", vbOKOnly
If strName = "" Then GoTo NewName
If strName = False Then Exit Sub
If strName <> "" Then FileCopy Label1.Caption, imgfolder & strName & ".jpg"
ListBox1.AddItem strName
Label1.Caption = vbNewLine & " " & _
"Upload Files From Computer..."
CommandButton6.Font.Bold = False
Thankyou
Bookmarks