Advertisement
TLama

Untitled

Nov 7th, 2014
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.27 KB | None | 0 0
  1. type
  2.   TForm1 = class(TForm)
  3.   protected
  4.     procedure CreateParams(var Params: TCreateParams); override;
  5.   end;
  6.  
  7. implementation
  8.  
  9. procedure TForm1.CreateParams(var Params: TCreateParams);
  10. begin
  11.   inherited;
  12.   Params.ExStyle := Params.ExStyle or WS_EX_LAYOUTRTL;
  13. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement