Click here to Skip to main content
15,879,490 members

Comments by Frank Lindecke (Top 6 by date)

Frank Lindecke 26-Jan-16 7:32am View    
Reason for my vote of 1 \n Measuring the wrong thing. IL code is the same, execution is different, but C# code is definitely not the reason.
Frank Lindecke 27-Aug-15 7:39am View    
Have a look at https://msdn.microsoft.com/en-us/library/system.windows.threading.dispatcher(v=vs.110).aspx. Every DispatcherObject (the base class of all WPF controls) provides the Dispatcher property.

Dispatcher class provides method CheckAccess() which can be used for your purpose.
Frank Lindecke 27-Aug-15 4:07am View    
Perhaps https://groups.google.com/forum/#!topic/google-picasa-data-api/tNL4TeNP6fI or http://stackoverflow.com/questions/30469058/google-gdata-client-gdatarequestexception-authentication-suddenly-fails-in-old would help you.
FYI: I have just googled your failure message ;-)
Frank Lindecke 19-Aug-15 2:08am View    
Reason for my vote of 5 \n I do not know the reason why we need an answer to this question, but realization is nice and cool!
Frank Lindecke 4-Aug-15 5:57am View    
Perhaps you can use https://msdn.microsoft.com/en-us/library/system.windows.forms.keysconverter.aspx, but you need to handle Shift, Alt etc. by yourself.

When you have converted the KeyCode into a character it is easy to write a class which outputs a word whenever a space is recognized.
Output can be designed by an "public event Action<string> WordFound" which is called whenever condition matched.