Search results for query: *

  • Users: odelya
  • Content: Threads
  • Order by date
  1. O

    how to update a datatable to access

    hi! i have this datatable: adpt = New OleDbDataAdapter("select * from design where id=2", cnn) adpt.fill(header) header.Rows(0).Item("font") = lbl.Font header.Rows(0).Item("fore_color") = lbl.ForeColor header.Rows(0).Item("font_size") = lbl.Font.Size header.Rows(0).Item("italic") =...
  2. O

    trim a file name from openfiledialog

    hi! i have an openfiledialog. i want only the name+postfix of the file. in asp.net i have this code: sFileName = Right(Submit1.PostedFile.FileName.Trim, _Len(Submit1.PostedFile.FileName.Trim) - i) (i can write openfiledialog.filename.trim instead of submit1.postfile.filename) but in vb.net...
  3. O

    can not update commnad

    i am tryning to update my access database, but i get this error message: An unhandled exception of type 'System.InvalidOperationException' occurred in system.data.dll Additional information: Update requires a valid UpdateCommand when passed DataRow collection with modified rows.
  4. O

    how to find a file

    i would like to use "shell" command in vb.net in order to start internet explorer with a webapplication. what do i write?
  5. O

    find a file

    i open a file throught the internet explorer. how can i find where the iexplore.exe file is located on the user computer?
Back
Top