Search results for query: *

  1. M

    Problem updating database with da.Update

    xml i see your private msg i use this code and it give me a good result Dim ds As New DataSet, Sql As String = "", cmd As New SqlClient.SqlCommand Dim da As New SqlClient.SqlDataAdapter("select * from commpany", db) da.AcceptChangesDuringUpdate = False ' this line very important...
  2. M

    Protecting my DLL

    ok take this carzy idea for each function you have in your dll add an argument to it like public function XXXXX(byval yourvar,byval licenskey as string) and make your oun string and then for the begin of each function make that if licenskey <> "your oun string" exit function and soo on
  3. M

    xml to dataset to database

    thanks to all i solved
  4. M

    xml to dataset to database

    thanks all
  5. M

    xml to dataset to database

    hi akhhttar my program is to transfer data from one place to another i read the data on dataset and then write to xml with xmlwritemode.writeschema from my code i have that error Prepared statement '(@ItmCode nvarchar(25),@itmBarCode nvarchar(20),@ItmArabName nva' expects parameter...
  6. M

    xml to dataset to database

    any one help please
  7. M

    xml to dataset to database

    please any one tel me what is wrong i try to read an xml file to dataset and update an table on my database her is my code Dim ds AsNew DataSet, Sql AsString = "", cmd AsNew SqlClient.SqlCommand Dim dv As DataView Dim dai AsNew SqlClient.SqlDataAdapter("select * from Items", db) 'dai.Fill(ds...
Back
Top