Search results for query: *

  1. M

    Access DB error

    I removed some old fields from the Access database in my .net project and any corresponding code in the project. I tried to test the updates and received an error. The only solution that I know of (and tried) was I went through windows explorer, browsed to the Database folder, right clicked on...
  2. M

    SelectedIndexChanged

    Works fine. THANKS for your help!
  3. M

    SelectedIndexChanged

    It does seems that when I select an item from the dropdown, a postback is not occurring even though I have a Private Sub DropDown_SelectedIndexChanged Should this force a postback?
  4. M

    SelectedIndexChanged

    Only SelectedIndex, SelectedItem and SelectedValue
  5. M

    SelectedIndexChanged

    I am not sure??? VisualStudio does not offer that as an option for this element?
  6. M

    SelectedIndexChanged

    For this I am just using a dropdown list containing 5 standard menu options, but, the overall goal is to have a dropdown list of states, which is fed by an DB table. When the user selects a state, the text box should automatically populate with the zip codes for that state (which are also...
  7. M

    SelectedIndexChanged

    I have a drop-down menu, and a text box. When the user selects an item from the drop-down menu, I would like to have the textbox.text update to reflect the DropDown.SelectedValue I know this should be easy but.... This code obviously is not working: Private Sub...
  8. M

    generate xml to file

    I am looking to use .net to generate xml and save to a file, don't need the dtd or xsl, just pulling data from a DB to generate the xml. The xml does not need to be shown on screen, but saved to a specific path on the server. Anyone know of any sample source code or advice
  9. M

    Alert / MsgBox

    I am a 1-year .net programmer, self taught. My learning has been based on necessity, seems I am needing again... In my VisualStudio.net project, I need to have a message box appear when a user clicks the web.control submit button. I have several of these buttons which have some vb code...
Back
Top