align the project

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • mgokkaya
    No longer a forum member
    • Apr 2006
    • 191

    align the project

    how can i align my project to the right end of the screen automaticly???
  • RizlaUK
    Indigo Rose Customer
    • May 2006
    • 5478

    #2
    its all in the manual, its a good read and it saves time


    put this in page>onshow
    Window.SetPos(Application.GetWndHandle(), 0, 0);
    Embrace change in your life, you never know, it could all work out for the best

    Comment

    • mgokkaya
      No longer a forum member
      • Apr 2006
      • 191

      #3
      Originally posted by RizlaUK View Post
      its all in the manual, its a good read and it saves time


      put this in page>onshow
      but this aligns it to the left...
      i want right side

      Comment

      • RizlaUK
        Indigo Rose Customer
        • May 2006
        • 5478

        #4
        to the right
        display = System.GetDisplayInfo();
        appwindow = Window.GetSize(Application.GetWndHandle());
        Window.SetPos(Application.GetWndHandle(), display.Width - appwindow.Width, 0);
        Embrace change in your life, you never know, it could all work out for the best

        Comment

        Working...
        X