Click here to Skip to main content
15,891,529 members

Comments by Pawel Gielmuda (Top 8 by date)

Pawel Gielmuda 21-Mar-11 7:24am View    
But WaitForExit blocks the UI of parent process. I know that I shouldn't use spin loop ;) (the app is taken from VB6 and I guess there wasn't better choice at that time)
Pawel Gielmuda 6-Jan-11 8:26am View    
You're welcome :)
Pawel Gielmuda 5-Jan-11 5:53am View    
And what line is line 25 in AppointmentsConverter.cs?
Pawel Gielmuda 5-Jan-11 5:06am View    
Can you post new exception you get?
Pawel Gielmuda 4-Jan-11 16:01pm View    
Add at the begining of Convert something like this to check if values are null or empty
if(values == null || values.Length < 2) return null;
this should help