View Single Post
 
Old 02-19-2012, 02:51 AM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,912
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

Something like this maybe:

Code:
  With .Cell(iRow, iColumn).Shape.TextFrame.TextRange
                .Text = "Spørgsmål " & vbNewLine & questions(iColumn - 1, iRow - 1) & vbNewLine & "Svar " & vbNewLine & answers(iColumn - 1, iRow - 1)
                With .Font
                   .Name = "Verdana"
                   .Size = "14"
                End With
                With .ActionSettings(ppMouseClick)
                If iRow = 1 And iColumn = 1 Then
                .Action = ppActionRunMacro
                .Run = "myMacro"
                End If
                End With
            End With
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote