Recent content by agalanido

  1. A

    Login Form + Code

    Using ADO Connection Using ADO Connection is more faster than using DAO. Here is a sample of password checking using ADO for your reference. Private Sub cmdOK_Click() CurUser = UCase(Me.txtUserName) rs.Open "Select * from User_SecurityInfo where UserID= '" & CurUser & "'", db...
  2. A

    OLE in Data Access Page

    I suggest not to put the image file inside the Database instead put it on the other folder and instead of using OLE field use image and point the path to the location of pictures. because storing pictures on MS Access database it will make your MDB file big enough to crash the database.
  3. A

    Combobox Question!!! Help

    Yes, you can. You have to add the value on the "row source" of your combobox.
Back
Top Bottom