Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Signature
vb.net
vb.net
Public Sub CreateOpen(ByVal stream As System.IO.Stream)

...

Param
stream
stream

The stream to open the file from.

Example
Code Block
csharp
csharp
titleC#


          PowerPointApplication ppta = new PowerPointApplication();
          FileStream fStrm = new FileStream(@"C:\Sales\2003\June.pptx", FileMode.Open);
          Presentation pres = ppta.Open(fStrm);
        
Code Block
vb.net
vb.net
titlevb.net


          Dim ppta As New PowerPointApplication()
          Dim fStrm As FileStream = New FileStream("C:\Sales\2003\June.pptx", FileMode.Open)
          Dim pres As Presentation = ppta.Open(fStrm)