May 2010
You are currently browsing the articles from Information City written in the month of May 2010.
I’ve just watched one of the clips posted on youtube of the ipad reviews. It is awesome and I think I’ll be getting one if it hits our local store here. The device is certainly tempting for hardcore internet browser like me who is almost everyday surfs the net for information (btw, I have 34 rss feed and some other frequent sites which I visits everyday). I’ve given up hope on my lappy on portability (ever since the battery died after a year plus usage and buying new ones is not cheap tho plus, the performance is degrading).
And since my parent uses my ex-pc for their browsing experience, I guess this would gives them a whole new experience (it’s touch screen aye!). The price ain’t cheap (and i guesstimate would cost 2.5k to 3k if it ever hit our local store). But i believe it would gives me much more productivity (eg. dinner while surfing ; D ). Neway, here’s the youtube clip which that got me salivated:
Written by admin on May 19th, 2010 with no comments.
Read more articles on Personal.
While developing one of the apps. for demo on a touchscreen device, it came to surprise on the application windows sizing function. I have set the formborderstyle to fixedsingle in hope to disable the application from resize but it seems that it was able to shrink/un-maximize from maximized application. I tried playing around with the values in the window properties but to no avail.
I search around the net and found an interesting code snippet posted on Microsoft community newsgroup (idea originates from the MVP, Herfried K. Wagner):
Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
Const WM_NCLBUTTONDBLCLK As Int32 = &HA3
If m.Msg = WM_NCLBUTTONDBLCLK Then
Exit Sub
End If
MyBase.WndProc(m)
End Sub
Having that codes in the winforms disabled the window resizing on double clicking of the title bar. Great one!
Written by admin on May 12th, 2010 with 1 comment.
Read more articles on Knowledge Base and Programming.
« Older articles
No newer articles