Posts

Showing posts from September, 2005

Fields to Properties (Visual Studio.Net)

Yes, we miss Automatic property generation from the Fields of the classes in the Visual Studio.net IDE. Following is the sample code of the Macro, I am telling here which I used for myself. This member variable to Property generation is not generic and is very difficult to be. The idea is that I demonstrate to do it my way and you can customize it for your needs. Code is in the Visual Basic.Net -------------------------------------------------- NEED: Public Class AClass #Region "Members" Private strStaffId As String Private strStaffName As String #End Region End Class --> Public Class AClass #Region "Members" Private strStaffId As String Public Property StaffId() As String Get Return strStaffId End Get Set(ByVal Value As String) strStaffId = Value End Set End Property Private strStaffName As String Public Property StaffId() As String Get Return strStaffId End Get Set(ByVal Value As String)...

What is a Smart Client?

Keywords : What is a Smart Client ? Define Smart Client SmartClient ------------------------ Smart Client An Internet-connected device that allows the user's local applications to interact with server-based applications through the use of Web services. For example, a smart client running a word processing application can interface with a remote database over the Internet in order to collect data from the database to be used in the word processing document. Smart clients are distinguished by key characteristics: * They support work offline – smart clients can work with data even when they are not connected to the Internet (which distinguishes them from browser-based applications, which do not work when the device is not connected to the Internet); * Smart client applications have the ability to be deployed and updated in real time over the network from a centralized server; * Smart client applications support multiple platforms and languages because...

DotNetDubai Blog

I am also part of a Blogging community residing at: DotNet Dubai