Sort Score
Result 10 results
Languages All
Labels All
Results 6,931 - 6,940 of 10,846 for

formatting

(0.09 sec)
  1. Bug Fixes in GroupDocs.Metadata for .NET v17.10.1

    GroupDocs team is proudly announcing the release of version 17.10.1 of the GroupDocs.Metadata for .NET API. Based on our customer’s feedback provided on our public forums, we have fixed number of bugs in this hotfix release. We recommend you to download or update your applications to use the latest version of the API for a better and smoother experience. Version 17.10.1 of the Metadata Extraction API - Bug Fixes Following are the bug fixes in this new version.... Presentation format field displays Russian text...

    blog.groupdocs.com/metadata/hot-fixes-in-groupd...
  2. Scrambled output issue is resolved in GroupDocs...

    Monthly release of GroupDocs.Comparison for .NET 18.4 comes with some major bug fixes. Issues such as comparing data in tables and comparison of table of contents are resolved. This release implements comparison of HTML documents as well. Please follow the release notes here for further details. We’d recommend you to download latest version of the API and share your feedback. Features Implement Comparison.Html Bug Fixes Issues in comparison of table of contents Fatal error in ParagraphDiffIndex Issues with comparing data in tables PPTX comparison output is hidden under some panel PDF Comparison - scrambled/text overlapped output API Resources Here are a few channels and resources for you to download, learn, try and get technical support on GroupDocs....Downloads - MSI Package and Zipped Format Nuget Package - NuGet Install...

    blog.groupdocs.com/comparison/scrambled-output-...
  3. extract images

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats....中文 中國傳統的 Portable Document Format (PDF) is een populair en veelgebruikt...

    blog.groupdocs.com/nl/tag/extract-images/
  4. Convert PDF on GroupDocs Blog | Document Automa...

    Convert PDF on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Convert PDF on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers C......convertir des documents PDF au format HTML à l'aide de Java....

    blog.groupdocs.com/fr/tag/convert-pdf/index.xml
  5. Convert PDF to HTML on GroupDocs Blog | Documen...

    Convert PDF to HTML on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Convert PDF to HTML on GroupDocs Blog | Document Automation Solutions for .NET & J......convertir des documents PDF au format HTML à l'aide de Java....

    blog.groupdocs.com/fr/tag/convert-pdf-to-html/i...
  6. Install GroupDocs.Viewer for Node.js via Java |...

    This topic describes how to install GroupDocs.Viewer for Node.js....converts a document to HTML format. The output will contain rendered...rendered pages in HTML format. Additional tips Here are some troubleshooting...

    docs.groupdocs.com/viewer/nodejs-java/installat...
  7. Sloučit soubory PDF, Word, Excel, PowerPoint v ...

    Programově slučujte dokumenty PDF, Word, tabulky a prezentační soubory v rámci aplikací založených na .NET pomocí rozhraní Merger API od GroupDocs v C#....txt) Portable Document Format File (.pdf) Portable Network...Slide Show (.pps) Rich Text Format File (.rtf) Tab Separated Values...

    blog.groupdocs.com/cs/merger/merge-pdf-word-exc...
  8. Unisci file PDF, Word, Excel, PowerPoint in C# ...

    Unisci a livello di codice PDF, documenti Word, fogli di calcolo, file di presentazione all'interno delle tue applicazioni basate su .NET utilizzando l'API Merger di GroupDocs in C#....txt) Portable Document Format File (.pdf) Portable Network...Slide Show (.pps) Rich Text Format File (.rtf) Tab Separated Values...

    blog.groupdocs.com/it/merger/merge-pdf-word-exc...
  9. Mesclar arquivos PDF, Word, Excel, PowerPoint e...

    Mescle PDF, documentos do Word, planilhas e arquivos de apresentação programaticamente em seus aplicativos baseados em .NET usando a API Merger do GroupDocs em C#....txt) Portable Document Format File (.pdf) Portable Network...Slide Show (.pps) Rich Text Format File (.rtf) Tab Separated Values...

    blog.groupdocs.com/pt/merger/merge-pdf-word-exc...
  10. C#を使用してデータベースファイルからデータを抽出する

    データベース は、ほとんどのアプリケーションの不可欠な部分であると見なされています。デスクトップ、Web、またはモバイルアプリケーションのいずれであっても、データベースはデータの保存、アクセス、および操作において重要な役割を果たします。あなたのためにデータベースを作成して管理することを可能にする多くのデータベース管理システムがあります。 ただし、データベース管理システムをインストールしたり、SQLクエリを記述したりせずに、データベースファイル(**。db **ファイル) からデータを抽出する方法が必要な場合があります。このような場合、データベースファイルをどのように解析し、そこからデータを取得しますか? この記事では、SQLクエリを記述せずにSQLiteデータベースのテーブルからデータを簡単に抽出できることを示します。 ADO.NET。 SQLiteデータベース(.db) のテーブルからデータを抽出する手順 1. VisualStudioで新しいプロジェクトを作成します。 2. NuGet から GroupDocs.Parser for.NET をインストールします。 3. 次の名前空間を追加します。 using System; using System.Collections.Generic; using System.IO; using GroupDocs.Parser.Data; using GroupDocs.Parser.Options; 4. 接続文字列を準備します。 string connectionString = string.Format("Provider=System.Data.Sqlite;Data Source={0};Version=3;", "sqlite.db"); 5. パーサー オブジェクトにデータベースファイルをロードします。 using (Parser parser = new Parser(connectionString, new LoadOptions(FileFormat.Database))) { // あなたのコードはここに行きます } 6. Parser.GetToc メソッドを使用して、データベース内のテーブルのリストを取得します。 // テーブルのリストを取得する IEnumerable toc = parser.GetToc(); 7. テーブルを繰り返し処理し、データを抽出します。 // テーブルを反復処理します foreach (TocItem i in toc) { // テーブル名を印刷する Console....Format("Provider=System.Data.Sqlite;Data...string connectionString = string.Format("Provider=System.Data.Sqlite;Data...

    blog.groupdocs.com/ja/parser/extract-data-from-...