Search results for query: *

  1. V

    Question Only Last Button Works

    Sorry, I am still learning VB and all the tutorials I find just give examples of string to integer conversions and vice versa. Could you possibly point me towards a tutorial that uses these operators in a similar context to what I'm trying to do?
  2. V

    Question Only Last Button Works

    The button Problem is now solved. How do I link the contents of each textbox (tbRef) to the button generated along with it? No matter what I try, as before, all the buttons refer to the last textbox generated. Private Sub btnUpdate_Click(sender As Object, e As EventArgs) Handles btnUpdate.Click...
  3. V

    Question Only Last Button Works

    Hi, I have created a dynamic form with an Update button. I have declared the following global variable: WithEvents btnUpdate As Button and later in a loop the following btnUpdate = New button ... Me.Controls.Add(btnUpdate) And Finally Private Sub btnUpdate_Click(sender As Object, e As...
  4. V

    Question Database command Help please

    As I said, I am very new to VB. I did however download some stuff from your blog that I found very informative and it will go a long way to helping me understand VB better. Thanks.
  5. V

    Question Database command Help please

    Firstly, thank you very much for the positive criticism rather than negative comments. Most of the tutorials I read didn't explain why things were done a certain way and every example was done totally different to the previous one. I appreciate your explanation ALOT. I realise now that this...
  6. V

    How to Use A Database

    I did what you suggested. Thanks
  7. V

    Question Database command Help please

    Hi, I am currently in the process of teaching myself VB.net. My first challenge was to write as program that stores order info. The app must use a centralised database and me able to run from several terminals at once. So I thought I would skip the wizard and use manual commands to connect...
  8. V

    How to Use A Database

    Hi, I am trying to teach myself VB. I am trying to create a program that stores data in a database on one form and then displays it if another form is opened and edited on another form. I have created the forms and all that stuff works, but I cant get the database to function correctly. What...
Back
Top