G GHOST New member Joined Aug 12, 2018 Messages 4 Programming Experience 1-3 Sep 3, 2018 #1 How can i Print\Save\Open Document's Of a Listbox Into\From The PC Storage ? Please Replay me with Example's:star:
How can i Print\Save\Open Document's Of a Listbox Into\From The PC Storage ? Please Replay me with Example's:star:
JohnH C# Forum Moderator Staff member Joined Apr 23, 2011 Messages 1,721 Location Norway Programming Experience 10+ Sep 3, 2018 #2 With Process and its ProcessStartInfo you can specify a Verb to use for specific action like open/print, have a look here: ProcessStartInfo.Verb Property (System.Diagnostics) | Microsoft Docs Save is not one of them, saving a file is done by writing contents to it, to do this you can for example use the File Class (System.IO) | Microsoft Docs Upvote 0 Downvote
With Process and its ProcessStartInfo you can specify a Verb to use for specific action like open/print, have a look here: ProcessStartInfo.Verb Property (System.Diagnostics) | Microsoft Docs Save is not one of them, saving a file is done by writing contents to it, to do this you can for example use the File Class (System.IO) | Microsoft Docs