Humm Bob, thank you very much for the simplest answer I could dream of. I had not even think about the RunCommand method. Funny coz I do used it to save a record and other useful thing.
I really appreciate that you spent a few minutes answering this one.
Daniel
Here's the somple code that I can now use:
Private Sub Form_Load()
If Me.OpenArgs = "NewEntry" Then
Me.sforTesting.SetFocus
DoCmd.RunCommand acCmdRecordsGoToNew
DoCmd.GoToControl "FinDetailMontant"
End If
End Sub
Daniel