Search:

Type: Posts; User: WatsonJohn

Search: Search took 0.02 seconds.

  1. Reading specific elements from item in database and placing them in multiple txtboxes

    Let's say I have an item in the database which contains "?! ES ?! AW ?! FF ?! XM". How do you place the the letters "ES" "AW" "FF" and "XM" in multiple textboxes, each textbox containing one of the...
  2. Re: Getting OutofRange error after closing a program

    What do you think is wrong with the code? Why would it get the item but cause outofbounds error?
  3. Re: Getting OutofRange error after closing a program

    I had data binding on my combobox with the choosing of an item changes the textbox.

    Private Sub ComboBox1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles...
  4. Re: Getting OutofRange error after closing a program

    What would we the appropriate replacement to quickly call a data item? When I choose an combobox item, the data pertaining to that item would appear on textboxes. I didn't use data binding on the...
  5. Getting OutofRange error after closing a program

    To display data in a textbox I used
    TextBox1.Text = BindingSource.Item(0)(0)

    The textbox was able to display the data but after I close the program I get this error
    ...
  6. VS 2019 How to update data automatically without closing/re-opening the program

    When I insert data using "TableAdapter.InsertQuery", I would have to re-open the program for the added data to be shown in a combobox that has data binding in a specific inserted data. Like if I add...
  7. Re: How to Add Image Resource from PictureBox

    ..nothing. Perhaps there's something wrong in my code. i'll check it.
  8. Re: How to Add Image Resource from PictureBox

    Is it possible to create a resource file, then to it? I have recently come across this Is this correct?:


    Dim bmp As New Bitmap("F:\Documents and Settings\All Users\Documents\My Pictures\Sample...
  9. How to Add Image Resource from PictureBox

    Let's say I have a picturebox and a button. How to: The button adds the image from the picturebox to the resources.
  10. Replies
    19
    Views
    1,848

    Re: Some Binding Navigators not updating

    It is exactly the same with the only difference being the name of table.
  11. Replies
    19
    Views
    1,848

    Re: Some Binding Navigators not updating

    There are multiple bindingsources. This is the standard or automatic method generated when I drag a data source table to a form. Even if I use only one bindingnavigator save button in one runtime,...
  12. Replies
    19
    Views
    1,848

    Re: Some Binding Navigators not updating

    I use UpdateAll in TableAdapterManager.
    Me.Validate()
    Me.BindingSource.EndEdit()
    Me.TableAdapterManager.UpdateAll(Me.Dataset)

    Forgive my ignorance, but how do I get the value of the call? It...
  13. Replies
    19
    Views
    1,848

    Re: Some Binding Navigators not updating

    Thanks! The methods have breakpoints and they hit when I click save. Still, no updates were made to the database. Gonna make some more experiments.
  14. Replies
    19
    Views
    1,848

    Re: Some Binding Navigators not updating

    Sorry I was looking at the properties and keep finding a general tab named Event. All the 3 save buttons from different BindingNavigations seem to have an event in "Click" under Action, each with...
  15. Replies
    19
    Views
    1,848

    Re: Some Binding Navigators not updating

    What is the Events button? I can't seem to locate it in the Properties window.
  16. Replies
    19
    Views
    1,848

    Re: Some Binding Navigators not updating

    ----
  17. Replies
    19
    Views
    1,848

    Re: Some Binding Navigators not updating

    Yes I'm referring to the save button that will update the database. Other buttons work in the BindingNavigator like Next, Add, Delete, etc. I have three ProductBindingSaveItem_Click methods in code,...
  18. Replies
    19
    Views
    1,848

    Some Binding Navigators not updating

    I have 3 binding navigators in a form, placed in different tabs. However, only one navigator works and updates its corresponding table.
  19. VS 2019 Re: I cannot access the database of the downloaded application

    When I tried to run the app, it says
    "Couldn't process file "A" due to its being in the internet or Restricted zone or having the mark of the web on file. Remove the mark of the web if you want to...
  20. VS 2019 Re: I cannot access the database of the downloaded application

    When I tried to run the app, it says
    "Couldn't process file "A" due to its being in the internet or Restricted zone or having the mark of the web on file. Remove the mark of the web if you want to...
  21. VS 2019 I cannot access the database of the downloaded application

    I made an app with database on my computer and I wanted to use it on my laptop but there is an error when I try to access it.
    "Failed to open a connection to the database"

    "The attempt to attack...
Results 1 to 21 of 21



Click Here to Expand Forum to Full Width