Is there anyway to check if I am already logged in before showing the log in dialog? since it makes me show this dialog everytime
example
if (!loggedin)
{
loginForm = New DialogLoginForm(AddressOf SetLoginResult, IntegrationId, IntegrationName, Version, ManufacturerName)
loginForm.ShowDialog()
}