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!
Keywords:
- windows caption form bar vb net click
- double click title bar in windows 7
- vb net how to disable double click resize
- vb net form double click disable size change
- vb net doubleclick title form
- block maximize double click title bar c#
- vb net disable double click resize
- prevent double click form resize for vs2008
- how to suppress double clicks using vb net
- vb net mousedoubleclick disable
- vb net vs2008 window form disable title bar move
- visual basic 6 disable title bar double click
- win 7 turn off double click maximize
- windows 7 disable maximize on double click -aero
- windows disable double click title bar
Written by admin on May 12th, 2010 with 1 comment.
Read more articles on Knowledge Base and Programming.