Search results

  1. J

    Huge table checkbox and bugged table hyperlink

    Hi folks, I just had 2 problems with access table. One is the table yes/no checkbox. When I increase the size of the cell, the size of checkbox increases as well and it becomes very big and ugly. The other problem is the table hyperlink. This only happens when I use access 2010 and it works...
  2. J

    Can't update field after requery

    Hi folks, just have a stupid question to ask for help When I try to update some of records from subform by code Me.Text10 = .Fields("Car") This one will not work after code me.subformA.form.requery it indicates that the value isn't valid for the field. I really have no idea how this...
  3. J

    Need Help with VBA code

    I really need help with my VBA code problem 1 Dim sBody As String Dim rst1 As DAO.Recordset Set rst1 = db.OpenRecordset("Select * From OilSampleEmail") While Not rst1.EOF sBody = "<html><body><p>" & sBody & Nz(rst1!Set, "") & " " & Nz(rst1!Car, "") & "</p></body></html>" rst1.MoveNext...
Top Bottom