Sort Score
Result 10 results
Languages All
Labels All
Results 5,251 - 5,260 of 10,838 for

formatting

(0.08 sec)
  1. Edit Excel Spreadsheets | Online Editing & Prog...

    Discover efficient ways to edit Excel spreadsheets. Either edit XLS/XLSX files online or do it programmatically using C# & Java....editing the content, changing the format, adding records, or inserting...before or choose many different formats like PDF if you want. That’s...

    blog.groupdocs.com/editor/edit-excel-spreadsheet/
  2. חלץ נתונים מקבצי מסד נתונים באמצעות C#

    בסיס הנתונים נחשב לחלק בלתי נפרד מרוב האפליקציות. בין אם זה יישום שולחן עבודה, אינטרנט או נייד, מסד הנתונים ממלא תפקיד חיוני באחסון, גישה ותמרון הנתונים. ישנן מערכות רבות לניהול מסדי נתונים המאפשרות יצירה וניהול של מסדי נתונים עבורך. עם זאת, יכול להיות תרחיש שבו אתה צריך דרך לחלץ נתונים מקבצי מסד נתונים, כלומר קובץ .db, מבלי להתקין מערכת ניהול מסד נתונים או לכתוב שאילתות SQL. איך היית מנתח את קובץ מסד הנתונים במקרה כזה ומקבלים ממנו את הנתונים?...Format("Provider=System.Data.Sqlite;Data...string connectionString = string.Format("Provider=System.Data.Sqlite;Data...

    blog.groupdocs.com/he/parser/extract-data-from-...
  3. Online Signature Plugin from GroupDocs Now Avai...

    Google Chrome users have a reason to get excited. We’ve announced the launch of the GroupDocs Signature plugin for Chrome. This online signature plugin lets you share documents from your Gmail account and collect signatures online. Open the document, upload the signature and send it via email. It takes only seconds to sign documents. Compatibility with popular file-formats is an important feature of the application. GroupDocs Signature is an online signature app that supports signing and sending business documents through a web-browser....Compatibility with popular file-formats is an important feature of...data storage. A wide range of formats are supported so it works for...

    blog.groupdocs.com/signature/online-signature-p...
  4. GroupDocs Blog | Document Automation Solutions ...

    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....edytor tekstu zaczął obsługiwać format przeceny. Ciągły wzrost liczby...łatwy do zrozumienia i analizy format JSON jest jednym z idealnych...

    blog.groupdocs.com/pl/page/13/
  5. Bandingkan Gambar di Java untuk Menyoroti Perbe...

    Bandingkan foto dan gambar Anda secara terprogram di Java. Perbandingan gambar JPG, PNG, GIF, BMP, DICOM, dan gambar lain dalam aplikasi Java Anda.... Seiring dengan format gambar yang paling banyak digunakan...dan GIF, ada berbagai macam format file yang didukung untuk perbandingan...

    blog.groupdocs.com/id/comparison/compare-images...
  6. Преобразование данных JSON и CSV в C# | JSON в ...

    Преобразование JSON в CSV и CSV в JSON на C# в приложениях .NET. В примерах структурированные данные JSON преобразуются в разделенные запятыми значения CSV и наоборот....new SpreadsheetConvertOp() { Format = SpreadsheetFileType.Csv };...= new DataConvertOptions { Format = DataFileType.Json }; converter...

    blog.groupdocs.com/ru/conversion/convert-json-a...
  7. แยกข้อมูลจากไฟล์ฐานข้อมูลโดยใช้ C#

    ฐานข้อมูล ถือว่าเป็นส่วนสำคัญของแอปพลิเคชันส่วนใหญ่ ไม่ว่าจะเป็นเดสก์ท็อป เว็บ หรือแอปพลิเคชันมือถือ ฐานข้อมูลมีบทบาทสำคัญในการจัดเก็บ เข้าถึง และจัดการข้อมูล มีระบบจัดการฐานข้อมูลมากมายที่ช่วยให้สามารถสร้างและจัดการฐานข้อมูลให้กับคุณได้ อย่างไรก็ตาม อาจมีสถานการณ์ที่คุณต้องการวิธีดึงข้อมูลจากไฟล์ฐานข้อมูล เช่น ไฟล์ .db โดยไม่ต้องติดตั้งระบบจัดการฐานข้อมูลหรือเขียนแบบสอบถาม SQL คุณจะแยกวิเคราะห์ไฟล์ฐานข้อมูลในกรณีเช่นนี้และรับข้อมูลจากไฟล์ได้อย่างไร ในบทความนี้ ฉันจะแสดงให้เห็นว่าคุณสามารถแยกข้อมูลจากตารางในฐานข้อมูล SQLite ได้ง่ายเพียงใดโดยไม่ต้องเขียนแบบสอบถาม SQL ฉันจะใช้ GroupDocs.Parser for .NET API ซึ่งรองรับการแยกข้อมูลจากฐานข้อมูลผ่าน [ADO.NET](https://en.wikipedia. org/wiki/ADO.NET) ขั้นตอนในการดึงข้อมูลจากตารางในฐานข้อมูล SQLite (.db) สร้างโครงการใหม่ใน Visual Studio ติดตั้ง GroupDocs.Parser for .NET จาก NuGet เพิ่มเนมสเปซต่อไปนี้ using System; using System.Collections.Generic; using System.IO; using GroupDocs.Parser.Data; using GroupDocs.Parser.Options; เตรียมสตริงการเชื่อมต่อ string connectionString = string.Format("Provider=System.Data.Sqlite;Data Source={0};Version=3;", "sqlite.db"); โหลดไฟล์ฐานข้อมูลในวัตถุ Parser using (Parser parser = new Parser(connectionString, new LoadOptions(FileFormat.Database))) { // รหัสของคุณไปที่นี่ } รับรายการตารางในฐานข้อมูลโดยใช้เมธอด Parser....Format("Provider=System.Data.Sqlite;Data...string connectionString = string.Format("Provider=System.Data.Sqlite;Data...

    blog.groupdocs.com/th/parser/extract-data-from-...
  8. GroupDocs Blog | Document Automation Solutions ...

    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.... Format pliku STL (STereoLithography)...możesz przekonwertować je na format PDF. W tym artykule omówimy...

    blog.groupdocs.com/pl/page/19/
  9. Scan QR Code | Documentation

    This article shows how to scan QR Code in .Net with GroupDocs.Parser with few lines of code from image, document or other file format like PDF, Email, Ebook, Words, and others....PowerPoint (PPT, PPTX), LibreOffice formats and many others (see full list...Code reader from any supported format. How to scan QR Code in .Net...

    docs.groupdocs.com/parser/net/scan-qr-code/
  10. In-Table List with Highlighted Rows in Email Do...

    Note In this article, we will use GroupDocs.Assembly to generate an In-Table List with Highlighted Rows report in Email Document format. Note The code uses some of the objects defined in The Business Layer. Note This feature is supported by version 17.8.0 or greater. In-Table List with Highlighted Rows in Email Document Creating a In-Table List with Highlighted Rows Practising the following steps you can create In-Table List with Highlighted Rows Template in MS Outlook 2013....Rows report in Email Document format. Note The code uses some of...report must be in .eml or .msg format. It must add email recipient...

    docs.groupdocs.com/assembly/net/in-table-list-w...