Private Sub cmdSalva_Click()
' VERIFICA CHE SIA STATO INSERITO IL NOME DEL FILE
If Len(Trim(txtNome.Text)) = 0 Then
MsgBox "Inserire il nome del file", vbCritical, "Errore"
txtNome.SetFocus
Exit Sub
End If
' VERIFICA CHE SIA STATA SPECIFICATA L'ESTENSIONE DEL FILE
If Len(Trim(cmbTipo.Text)) = 0 Then
MsgBox "Inserire l'estensione del file", vbCritical, "Errore"
cmbTipo.SetFocus
Exit Sub
End If
' RECUPERO IL NOME E L'ESTENSIONE DEI FILE
Dim nome_file As String
nome_file = txtNome.Text & cmbTipo.Text ' VERIFICO CHE IL FILE NON ESISTA
' IN CASO LO CANCELLO PRIMA DI RICREARLO
On Error Resume Next
Kill "C:\" & nome_file
' CREO IL FILE E CI SCRIVO DENTRO IL CONTENUTO
Open "C:\" & nome_file For Append As #1
Print #1, txtCodice
Close #1
' MESSAGGIO DI SUCCESSO
MsgBox "File " & nome_file & " creato con successo", vbOKOnly, "Conferma"
End Sub