what am i doing wrong???? something simple which i can find (1 Viewer)

Jouma47

New Member
Joined
Feb 9, 2006
Messages
29
Gender
Male
HSC
2006
hi there

what am i doing wrong???? something simple which i can find

plz help

Private Sub cdmadd_Click()
Propmt$ = "Enter the new reocrd and then click the right arrow button"
Reply = MsgBox(Prompt$, vbOKCancel, "Add Record")
If Reply = vbOK Then
txttilte.SetFocus
Data1.Recordset.AddNew
End If
End Sub
Private Sub cmddelete_Click()
Prompt$ = "Dp you really want to delete this reocrd"
Reply = MsgBox(Prompt$, vbOKCancel, "Delete Record")
If Reply = vbOK Then
Data1.Recordset.Delete
Data1.Recordset.MoveFirst
End If

End Sub
Private Sub cmdexit_Click()
End
End Sub
Private Sub Form_Load()
End Sub
Private Sub txtcost_Change()
Form1.txtcost.Text = Format(txtcost.Text, "Currency")
End Sub


i have also atteched the whole project
 

sunny

meh.
Joined
Jul 7, 2002
Messages
5,350
Gender
Male
HSC
2002

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Top