In simple words I can say today is The Amazing Day of my life in terms of experience, adventure, enjoyment.
Today we went to Visapur Fort for trekking with our SST Team.
As we have planned already we reached Pune Railway station early and reached Malvali station at 9am. Then we started moving towards Bhaja Village. We visited Visapur caves and started our trek towards fort. In between we lost our ways so with the help of one local boy, we reached at the top around at 3-30pm. Till now everything is amazing, waterfalls, the scenery, etc.
While returning back, we lost our ways as we chose wrong path, so its like we were nowhere to go. People are praying to GOD that we will be out soon, as its time of evening. So its better to be out otherwise we were in a big trouble. But Finally, we found the path and returned back.
At 9 we reached at Pune. The trekking is a fantastic experience full of adventures.
Photos
20 July 2010
Trip to Lonavala - Khandala - Karla trip on 17th - 18th July 2010
It seems to me that from a long time I haven't find joy of my life.. As last so many days has given me a lot of tensions from life:
But this Lonavala trip has made me realize that I should not forget to live anyways :)
We (Me, Dhaval and Kishan) reached Lonavala on 17th 7pm. Then reached to TCS Holiday Home, which have already booked for one day. As and when we reached there, it was power cut. So no electricity till 9:30. In this time we have taken dinner and we three gone wild, I don't have any words to describe, but you can find it from the pics.
On the other day morning, we left at 9am to go around Lovanala, and other place by Cab, which we have already booked from their only:
We have visited Bhusi Dam, Lions Point, Khandala, Karla, and recently opened Wax Museum - first time in India.
But this Lonavala trip has made me realize that I should not forget to live anyways :)
We (Me, Dhaval and Kishan) reached Lonavala on 17th 7pm. Then reached to TCS Holiday Home, which have already booked for one day. As and when we reached there, it was power cut. So no electricity till 9:30. In this time we have taken dinner and we three gone wild, I don't have any words to describe, but you can find it from the pics.
On the other day morning, we left at 9am to go around Lovanala, and other place by Cab, which we have already booked from their only:
We have visited Bhusi Dam, Lions Point, Khandala, Karla, and recently opened Wax Museum - first time in India.
03 July 2010
Sometimes Giving up is the best Choice :)
Sometimes in life, we come across the situation where, Giving up is the only appropriate choice. Because we can also learn the life lessons from no win conditions. In initial stage we think that, I have lost the opportunity, how can I let go this happen. But after a course of time, you will realize that your timely wise decision was best for your future and prewritten. So never worry when you are to take hard decision to give up.
"Giving up doesn't always mean you are weak; sometimes it means that you are strong enough to let go. "
"Giving up doesn't always mean you are weak; sometimes it means that you are strong enough to let go. "
Happy Learning
02 July 2010
Send mail from your gmail account using VB6 CDO throught SMTP
The following is the function to send email from vb6 application using CDO object.
Public Function SendMail(toMail As String, subject As String, msgBody As String)
Dim lobj_cdomsg As CDO.Message
Set lobj_cdomsg = New CDO.Message
lobj_cdomsg.Configuration.Fields(cdoSMTPServer) = "smtp.gmail.com"
lobj_cdomsg.Configuration.Fields(cdoSMTPServerPort) = 465
lobj_cdomsg.Configuration.Fields(cdoSMTPUseSSL) = True
lobj_cdomsg.Configuration.Fields(cdoSMTPAuthenticate) = 1
lobj_cdomsg.Configuration.Fields(cdoSendUsername) = "username@gmail.com"
lobj_cdomsg.Configuration.Fields(cdoSendPassword) = "password"
lobj_cdomsg.Configuration.Fields(cdoSMTPConnectionTimeout) = 30
lobj_cdomsg.Configuration.Fields(cdoSendUsingMethod) = 2
lobj_cdomsg.Configuration.Fields.Update
lobj_cdomsg.To = toMail
lobj_cdomsg.From = "username@gmail.com"
lobj_cdomsg.subject = subject
lobj_cdomsg.HTMLBody = msgBody
lobj_cdomsg.Send
Set lobj_cdomsg = Nothing
End Function
Subscribe to:
Posts (Atom)