Again, post Access questions in the Access Forums - you'll get more responses.
If your form is in "datasheet view", then on the OnOpen event, you can place code such as, (This example shows three columns being frozen. Change fieldnames to yours and subtract or add fields)
Private Sub Form_Open(Cancel As Integer)
Me.Controls("BillID").SetFocus 'Column Name to freeze
DoCmd.RunCommand acCmdFreezeColumn
Me.Controls("strDescription").SetFocus
DoCmd.RunCommand acCmdFreezeColumn
Me.Controls("IntVendorID").SetFocus
DoCmd.RunCommand acCmdFreezeColumn
End Sub