You cannot change the properties at runtime as you'll have to go into design
view to modify the properties.
acDataSheetOnBottom
acDataSheetOnLeft
acDataSheetOnRight
acDataSheetOnTop
example: Forms!YourFormName.SplitFormOrientation = acDataSheetOnLeft
I don't know the constant number but it should be somethinglike 0,1,2,3.
Check out 2007 Help.
But you'll not be able to modify the constant from your form but you can
modify it if you create a code from another form. Create another with command
buttons to try it out.
Private Sub Command0_Click()
Docmd.openform "YourFormName", acDesign,,,,acHidden
'You may or may not want to save the form
Docmd.save acForm, "YourFormName"
Forms!YourFormName..SplitFormOrientation = acDataSheetOnLeft
Docmd.openform "YourFormName", acNormal,,,,acWindowNormal
End Sub
It may not be a solution, but you give the idea. Test with 2007 SP1.
--
Please Rate the posting if helps you.
.