Hey,
Now are we talking a windows or web application? If you are talking web, do you have the pageLayout set to GridLayout and not FlowLayout. For web you want to use a style attribute, and set the following attributes:
position:absolute;left:40px;top:0px;
For a control you can define it as:
<asp:HyperLink id="HyperLink1" style="Z-INDEX: 101; LEFT: 176px; POSITION: absolute; TOP: 208px" runat="server">HyperLink</asp:HyperLink>
Or specify the style in the code-behind. I thought you were talking windows.
Brian
|