Is it possible to display a button such that it is placed on the right of the screen? Is so, how?
Is the tool in a toolbar? If so, you can do it like this: set the UltraToolbar.Settings.FillEntireRow to True. Insert a LabelTool (with no caption) to the left of the tools you want right-aligned. Set the LabelTool.InstanceProps.Spring to True. At run-time, the LabelTool will take up all unused space in the toolbar and all tools to the right of it will be right-aligned in the Form.
Thanks Mike.
I displayed Button control right aligned using your approach.
It worked for me.
Thanks
Imran