02-07-2017
01:28 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
02-07-2017
01:28 PM
If you add
System.Windows.Forms.SendKeys.Sendwait(Chr(9) & vbCrLf)
It will complete the check in, but if you want a comment you either have to allow them to type the comment and hit tab and enter, or you could hard code it like
System.Windows.Forms.SendKeys.Sendwait("comment" & Chr(9) & vbCrLf)
Or get it as a string from somewhere else.