Lotus Notes Mobile Application, Monday, March 31, 2008

My first and the most interesting project of all time, that I have ever worked on in my career is an SMS application using Lotus Notes.

The fun is not making the SMS application, but developing it in Lotus notes was really fun as we met a lot of challenges. It is now a product in UK, Switz as our clients are from there. Especially when we had to support multiple languages and error/debug log features.

Name a feature and we used it in this application. Registry Keys, Environment Variables, C++ API, SMS Rules, SMS Reminders. To top up the challenges I was a beginner.

We supported in 3 Lotus notes versions across 5 diffent operating systems. Hmmm, now I know from where I get my coding skills.
:) tara

Labels:

posted by candy @ 2:31 AM permanent link   |

Post a Comment

|

1 comments
odbc connectivity, Friday, March 28, 2008

Sub ConnectionExample1()
Dim cnn As ADODB.Connection
Set cnn = New ADODB.Connection
' Open a Connection using an ODBC DSN named "Pubs".
cnn.Open "Pubs", "MyUserName", "MyPassword"
' Find out if the attempt to connect worked.
If cnn.State = adStateOpen Then
MsgBox "Welcome to Pubs!"
Else
MsgBox "Sorry. No Pubs today."
End If
' Close the connection.
cnn.Close
End Sub

posted by matheswari @ 1:15 AM permanent link   |

Post a Comment

|

0 comments