I am a developer. I like UI, graphics and .NET. UI and software design is my passion. I love learning. It is one of the greatest pleasures that exist.

5dyh0236V0Q4W5o4

1d
answered WPF textbox textChanged event on programmatic versus user change of text contents
1d
comment WPF textbox textChanged event on programmatic versus user change of text contents
You also need to handle the cut (ctrl+x) command.
2d
accepted Simple remote access to another Mac or PC
Jun
10
comment talk to tethered hardware from iOS
I am suprised that this also works with iPhone 5, which has this lightning connector.
Jun
10
comment talk to tethered hardware from iOS
I might not be able to go into the app store, but will I be able to deploy it in-house using the iOS Developer Enterprise Program?
Jun
10
asked talk to tethered hardware from iOS
Jun
7
awarded Enlightened
Jun
7
awarded Nice Answer
Jun
6
awarded Popular Question
May
29
comment How to show animated image from PNG image using javascript? [ like gmail ]
Great answer, great implementation. As a site note: if your animation stuff is getting more complex: spritely.net seems to be a nice and small lib for all things related to sprite animation.
May
29
awarded Notable Question
May
27
awarded Famous Question
May
22
comment member visibility and 'this' scope in javascript objects
There must be something to this book, I have seen it being recommended a lot of times now.
May
22
comment member visibility and 'this' scope in javascript objects
Since this is a wiki now, maybe we should add another answer with a .prototype version.
May
21
comment member visibility and 'this' scope in javascript objects
Also, is there any significant difference, advantage ore disadvantage in using the .prototype notation to declare public members?
May
21
answered member visibility and 'this' scope in javascript objects
May
21
comment member visibility and 'this' scope in javascript objects
Just one side note: The int in the parameter declaration is not valid javascript, it must be deleled. Also, I think this this.MyObjectDefinition = function(parameter) {...} is not a real constructor the user of my "class" needs to explicitly call var instance = new MyObjectDefinition(); instance.MyObjectDefinition(42); to correctly initialize the object. Whereas in c# you cannot even instantiate the object without specifying a parameter for the constructor.
May
17
comment member visibility and 'this' scope in javascript objects
I am looking for a concise and clean way to write the above sample in javascript. I understand now that I can using bind to redirect this to a specific instance. But what about the visibility and the constructor?
May
17
revised member visibility and 'this' scope in javascript objects
added 1 characters in body
May
17
asked member visibility and 'this' scope in javascript objects
1 2 3 4 5