1,902 reputation
212
bio website
location New Zealand
age 22
visits member for 1 year, 7 months
seen May 16 at 2:33
stats profile views 223

Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.

– Brian W. Kernighan


The computing scientist’s main challenge is not to get confused by the complexities of his own making.

– E. W. Dijkstra


May
14
comment HTML5 mobile app running while phone screen is off?
Although I doubt it.. you may a little luck getting this to work. with an iframe. stackoverflow.com/questions/7047989/… [see first answer. ]
Apr
29
comment Windows Phone 7 MultiSelect ListView
can you please share the code as well ?
Apr
29
comment compatibility issue with an app
Can you give us the error you're getting when the app crashes ? you should be able to see it in the logcat as the app crashes.
Apr
23
awarded  Revival
Apr
20
answered How to make Android App from existing JAva Code?
Mar
31
comment Toast in new Thread
you're welcome... Please mark as answer :)
Mar
31
answered Toast in new Thread
Mar
31
comment Visual Studio 2012 won't let me debug
try forcing your project to compile in x86 mode.. If that works, refer to this question. stackoverflow.com/questions/11179030/… I know it's about 2012 RC, but it could be the same issue. Hope it helps.
Mar
31
answered Connection String for Microsoft SQL Server 2008 R2 in ASP.NET
Mar
22
comment How to lock Android folder programmatically?
See developer.android.com/guide/topics/data/… Every app gets a private folder only that app can access. (Android manages security and it's on internal storage, so not accessible via USB) You can use the above API to manipulate it.
Mar
22
comment How to lock Android folder programmatically?
I don't know the best way.. but the easiest (or cheapest) way would be to use your app's private folder (only your app can access) and provide a UI on top of it..
Mar
22
answered Multitargeting in .NET
Mar
22
comment Compile-time / Post-Build Dependency Injection IoC?
I can't be sure.. this is a shot in the dark. You may be able to use something like PostSharp for this. postsharp.net
Mar
22
comment Adding files into Zip and sending them via Mail issues C#
Try setting the MIME Header Content-Disposition: attachment; filename=filename.zip; on the attachment. This may be to do with how Outlook handles attachments.
Mar
22
comment Compile-time / Post-Build Dependency Injection IoC?
Can you explain what you mean by point of attack ? Are you referring to someone replacing one of your implementations with a rogue one, by replacing one of your DLLs ? If this is the issue, I recommend you look at Strong Name signing your DLLs.
Mar
22
comment C# process management
If you're having trouble trying to wait till a process exists... Use Process.WaitforExit() method. msdn.microsoft.com/en-us/library/fb4aw7b8.aspx
Mar
18
comment TweetSharp SendTweetWithMediaOptions example
posted.. see below. -Thanks-
Mar
17
comment Disable Home button in Android 4.0+
Sorry bout that. Seems like this is not possible on ICS without implementing a fake home screen. I updated the answer.
Mar
17
revised Disable Home button in Android 4.0+
added 68 characters in body; added 8 characters in body
Mar
17
comment How to publish and subscribe to events across different classes
Yes, although making those classes static also means that, the Form has to decide which is in use. Also, you won't get the benefit of using an interface or inheritance, which allow you to extend the functionality using a subclass in the future. It is up to you, but I recommend you have a look at dependency injection pattern, which helps you overcome these issues.