Recent content by Joseph Yeo

  1. J

    Referencing a value in a list box?

    Try [Forms]![formname]![lstLOPID].Column(0) and play around with that.
  2. J

    auto fit to screen forms

    Look at the number of lives you have saved Anauz. Please email me a copy too. I had racked my brains and spent countless hours developing two separate copies of my forms. Thanks in advance. My email is ozcljoe@aol.com
  3. J

    Freeze columns and rows in Form

    Does anyone know how to freeze both columns AND rows (like in Excel), on either continuous forms or datasheet? In datasheet one can freeze the column but not the row.
  4. J

    Had To Repost This - Need Help Urgently

    Found it!! Thanks anyhow. For those who encountered the same problem, the answer can be found in: http://support.microsoft.com/support/kb/articles/Q131/8/29.ASP?LN=EN-AU&SD=gn&FR=0 "How to use the Seek method on linked tables"
  5. J

    Had To Repost This - Need Help Urgently

    I have the following codes which works perfectly: Dim Db As Database Dim Rs As Recordset On Error GoTo ErrorControl Set Db = CurrentDb Set Rs = Db.OpenRecordset("Clients") Rs.Index = "PersonID" Rs.Seek "=", CLng(PersonID) However, after splitting the database, I get an error message on this...
  6. J

    Form in Datasheet view needs locking - How?

    I have a form in datasheet view. I would like to prevent users from dragging and modifying the column width. Please tell me how to do this. Why use a datasheet? because I need the freeze column ability not available in a continuous form.
  7. J

    Split Database would not recognise .Index

    I have the following codes which works perfectly: Dim Db As Database Dim Rs As Recordset On Error GoTo ErrorControl Set Db = CurrentDb Set Rs = Db.OpenRecordset("Clients") Rs.Index = "PersonID" Rs.Seek "=", CLng(PersonID) However, after splitting the database, I get an error message on this...
Back
Top Bottom