Search results for query: *

  1. KenQui

    pop up message if theirs duplicate number when add or save

    Sorry about that. Then what code can I add here sir/ma'am Private Sub AddBook() ' ADD PARAMETERS Access.AddParam("@BNo", BookNo.Text) Access.AddParam("@Book_Category", Category.Text) Access.AddParam("@Book_Title", Title.Text)...
  2. KenQui

    pop up message if theirs duplicate number when add or save

    This the error that always pop up when I input duplicate Number. How can I fix that. I want to pop up a message that a user can understand easily if theirs duplicate number then it will not proceed to save. What is the code for that. Sorry about this question.
  3. KenQui

    Resolved Why errorprovider in datetimepicker is still their after selected and save it?

    Here the code but i cant fine the correct code for it. If DateTimePicker1.Value.Date = Not Selected Then ErrorProvider1.SetError(DateTimePicker1, "PLEASE SELECT A DATE.") Return Else Me.ErrorProvider1.SetError(Me.DateTimePicker1, "") End If
  4. KenQui

    Resolved Why errorprovider in datetimepicker is still their after selected and save it?

    I have three textbox, one datetimepicker, one button for save and one errorprovider. The problem is every time I input a data in textbox and I forgot to select the date it give an error in datetimepicker then when I select a date because I forgot it then save it the error provider still in...
  5. KenQui

    Question what is the problem in my code? For Log in.

    Sorry about that I'm beginners in programming and I have so much to learn. By the way their is an error here.
  6. KenQui

    Question what is the problem in my code? For Log in.

    The thing is I'm creating a log in , in ms visual studio 2010 and ms access database using vb.net language. Also the username is Admin and the password is admin in database. The problem is that when I login and input username and password like this admin for username and for password is admin ...
  7. KenQui

    Resolved ms access have been deleting the data that i input?

    Thank you so much, I follow your instruction and its works.
  8. KenQui

    Resolved ms access have been deleting the data that i input?

    I'm very sorry, this is my first time here, and thank you so much I will remember that.
  9. KenQui

    Resolved Syntax error in INSERT INTO statement

    Im sorry about that, but yeah your right. i put bracket in password and it work. Thank you so much for the info.
  10. KenQui

    Resolved ms access have been deleting the data that i input?

    Im using vb.net language and ms access in ms visual studio 2010 Why when I'm saving data or add data the ms access have been deleting the data that i input?every 2 or 1 minute it will delete after isave or add
  11. KenQui

    Resolved Syntax error in INSERT INTO statement

    What is wrong in my code below? How to fix the error? Private Sub AddAdmin() ' ADD PARAMETERS aAccess.AddParam("@admin_no", txtANo.Text) aAccess.AddParam("@username", txtAUsername.Text) aAccess.AddParam("@password", txtAPassword.Text) '...
Back
Top