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 Chris Miller 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: *

  • Users: raabbasi
  • Order by date
  1. raabbasi

    Some DataRelation tasks

    Probably, a more appropriate and refined way of my question is that how can I enforce Referential Integrity between 2 or more of my DataTables in VB.NET. Please help.
  2. raabbasi

    Some DataRelation tasks

    I am new to ADO.NET. I wish to know how to set a DataRelation object so that; If a row in the Parent DataTable be deleted, the corresponding rows in any Child DataTable objects are also automatically deleted. If the value of the primary key field in the parent row is modified, the change...
  3. raabbasi

    Request for further help in Adding ComboBox to DataGrid control

    I have copied the DataGridCboBoxColumn class into my project and tried to use it on Windows Form as suggested by cmn2 on 16 Nov 05 in this forum. Let me repeat the rest of my problem: I dropped a DataGrid control & a ComboBox control on the form at design time and populated them with data at...
  4. raabbasi

    Request for further help in Adding ComboBox to DataGrid control

    I tried the solution for "Adding ComboBox to DataGrid control" posted on 16th. November. I could not understand the DataGrid part of it. I dropped a DataGrid control & a ComboBox control on the form at design time and populated them with data at run-time. Both the controls are displaying data...
  5. raabbasi

    Using .NET Framework 2.0

    I appreciate your consistent response. Regards. R. A. Abbasi
  6. raabbasi

    Using .NET Framework 2.0

    Thanks Christiaan Baes for the response. Is VB.NET Express Edition fully functional for developing small-scale applications or is it for learning purpose only? Please let me know. R. A. Abbasi
  7. raabbasi

    Using .NET Framework 2.0

    After installing Microsoft .NET Framework 2.0 on top of Microsoft .NET Framework 1.1, how can I use the later Framework version, in my already installed, VB.NET 2003 programs instead of the earlier one? Any advice will be appreciated. R. A. Abbasi
  8. raabbasi

    How to retrieve Update Query generated by the CommandBuilder

    Sorry, both of you are right. Thanks and regards. R. A. Abbasi
  9. raabbasi

    How to retrieve Update Query generated by the CommandBuilder

    I don't think CommandText has anything to do with the CommandBuilder object.
  10. raabbasi

    How to retrieve Update Query generated by the CommandBuilder

    I tried the expected GetUpdateCommand method of the CommandBuilder object to retrieve the Update Query generated by the object. But, it just returns the fully qualified name of the object ("System.Data.OleDb.OleDbCommand"). I could not find any other way. If anyone can let me know, how can I get...
  11. raabbasi

    Problem with using UpdateCommand property of the DataAdapter

    Great help from Steve. Thanks and best regards.
  12. raabbasi

    Problem with using UpdateCommand property of the DataAdapter

    OleDbCommandBuilder was not supposed to be included. Please elaborate more on the suggestion "amend the DataRows returned from the resulting select query and then update the dataset". I am precisely interested in using the Update method of the DataAdapter object. Regards.
  13. raabbasi

    Problem with using UpdateCommand property of the DataAdapter

    The following procedure does not Update the record(s). '--------------------------------------------------------- Private Sub btnUpdate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnUpdate.Click Dim dadapter As OleDbDataAdapter = New OleDbDataAdapter...
  14. raabbasi

    Problem with using InsertCommand property of the DataAdapter

    Unfortunately there is no help pertaining to this particular scenario. A solution with the Update method of the DataAdapter (Not using the ExecuteNonQuery method of the Command object) will be highly appreciated.
  15. raabbasi

    Problem with using InsertCommand property of the DataAdapter

    Thank you very much Christiaan Baes for the response. The ExecuteNonQuery method is quite straightforward. As a matter of fact, I am interested in finding a solution with the Update method of the DataAdapter for an academic purpose and I believe, there will be a way to do it. Further help will...
  16. raabbasi

    Problem with using InsertCommand property of the DataAdapter

    The following procedure (refined from the previous one) still does not actually commence the InsertCommand property to physically insert a row into the DataSet. '--------------------------------------------------------- Private Sub btnInsert_Click(ByVal sender As System.Object, ByVal e As...
  17. raabbasi

    Updating DataSet using InsertCommand property of the DataAdapter

    Thanks Andrea for the reply. I want the concept cleared. I had added the table "dt" in an attempt to meet the Update rquirement of a DataTable. My confusion is that do not the following lines of code fill the table: .... Dim DS As DataSet = New DataSet da.Fill(DS, "Customers") ...
  18. raabbasi

    Updating DataSet using InsertCommand property of the DataAdapter

    I retrieved the following function from VB.NET help and added a few statements for updating the datasource. But, it does not actually commence the InsertCommand property of the DataAdapter in order to physically insert a row into the DataSet. Please help...
  19. raabbasi

    File operations in JavaScript

    Actually, I just want to get some of my concepts and confusions cleared. Let me start coding something and then I may get back to the forum for further explaination. Thanks and regards.
  20. raabbasi

    File operations in JavaScript

    No, no, I mean calling JavaScript routine(s) from within ASP code - how to do it! Secondly, what if I intend to manipulate my files on the Server using JavaScript? Sorry for not being able to convey my confusions clearly.

Part and Inventory Search

Back
Top