Windows forms

Dim doc As Aspose.Word.Document

Try

doc = Create()

doc.Save(String.Format("C:\Documents and Settings\Administrador\Mis documentos\Visual Studio Projects\Pintado\Documentos\Pa1.doc"), SaveFormat.FormatDocument, SaveType.OpenInWord, here aspose requieres response)

I work in windows forms how can I show my recent create document y word.???

Catch a As Exception

MsgBox(a.Message)

End Try

Hi,

Thank you for considering Aspose.

The overload of the Save method you are using is applicable in ASP .NET for sending the document to the client browser. To save the document on the local machine, you should use other overloads as described here:

https://docs.aspose.com/words/net/save-a-document/

But what do you mean by “show my recent create document y word”? Please elaborate this.

How can I show my recent document after save , open in word

Thanks

Do you need to obtain the list of recently opened document from Word? If so, I’m afraid Aspose.Word does not allow this.

Or do you need to open the saved document in Word? If so, use the following line of code:

System.Diagnostics.Process.Start(pathToDoc);

If I misunderstood you again, please correct me.