Search results for query: *

  1. D

    Database update error

    PublicSub UserLog_Update(ByVal Username AsString, ByVal StatusText AsString) Try If conn.State = ConnectionState.Open Then conn.Close() EndIf Dim sql AsString = "SELECT * FROM USER_LOG" Dim dbcmd AsNew OleDbCommand(sql, conn) Dim da AsNew OleDbDataAdapter(dbcmd) Dim cb AsNew...
  2. D

    Database update error

    Ok, i'll do dat and update!!
  3. D

    Database update error

    I did the following changes and im getting an error. PublicSub UserLog_Update(ByVal Username AsString, ByVal StatusText AsString) Try If conn.State = ConnectionState.Open Then conn.Close() EndIf 'conn.Open() Dim sql AsString = "SELECT Index, UserId, UserStatus, [TimeStamp] FROM USER_LOG" Dim...
  4. D

    Database update error

    i want 2 update an access datavase frm my v.net program. d code is below: Public Sub UserLog_Update(ByVal Username As String, ByVal StatusText As String) Try conn.Open() Dim sql As String = "SELECT * FROM USER_LOG" Dim dbcmd As New OleDbCommand(sql...
  5. D

    Load a entire column into a combo box

    yes, i want to modify a specific field with new data. Not all d values, but a specific row. I would like to populate it like u (to Cmr) have done it, i.e. programically thanks!!
  6. D

    Load a entire column into a combo box

    i got it, its working....... thanx now how can i do d other way around.... like modify data of a specific field if d table of a specific row, from string typed on a textbox.
  7. D

    Load a entire column into a combo box

    one column i meant, not row! a column has one data type representing one field, isnt it??
  8. D

    Load a entire column into a combo box

    Hi, i am new to ADO.NET!! How am I to retrieve an entire column from a table of a MS Access database into a combo box using DataAdapters, DataReaders, etc !! I need code.. Thanks, Ray PS: I'm using VB.NET 2003.
  9. D

    Multiple data reader.

    Hi, everyone, I am Ray, I am new member of this VB.NET forums community. Its is really a nice place for noobs and gr8 programmers.. Anyways, I havebeen given a project of developing POS (Point Of Sale) program. I am using VB.NET 2003 and ADO.NET for data access. Microsoft Access 2003 being my...
Back
Top