I am using Powerpoint 2007 and i want to program a macro which makes a textbox in a slide. However the text in the textbox is aligned to center by default. I want to align it left, but I don't know how to do. How can I change alignement of this textbox?
Here is my code.
Set objPPT = CreateObject("PowerPoint.Application")
Set SQ = objPPT.Presentation
......
SQ.Slides(i + 6).Shapes.AddTextbox(msoTextOrientationHorizontal, 50, 100, 600, 100).Select
objPPT.ActiveWindow.Selection.TextRange.Text = titre
