86 reputation
8
bio website
location
age 22
visits member for 1 year, 10 months
seen 6 hours ago
stats profile views 20

9h
comment WPF binding does not work with a UserControl
Thanks for a tip, it's a really good one. However, it does not solve my problem. SetValue() is not called as well and Day property is not updated.
11h
asked WPF binding does not work with a UserControl
1d
awarded  Self-Learner
1d
awarded  Teacher
1d
answered Creating BitmapImage from a byte array
1d
comment Creating BitmapImage from a byte array
@ChrisSinclair, BitmapImage does not have CacheMode property, I suppose you are reffering to CacheOption one instead. Unfortunately, adding this line did not help. I still have a null pointer exception...
1d
comment Creating BitmapImage from a byte array
Well, as @ChrisSinclair said, your code causes the same behaviour as one in my question with the only difference: in your case the memory stream stays in the memory forever. Unfortunately, the same exception is thrown.
1d
comment Creating BitmapImage from a byte array
@ChrisSinclair, I do not assign a vaule to UriSource. I just checked a stack trace and it seemed to me, that a null pointer exception is thrown due to this attribute. It was just a guess. Display is a property indeed, which is bound to my XAML layout. So, basically I would like to get an image from the WCF service and then display it at the WPF window. Besides this binding, I do not have code, which can cause a threading issue.
1d
revised Creating BitmapImage from a byte array
added 28 characters in body
1d
asked Creating BitmapImage from a byte array
May
13
comment Is it possible to print out the state space using SPIN?
@GoZoner I am looking for the entire state space containing only variables from the state vector, i.e. without internal ones. As for now, I am using a method similar to one implemented in SpinSpider.
May
7
comment Is it possible to print out the state space using SPIN?
I want to make visualization myself for some reasons, that's why built-in tools is not a good option for me..
May
7
asked Is it possible to print out the state space using SPIN?
Apr
22
revised How can I call C# DLL from C?
added 194 characters in body
Apr
22
revised How can I call C# DLL from C?
added 194 characters in body
Apr
22
asked How can I call C# DLL from C?
Apr
10
comment How to specify path to C libraries in jspin?
Thanks! I was running the model with Random button instead of Verify one, that's why it did not work. It still seems strange to me, that a random trace does not execute C code, but it is not that important, since I obviously need full verification.
Apr
9
comment How to specify path to C libraries in jspin?
Yes, this is all in one c_code block...
Apr
9
accepted How to specify path to C libraries in jspin?
Apr
9
comment How to specify path to C libraries in jspin?
Thanks for the answer! Backslash really did the trick. However, my C code does not work... I want to write some info into a file, so i write: FILE *file; file = fopen("C:\\file.txt","a+"); fprintf(file,"%s","some str"); fclose(file); but nothing happens.. Am i doing something wrong?