how to insert microsoft equation 3.0 with vba

  • Thread starter Thread starter fer555
  • Start date Start date
F

fer555

I am trying to insert a microsoft equation 3.0 by using vba. Is it possible
to do that?
Please give me some hints.

Thanks
 
Straight from the Recorder:

Sub Macro1()
'
' Macro1 Macro
' Macro recorded 11/8/2008 by James Ravenswood
'

'
ActiveSheet.OLEObjects.Add(ClassType:="Equation.3", Link:=False, _
DisplayAsIcon:=False).Activate
Range("A1").Select
End Sub
 
Back
Top