Hey Snowb71918, you want a form to pop-up or message box for confirmation.
I suggest to use the message box it's easy and low memory usage unlike form just for confirmation. Here's the sample code.
Private Sub Command1_Click()
Dim retval As String
retval = MsgBox("Are your sure you want to delete this file", vbQuestion + vbYesNo, "Please Confirm")
If retval = vbNo Then Exit Sub 'User click the no button
'---- User click yes
' do some code below.
Snowb71918, you can download sample vb inventory program here for your reference.
http://visualbasic-source-code.com/visual-basic-6/Kenneth
End Sub
