Search results for query: *

  1. R

    ModalDialog Form Concern

    Well, I had begun to type the code for you, but this application crashed on me. Never mind, I got it working. Thanks anyways.
  2. 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...
  3. 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"...
  4. R

    Returning Very Large Datasets?

    Wow, this is an interesting issue. Your main concern are timeouts. Sounds your gonna to need a strong T3 connection or more powerful, small companies can't afford this type of technology. I would say paging is the way; I was speaking to a collegue, he mentioned have the stored procedure that...
  5. 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...
  6. 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...
  7. R

    txtBox Error checking

    I decided to go with the error control approach. In the leave event, I would set the control's errortext to somethign meaning ful, and if when they hit save at the end, the error control is not blank. Then display an error telling to please see above and fix the errors as requiered. The error...
  8. R

    interview coding test question

    Wow, I've had a few. Sometimes they give you a sheet of paper in code, and they'll ask you to change it. How would you make it better?. They may also ask you questions concerning the language. For example Classes, what is the difference between Friend, Public, Protected, Private. Same question...
  9. 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...
  10. R

    TabPage overwhelming situation

    Yes Yes, that would have been a more ideal solution. I will stick with the tab pages soluation though. Thank you for your help.
  11. R

    TabPages question

    Kind of serves my purposes but not quite. I basically don't even want to blind when I change to another tab. Just display a message indicating save or cancel before jumping to another tabpage. Same principle if i try to do that with the keyboard. Now, I'm sure there's a way to do this. I was...
  12. 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...
  13. R

    vb.net combox headache

    I had this same issue yesterda, but nobody really helped me, but I will help you. If you are familiar with ADO.net specifically an SqlDataAdapter and a DataSet. I did this using the DataSource property of the ComboBox class. I have a companytype comboBox and a company ComboBox. Certain companies...
  14. R

    TabPages question

    I guess what I'm trying to say is, I want to disable a tabpage from being clicked. How would I go about doing this ? Gracias
  15. 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...
  16. R

    combobox datasource

    I guess this can be closed. I figured it out. The problem is that I wasn't clearing the customerDataSet.Tables("customer")... so when I called the fill method. It was adding duplicate rows. I fixed this by checking that the customerDataSet.Tables("customer") was not nothing and that...
  17. R

    combobox datasource

    huh? Well, what I'm doing is the following I have these two combo boxes. And I have this DataSet that I'm filling with two tables, one table contains the column customerType, the other table contains the customernames and customertypes, but the second table was a query that did a select based...
  18. 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