Friday, May 24, 2013 10:58

Archive for September, 2010

What’s the difference between EST and EDT

Sunday, September 12, 2010 20:58

EST - Eastern Standard Time EDT – Eastern Daylight Time Time zone offset: UTC - 4 hours EDT is 4 hours behind of Coordinated Universal Time (UTC) Note that EDT is a daylight saving time/summer time zone. It is generally only used during the summer in the places listed below, during the winter EST ...

This was posted under category: Program My Life  |  Read Full Story  |  0 Comments
Tagged with:

VB.NET to C#

Thursday, September 2, 2010 19:53

I came across this syntax error - "Non-invocable member 'System.Windows.Forms.Control.Controls' cannot be used like a method" when converting a VB.NET project to C#  windows form application. In C#, weshould use bracket("[", "]") to retrieve item from a collection instead of using the parenthesis as in VB.NET. VB.NET ->TabControl1.Controls(1).Enabled = False C#         -> this.TabControl1.Controls[1].Enabled ...

This was posted under category: .NET  |  Read Full Story  |  0 Comments
Tagged with: