I have a form which contains combo boxes, textboxes and a data grid with many rows. I want to take print out (with generated barcode [application generating barcode as image]) and also want to export the data in that page as CSV/XML/Excel format to USB or Phone's Physical Directory. Please guide me how to it. This is my first Windows Mobile app. I am not so wise in Windows Mobile. Please help me find a better solution as a code or link or just direct me.
Print and Export to USB (File Format: XML/CSV/Excel) Functionality in Smart device[Symbo Motoroal MC75(Windows Mobile 6.1)] application?
2.4k Views Asked by code_star_net At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in WINDOWS-MOBILE
- How to integrate opencv C++ codings with windows application?
- Exit windows app confirmation button not working
- Escape XML on Windows Mobile 6
- Fastest way to query SQL Server CE database file in Windows Mobile 6.5?
- Consuming SSL SOAP Service, could not establish secure channel for SSL/TLS
- what smartphone features can be restricted for iOS, Android, Windows phones?
- Importing root certificate on Windows CE and Windows Mobile devices via command line
- Windows Mobile development in Windows 8
- How to pass parameter at the time of WinCE app installation/deployment
- Set value of x:Uid programmatically
- How to use uwp Community Toolkit MasterDetailsView?
- Using C# bluetooth API on windows mobile device
- is visual-studio 2013 support Programming for Windows-mobile or Windows-CE?
- insert result of DataSet to ListView
- Slide menu disappear in Explorer for Windows Phone 8.1
Related Questions in SYMBOLS
- Visual Studio Profiler - how to see function body
- Matlab - Using symbols in gscatter
- PaperJS remove symbol from array
- Trying to write less_than symbol twice("<<") using XSLT. It doesn't work if I try writing it twice
- What is the android key-code for exclamation mark ? (!)
- standard deviation symbol σ is not being added to PDF using iText
- Deleting unnecessary symbols from variable in Jmeter
- What are all of clojure's special forms?
- Symbol.for(string) in ECMAScript 6
- symstore error: Couldn't create "...\000Admin\0000000001". Win32 error 80: The file exists"
- Can a Symbol in ruby create a Column in db table?
- Error: cannot find symbol - Java compile error
- What is the point of the 'Symbol' type in ECMA-262-v6?
- ggplot2 annotate text with a plot symbol
- How to generate a symbol table for a Pascal-subset compiler in C?
Related Questions in WINDOWS-MOBILE-6
- Using C# bluetooth API on windows mobile device
- Accessing REST api from Windows CE
- What is the difference between Windows Mobile 6 Professional and Standard SDKs
- Reasons why some of my SmartDevice unit tests fail on one machine and not another?
- How do I develop a Windows Mobile application in Visual Studio 2008?
- Deploy the application. NET for Windows Mobile 6.x
- SetupDLL to remove a folder and a key register
- NullPointerException when enabling/disabling scanner from barcode data input handler
- Toolbox controls not active in VS2008
- Accessing certificate keystore
- How to stop Treeview nodes appearing differently between WM5 & WM6.5
- Windows Mobile Appliacation works in Professional 6.5 Emulator but not in WM 6.5 Device
- How to programmatically disable user access control (or equivalent) on Windows Mobile 6
- Logging on Windows 6 Mobile application
- Draw lines in windows mobile
Related Questions in SMART-DEVICE
- Using smartctl without sudo
- Break the debugger on assertion failed
- Reasons why some of my SmartDevice unit tests fail on one machine and not another?
- "Unable to connect to any of the specified MySQL hosts." in Smart Device Projects VS2008
- Code Coverage analysis for .NET Compact Framework 2.0
- Filling out a web form programatically in c#
- Windows CE 5.0 : Issue with Arabic Locale
- .NET CF Assembly corrupted after warm boot
- c# SmartDevice Cab Installer with .net runtime installer included
- Msbuild not able to create Smart Device CAB Project
- .NET CF WebService ObjectDisposedException
- Print and Export to USB (File Format: XML/CSV/Excel) Functionality in Smart device[Symbo Motoroal MC75(Windows Mobile 6.1)] application?
- Install SQL Server CE database in separate folder [Windows Mobile 6 Smart device ap]
- Windows application (Smart Device Project). How to capture Screen?
- References for Pocket PC
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
To create the Print Out, you will have to write to your PrintDocument using GDI. There is nothing really built in. You could possibly do a screenshot (code below).
Exporting data to CSV is best done on your own as well. Just Create/Open a file stream and write whatever you want to it.
Screenshot: Requires PInvoke to BitBlt and GetDC
[Update]:
If you want the image saved to a particular location, send the full path with the filename (i.e.
\\Windows\Temp\screenShot.png).If you want to exclude the controls, reduce the
this.Width,this.Height,this.Leftandthis.Rightuntil you have the size that fits the region that works.Last, if you want the
Bitmapto use in memory, simply save it and use it as necessary. Example:panel1.Image = ScreenCapture("image.png"); panel1.BringToFront();
Hope that helps.