Create a message box which gives the option to click ok or cancel when logging out? Create a pause in VB, wait for input Create a y-axis at different scales with Windows Charts Create an email message (with image attachment)? Create an ODBC connection in the registry using vb.NET C...
Public Sub UserDate() Dim strDate As String strDate = InputBox("Insert date in format dd/mm/yy", "User date", Format(Now(), "dd/mm/yy")) If IsDate(strDate) Then strDate = Format(CDate(strDate), "dd/mm/yy") MsgBox strDate Else MsgBox "Wrong date format" End If End Su...