| Public Declare Function DeleteFile Lib "kernel32" _
Alias "DeleteFileA" (ByVal lpFileName As String) As Long
Private Sub Command1_Click()
Dim n As Long
n = DeleteFile("c: empautoexec.bat")
If (n = 1) Then
Text1.Text = "OK."
Else
Text1.Text = "ERROR."
End If
End Sub
Devamını Görmek İçin Üye Girişi Yapmanız Gerekmektedir. |