March 2003 - Posts

What’s new in VB.Net 2003?

Ha... all this week, I have a very long... long... days at work..
Finally I got to have some time with my laptop..
Just to share VB.Net 2003 changes, I made an article in that time...

check this at http://www.w3coder.com/vbnet/VBNet2003New.aspx

Hope this helps!!!

Posted by SreedharK with no comments

Hustan this is .Net control --> w3coder is moved to SecureWebs

Huston... we have a problem...this is mission control...(It's old)

Huston...We have a solution...this is .Net control... (This is new)

I am glad that today I moved my site(http://www.w3coder.com) to securewebs (after two years runnig site on my small local machine).

They given a great offer of hosting site for free. Haa.. great!!!
It's easy to move, but the big deal is of making sure that every thing works. That's what I am doing now!!!

Huston... 1, 2,3... do you copy...do you read me...this is .Net control...today we moved to securewebs....;)

 

 

 

Posted by SreedharK with 1 comment(s)

How can we find DataTable Changes

If we wanted to know DataSet is changed or not, we have HasChanges funcion. But we don't have the similar function for DataTable.

Below example helps you on that:

Public Function DTHasChanges(ByVal DT As DataTable) As Boolean
If DT Is Nothing Then
        Return (False)
Else
        BindingContext(DT).EndCurrentEdit()
        If DT.GetChanges Is System.DBNull.Value Then
             Return (False)
        Else
             Return (True)
         End If
End If
End Function

That's it.... Hope this helps!!

Posted by SreedharK with 4 comment(s)
More Posts