Sunday, July 17, 2011

Page not found error in Google plus.

I have used IE7 browser to log into Google plus. Application has directed me to page https://plus.google.com/not-supported/?ref=/. In this page when I click on learn more, it is showing page not available.

Wednesday, July 13, 2011

code to find multiple of 7 using vb script

Option Explicit
Dim num
num=Inputbox("Enter a number")
If num mod 7=0 Then
Msgbox "The given number is a multiple of 7"
Else
Msgbox "The given number is not a multiple of 7"
End If