Will this code work ?
In Client Project i m writing following code
Public Function GetDate() As Date
Dim Remtserv As datalibrary.RemoteService = CType(Me.C1DataSet1.RemoteDataService, datalibrary.RemoteService)
Return Remtserv.GetServerDate
End Function
and in RemoteServerice Class i just write a code
Public Function GetServerDate() As DateReturn Now
End Function