Dim pm As PackageManager
Dim Check As Intent
Check = pm.GetApplicationIntent("com.vevo")
If Check.IsInitialized = False Then
Answer = Msgbox2("You don't have the Vevo app installed." & CRLF & CRLF & "Do you want to install it?", "App Not Installed", "Yes", "", "No", Null)
If Answer = DialogResponse.POSITIVE Then
Dim GooglePlay As Intent
GooglePlay.Initialize(GooglePlay.ACTION_VIEW, "market://details?id=com.vevo")
StartActivity(GooglePlay)
End If
End If