Search results for query: *

  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

    find a file

    anoter question thanx,it helped. but now i have another question. i wrote this "shell" command to open a asp.net file to be run as a web page. for example. i have in directory: c:\inetpub\wwwroot\odshir a solution. the start up file is main_page.aspx i want the asp.net to be run. i wrote...
  3. 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...
  4. O

    can not update commnad

    doesnt help i still get the message: (i had the dataadopter!) An unhandled exception of type 'System.Data.OleDb.OleDbException' occurred in system.data.dll
  5. O

    can not update commnad

    what i wrote i didn't understand the answer there. is there something less complicated? i wrote like that: sql = "update categories set checked = 1 where id=2" datacmd = New OleDbCommand(sql, cnn) datacmd.ExecuteNonQuery() but at runtime I get: An unhandled exception of type...
  6. O

    how to find a file

    local host thanx, but i want the application to start from local host. how can i define it?
  7. 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.
  8. 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?
  9. 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?
  10. O

    copy folder content to other location

    i want to thank you thanx a million for the code. it helped alot. i have a simple question: how do i run a webapplication on the local host, with the "shell" command? for example: shell("c:\inetpub\wwwroot\odshir\......") i also want the start up page to be shown first as i programmed in the...
Back
Top