2551/08/19

eclipse

ต้องหันมาใช้อย่างจริงๆ จังๆ ตั้งแต่ออกเวอร์ชั่นใหม่

Plugin

เขาเป็นผู้ช่วยมานานมาก

นานจนลืมว่า ไม่รู้จะขอบคุณเวปนี้ยังไงดี ใช้จนลืม
http://www.codeproject.com/
ขอบคุณมากมาย
thank you so much

2551/08/16

Serialization in VB and .net

Serialization is a process through which an object's state is transformed into some serial data format, such as XML or binary format.

The Visual Basic Language on Silverlight

The Visual Basic Language on Silverlight


' Anonymous delegates, Handles--isn't it pretty?
Public Sub Canvas_Loaded() Handles Me.Loaded
InitializeComponent()
' Type inference; DateTime functions
Dim currentTime = Now
' Conversions, type inference
Dim hourAngle = ((currentTime.Hour / 12) * 360 + currentTime.Minute / 2) + 180
Dim minAngle = ((currentTime.Minute / 60) * 360) + 180
Dim secAngle = ((currentTime.Second / 60) * 360) + 180
' hourAnimation is a generated variable that makes use of WithEvents and Conversions
' Protected WithEvents hourAnimation As DoubleAnimation
' Me.hourAnimation = CType(Me.FindName("hourAnimation"),DoubleAnimation)
hourAnimation.From = hourAngle
hourAnimation.To = hourAngle + 360
minuteAnimation.From = minAngle
minuteAnimation.To = minAngle + 360
secondAnimation.From = secAngle
secondAnimation.To = secAngle + 360
End Sub

2551/08/02

gridview sort

Powered By Blogger