blah blah blah is here! blah blah » Close

0
votes
1 answers

spaces in process arguments

hi, I'm launching an app from C# containing 4/5 arguments all of them are paths to files. This works great unless one of the paths contain an space in the folder name. Is there any way to pass the arguments so i don't have the problem w ...

0
votes
0 answers

C# PPC: Start Process, close himself letting the process up

I need to start a process in a ppc application for an update of the exe file and some other so i thought: create another app that makes this thing overwriting that who generated it in this way i could make the update of the system. But ...

0
votes
1 answers

Write and Read Xml Document in A single Process

Please help me to solve this problem. I've a method to write (Thank's to Mr Vulpes) and read Xml document but i put it in a single process, here is the code : [code]void createXMLConnection(){ int valfc=0; ...

1
votes
1 answers

Bitmap.Save() Problems

I'm getting a generic GDI+ error when I save my Bitmap more than once. The complaint is that the Bitmap is being used by another process. I've tried manually closing, flushing, nullifying, and disposing the stream. Nothing I've tried has wo ...

1
votes
4 answers

Multithreading in a console application

I'm writing a console application basically as a batch media encoder, which is acting as a "front-end" to various encoding tools. I already have classes which read an encoding "queue" from an XML file, and produce the ne ...

0
votes
1 answers

Start a process without it receiving focus

Is there a way to start a process so that it runs minimized on the taskbar but doesn't receive focus? This is what I'm after: Process p = new Process(); ProcessStartInfo psi = new ProcessStartInfo(); ...

Feedback