Thanks agraham. I was just looking at that and was going to ask how to do it. I really appreciate your help.
...
Just tested and works like a charm. Here's the simple code for everyone else:
Add Door.dll to your project. Use Add Object to add "Object" and call it obj1.
Code:
obj1.New1(false)
obj1.FromControl("Form1")
...
Make sure form1 is visible first
...
if obj1.GetProperty("AutoScroll") = True then obj1.SetProperty("AutoScroll",False)
I guess you could just skip the test for True and set it to false always:
Code:
obj1.SetProperty("AutoScroll",False)
Thank you agraham and Erel for the fix.