Click here to Skip to main content
15,904,416 members
Home / Discussions / C#
   

C#

 
SuggestionNeed help wind form code Pin
AlexJo198516-Oct-19 22:11
AlexJo198516-Oct-19 22:11 
GeneralRe: Need help wind form code Pin
dan!sh 16-Oct-19 23:17
professional dan!sh 16-Oct-19 23:17 
GeneralRe: Need help wind form code Pin
Luc Pattyn17-Oct-19 15:41
sitebuilderLuc Pattyn17-Oct-19 15:41 
AnswerRe: Need help wind form code Pin
Richard Deeming18-Oct-19 1:32
mveRichard Deeming18-Oct-19 1:32 
GeneralRe: Need help wind form code Pin
Luc Pattyn18-Oct-19 1:44
sitebuilderLuc Pattyn18-Oct-19 1:44 
GeneralRe: Need help wind form code Pin
Richard Deeming18-Oct-19 3:03
mveRichard Deeming18-Oct-19 3:03 
GeneralRe: Need help wind form code Pin
Luc Pattyn18-Oct-19 3:26
sitebuilderLuc Pattyn18-Oct-19 3:26 
GeneralRe: Need help wind form code Pin
#realJSOP17-Oct-19 2:01
professional#realJSOP17-Oct-19 2:01 
QuestionExistance pointers in c# Pin
Member 774487115-Oct-19 22:38
Member 774487115-Oct-19 22:38 
AnswerRe: Existance pointers in c# Pin
OriginalGriff15-Oct-19 22:40
mveOriginalGriff15-Oct-19 22:40 
AnswerRe: Existance pointers in c# Pin
F-ES Sitecore15-Oct-19 22:47
professionalF-ES Sitecore15-Oct-19 22:47 
AnswerRe: Existance pointers in c# Pin
Richard MacCutchan15-Oct-19 22:58
mveRichard MacCutchan15-Oct-19 22:58 
AnswerRe: Existance pointers in c# Pin
Richard Deeming16-Oct-19 8:02
mveRichard Deeming16-Oct-19 8:02 
AnswerRe: Existance pointers in c# Pin
Anandkumar Prajapati24-Oct-19 22:08
professionalAnandkumar Prajapati24-Oct-19 22:08 
Questionbetter way to serialize a DataView, exclusive of filtered rows ? Pin
BillWoodruff15-Oct-19 21:16
professionalBillWoodruff15-Oct-19 21:16 
AnswerRe: better way to serialize a DataView, exclusive of filtered rows ? Pin
Richard Deeming16-Oct-19 7:57
mveRichard Deeming16-Oct-19 7:57 
GeneralRe: better way to serialize a DataView, exclusive of filtered rows ? Pin
BillWoodruff16-Oct-19 14:45
professionalBillWoodruff16-Oct-19 14:45 
Questionextract pdf images Pin
Member 774487114-Oct-19 23:58
Member 774487114-Oct-19 23:58 
AnswerRe: extract pdf images Pin
Luc Pattyn15-Oct-19 0:15
sitebuilderLuc Pattyn15-Oct-19 0:15 
GeneralRe: extract pdf images Pin
Member 774487115-Oct-19 2:34
Member 774487115-Oct-19 2:34 
GeneralRe: extract pdf images Pin
Luc Pattyn15-Oct-19 2:57
sitebuilderLuc Pattyn15-Oct-19 2:57 
GeneralRe: extract pdf images Pin
Member 774487115-Oct-19 9:20
Member 774487115-Oct-19 9:20 
GeneralRe: extract pdf images Pin
Luc Pattyn15-Oct-19 12:01
sitebuilderLuc Pattyn15-Oct-19 12:01 
If you have trouble with ghostscript, run it manually first, i.e. from inside a Command Prompt (you can copy/paste command lines into it) and look at what it tells you. Only when you're satisfied should you start using C# code and the Process class.

The easiest way to get the folder issues sorted is by putting the ghostscript exe and your C# exe in the same folder (say "Debug"); I expect ghostscript will then use paths relative to that ("Debug") folder.

NB: there is nothing to install about ghostscript, you can put the exe anywhere, as long as it can be found (e.g. because its folder is added to the PATH environment variable, or because it is in your "current directory"). Alternatively you can tell the Process class where it is, that is what my toolsFolder did.

Warning: if you specify a full or partial path for the output, you probably must make sure the folder exists before running ghostscript. And the output location must be writeable, so special folders such as C:\Program Files\ are a no-no.

I can't help you any further, it is all standard Windows behavior as far as I know.

Smile | :)
Luc Pattyn [My Articles] Nil Volentibus Arduum

QuestionHow to drag with mouse Controls groupBox1 in Run time ? Pin
Member 245846714-Oct-19 23:05
Member 245846714-Oct-19 23:05 
AnswerRe: How to drag with mouse Controls groupBox1 in Run time ? Pin
Richard MacCutchan14-Oct-19 23:43
mveRichard MacCutchan14-Oct-19 23:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.