Search results for query: *

  • Users: ricio2000
  • Content: Threads
  • Order by date
  1. R

    ModalDialog Form Concern

    I have the following issue concerning a Modal Dialog. This dialog pops up when I click on an image button in a parent form. Parent Form contains imgButtonX and when I click this button the Modal Dialog pops up. I enter information and then save the modal, at that point I have some javascript...
  2. R

    Radio Button List Client Side Validation

    Does anybody know how to implement client side validation on the text of the selected radio button in a RadioButtonList server control. What needs to occur is that a dropdown list control will be selected. The text is will be something like "RuleX". I will the need to grab the string "RuleX"...
  3. R

    Combo box mission impossible

    I have a combo box who's datasource is set to a dataset when the form loads. This combo sets another combo box based on what was selected from the first combo box. I have a clear button, I want to be able to clear the contents of both combo boxes when the button is pressed. I set the datasource...
  4. R

    DataGrid Madness!!!!!!!

    Hi everybody, I have a datagrid that is being populated from a dataset. I want to be able highlight a row and populate the information in the current highlighted row into text boxes whenever i click a button i have called btnModify. Once the information is in the text box. The rest is smooth...
  5. R

    txtBox Error checking

    Hello Fellow Developers and Computer Science Junkies, I had a situation where I am not sure how to go about implementing. I have several txt boxes that will be updated into a database. All are strings and in the database will be char values. I don't want a user to be able to leave anything...
  6. R

    TabPage overwhelming situation

    I'm having a hard time finding a way to disable clicking between tab pages or even allowing the user to use the arrows to do this. If they do, they will encounter an error stating that they must finish editing, before they go to the next tabpage control. In a nutshell, how can I achieve this...
  7. R

    TabPages question

    I have the following scenario. I wish when somebody enters a form. The user will not be able to click on any tab page. Disable the clicking event on every single tab page except for one until I re-enable it upon them clicking certain buttons. Would this be somthing that will have to be done on...
  8. R

    combobox datasource

    Hi everybody, I had an issue where I have a combobox that gets populated from a DataSet. Dim dataTableObj As DataTable = customerDataSet.item("customer") cbCompany.DataSource = dataTableObj I have another comboBox named companyType I'm populating the cbCompany comboBox based on the value of...
Back
Top