Search results for query: *

  1. C

    re coding required to find access database on deployment

    Quote: Originally Posted by JuggaloBrotha i know this is kind of old/late but what i do is on application startup i have it modify the database connection string(s) in code to look for the database(s): cnn.Close() cnn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &...
  2. C

    Desktop app doesn't work

    sry this should have been a new post not a reply
  3. C

    Problem with delete and update in VB.Net 2003

    Thank you soooo much! I've spent the best part of a month looking at this and you finally got it working. Not only did i have to assign the messagebox.show but i had to swap it for the msgBox function and it worked just fine. I'll be back soon with my next problem. Watch this space ;)
  4. C

    Problem with delete and update in VB.Net 2003

    Hi vis781 Thank you for replying I do have a delete statement. It was created by the wizard when I configured the data adapter. It is as follows: DELETE FROM PwordStore WHERE (PwordNo = ?) AND (Pword = ? OR ? IS NULL AND Pword IS NULL) AND (UserName = ? OR ? IS NULL AND UserName IS NULL)...
  5. C

    Problem with delete and update in VB.Net 2003

    Hi everyone, I hope you can help me. I am using vb.net and trying to delete a row in an access database. Firstly, I find the row and confirm there's record. If there's a record I ask for deletion. I am using the values submitted via a text box. Here is my code: Private Sub...
Back
Top