Search results for query: *

  1. L

    datagrid/dataset question

    hi. i've already found the answer, through msdn of course. and just to share it. here's the code i used. Private Sub S_PutValue(ByVal ds As DataSet) ' Get Each DataTable in the DataTableCollection and ' print each row value. Dim intTotalRow As Integer = Me.dgv_Payment.RowCount - 2 Dim...
  2. L

    datagrid/dataset question

    hi. i hope you could help me with my problem. i need to import to a dataset the contents of an unbound datagrid. how do you think i could do that? please help! thanks.
  3. L

    running an exe file from within a program

    thanks. there was no problem with the code. i forgot to check the dependencies of the program being called.
  4. L

    running an exe file from within a program

    hi. i have the following code in running the program. Dim program As New Process() program.StartInfo.FileName = "ProgName.exe" program.StartInfo.Arguments = " " program.Start() the Progname.exe is a program is a vb.net program too. when i run it, it shows a dialog box with the...
Back
Top