Delete a record using STORED PROCEDURE in SQLServer
Delete a record using STORED PROCEDURE in SQLServer
Rate Delete a record using STORED PROCEDURE in SQLServer
(1(1 Vote))
' Stored Procedure Name : "StrdProcDelTmpAIMF"
' In VB6 Create a new project, in a form create command button name CmdDel
Private Sub CmdDel_Click()
On Error Resume Next
If MsgBox("You are about to DELETE 100001" + Chr(13) + _
"Any changes of this record will not be SAVE.", vbYesNo + vbDefaultButton2 + vbExclamation, "Message") = vbYes Then
DE.StrdProcDelTmpAIMF CLng("100001")
End if
End Sub
Delete a record using STORED PROCEDURE in SQLServer Comments
No comments yet — be the first to post one!
Post a Comment