Hi I Dont think therz anyway u can do that. Regards,
Ritika
Hi I Dont think therz anyway u can do that. Regards,
Ritika
Hi All, I want to display the current location's latitude and longitude on the mobile screen using some web service or something. (For India) I ve explored www.geocoder.us but i want something similar for india Can anyone please help me on this. Thanks in Advance. Regards,
Ritika
Hi, u can use this as an example which returns integer as output value Public Function GetMailSent(ByVal CaseId As String) As Integer Dim objConn As New SqlConnection Dim objDB As New clsCommon Dim objDS As New DataSet Dim objCommand As New SqlCommand Dim objDA As New SqlDataAdapter Dim param As New SqlParameter Dim intMailSent As Integer Try objConn = objDB.GetDatabaseConnection objCommand.CommandType = CommandType.StoredProcedure objCommand.CommandText = "spGetMailSent" objCommand.Connection = objConn objDA.SelectCommand = objCommand objCommand.Parameters.Add("@CaseID", SqlDbType.VarChar).Value = IIf(IsDBNull(CaseId), DBNull.Value, CaseId) param = objCommand.Parameters.Add("@retval", SqlDbType.Int) param.Value = Decimal.Zero param.Direction = ParameterDirection.Output intMailSent = objCommand.ExecuteNonQuery() GetMailSent = objCommand.Parameters("@retval").Value Finally 'objDB.CloseDatabaseConnection() End Try End Function Regards,
Ritika
Hi, u can use this Javascript code function NoRightClick() { if (event.button==2) { alert('No right clicks allowed.') } } document.onmousedown=NoRightClick Regards, Ritika
Ritika
Hi All, I want to display the current location's latitude and longitude on the mobile screen using some web service or something. (For India) I ve explored www.geocoder.us but i want something similar for india Can anyone please help me on this. Thanks in Advance. Regards, Ritika
Ritika