Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. KiaKia

    Combobox configuration in VS2008

    I do not know any thing about datareaders. What is the difference? whould you please explain it for me. Thanks, Kia
  2. KiaKia

    Combobox configuration in VS2008

    Thanks ReverGuy, My first problem is that when I add a combo box to my form and bound it to a data table, I am limited to choose from the items which are present in that data table. I am not able to type in texts to my Combo_box. Would you please help me more on that? Kia
  3. KiaKia

    Combobox configuration in VS2008

    HI, I have recently switched from VBA to VB in VS2008 and am wondering to know if I can configure a combo box so that it is not limited to the items of it's bounded data source. It would be also cool if there is a way to automatically add the new data ( which is not already in the list) to the...
  4. KiaKia

    System.ArgumentException: DataGridViewComboBoxCell value is not valid.

    Hi, What I need to know is the first event which is executing right after I click the X but in my form's control box. Here is the whole story: I get the following error message when Clicking on X but of its control box: System.ArgumentException: DataGridViewComboBoxCell value is not valid. I...
  5. KiaKia

    What is the first event when I close a Form?

    Hi, What I need to know is the first event which is executing right after I click the X but in my form's control box. Here is the whole story: I get the following error message when Clicking on X but of its control box: System.ArgumentException: DataGridViewComboBoxCell value is not valid. I...
  6. KiaKia

    Paniced by "System.Data.DataRowView" in all text boxes

    Thanks Mobius 1983, But where can I find my repeater? Should I send it as an Snippet or It is enough to copy and paste the code to this thread?
  7. KiaKia

    Paniced by "System.Data.DataRowView" in all text boxes

    Hi everyone, I don't know what I have done to my form, but suddenly it started to show the "System.Data.DataRowView" on all bounded text boxes instead of the real values. Any comment will be appreciated. by the way, I am using VS2008
  8. KiaKia

    Paniced by "System.Data.DataRowView" in all text boxes

    Hi everyone, I don't know what I have done to my form, but suddenly it started to show the "System.Data.DataRowView" on all bounded text boxes instead of the real values. Please let me know any comment. by the way, I am using VS2008
  9. KiaKia

    Checkbox Default value in a form

    Hi, I can not set the default value of a checkbox to False on my form. it should be very simple, but I can not figure it out. What I have done is that I added the following codes in the Addingnew procedure of my form's bindingsource. Private Sub Tbl1BindingSource_AddingNew(ByVal sender As...
  10. KiaKia

    Specify Default value for a control in VS2008

    Thank you man, It works very well with a little modification.
  11. KiaKia

    Specify Default value for a control in VS2008

    Thanks, But it did not work. Here is my situation: I have a Parent-Child form. The parent has a combo box (ComboBox1),I need to assign the selected value of this combobox as the default value of a column (Column1) of the child grid. So that each time I add a record to the child grid, Culomn1...
  12. KiaKia

    Specify Default value for a control in VS2008

    Hi, How can I specify a default value for a textbox control in VS2008? I can not find the "Default" property in the Control's property list. Anny comment? Thanks
  13. KiaKia

    Setting a Filter in VB (VS2008)

    Hi, Please let me know how can I pass e variable to a Filter string in VB (VS2008). I tried the following, based on what I used to do in VBA but it does not work. 'Me.SpecTypeBindingSource.Filter = "CPTypeID=" & MyVar
  14. KiaKia

    How do I save record modifications in the SQL database

    Hi Harleyquinn, I have added "Customer" and "SalesOrderDetail" tables to my form as data bindings. And here is the code in Click event of the form's save item. Private Sub CustomerBindingNavigatorSaveItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  15. KiaKia

    How do I save record modifications in the SQL database

    Hi everyone, I am new in SQL, and Visual Studio 2008, I am following the "Walkthrough: Creating a Simple Data Application" at the end I modify some records and save them before closing my application form. but when I re-execute my application, all modifications are gone, seems like the changes...
  16. KiaKia

    Walkthrough: Creating a Simple Data Application?

    Hi everyone, I am new in SQL, and Visual Studio 2008, I am following the "Walkthrough: Creating a Simple Data Application" at the end I modify some records and save them before closing my application form. but when I re-execute my application, all modifications are gone, seems like the changes...
  17. KiaKia

    Why I'm not able to save modified records in my SQLDB?

    Hi everyone, I am new in SQL, and Visual Studio 2008, I am following the "Walkthrough: Creating a Simple Data Application" at the end I modify some records and save them before closing my application form. but when I re-execute my application, all modifications are gone, seems like the changes...
  18. KiaKia

    create an interactive dialog box and get some info from the user

    Hi everyone, I wonder to know if it is possible to make an interactive dialog box using VBScrip, so the user can enter one or more information that I need to combine them to create a folder?
  19. KiaKia

    Filtering a form in VB.net

    Hi Ron, What I am trying to do is to open a form which presents just a number of records which are matched with my criteria. What I have done untill know is that I created a form binded to a tableadapter which is connected to a MS ACCESS table as the datasource. I open the form with "myForm...

Part and Inventory Search

Back
Top