Це відео не доступне.
Перепрошуємо.

How to convert Word documents to PDF file in C# Application

Поділитися
Вставка
  • Опубліковано 11 лют 2021
  • How to convert a Microsoft Word documents to PDF file in C# Application
    Doc, Docx to Pdf
    Please subscribe my channel
    #MicrosoftWord #PDF #Csharp

КОМЕНТАРІ • 14

  • @mhassaan7405
    @mhassaan7405 3 роки тому

    Very Helpful Video Keep It Up

  • @StillDotes
    @StillDotes 3 роки тому

    Nice 👍

  • @anasytb3197
    @anasytb3197 5 місяців тому

    merciiiii bcpppppp

  • @OLDGAMERCHAN
    @OLDGAMERCHAN 3 роки тому

    I appreciate your work very nice...
    I hope you reach millions of subscribers u deserve it..
    And i think that it could be better if you use a microphone and explain while coding..

    • @Illum1ne
      @Illum1ne  3 роки тому

      Thanks! Maybe next time.

    • @mhassaan7405
      @mhassaan7405 3 роки тому

      @@Illum1ne please share code

    • @Illum1ne
      @Illum1ne  3 роки тому

      @@mhassaan7405 Subcribe my channel bro

  • @tydanastydanas5903
    @tydanastydanas5903 2 роки тому

    Thank you for the video.
    Can we get the same thing but with conversion from excel to pdf ?

  • @JUNIORTOBARX
    @JUNIORTOBARX 2 роки тому

    I need help, I would appreciate your help, in my program I have 2 textboxes, source path and destination path, this exercise only has the source path so the documents are always saved where the original word is, my question is if I want to save the pdf in another destination folder that is not the source, what code should I modify?

    • @flyingsnow1357
      @flyingsnow1357 Рік тому

      you can add a button, which prompts the user to save the resultant document (after conversion)

  • @psdeokar
    @psdeokar 8 місяців тому

    very nice . but my word file get opened while selected

  • @zegular
    @zegular 3 роки тому

    I tried to create this program but I am getting "COMException was unhandled" error. Can you help me out, please!

    • @Illum1ne
      @Illum1ne  3 роки тому

      Check the codes again, Maybe there are missing line or something. 🤔

  • @dimashine88
    @dimashine88 2 роки тому

    Здравствуйте! Помогите, пожалуйста при попытке поиска текста через:
    private void SearchReplace()
    {
    Word.Find findObject = Application.Selection.Find;
    findObject.ClearFormatting();
    findObject.Text = "find me";
    findObject.Replacement.ClearFormatting();
    findObject.Replacement.Text = "Found";
    object replaceAll = Word.WdReplace.wdReplaceAll;
    findObject.Execute(ref missing, ref missing, ref missing, ref missing, ref missing,
    ref missing, ref missing, ref missing, ref missing, ref missing,
    ref replaceAll, ref missing, ref missing, ref missing, ref missing);
    }
    Выскакивает ошибка:
    System.AccessViolationException: "Попытка чтения или записи в защищенную память. Это часто свидетельствует о том, что другая память повреждена."