Basically I want to have the widget as a view only widget and when you tap on the widget make it open a app if its installed, and if its not installed then make is display a message box saying its not installed.
Basically I want to have the widget as a view only widget and when you tap on the widget make it open a app if its installed, and if its not installed then make is display a message box saying its not installed.
Yes it can be done, you will need to create an invisible panel which will become visible if the app is not installed, otherwise, using an intent, open the app.
Try
Dim in As Intent
in.Initialize(in.ACTION_MAIN, "")
in.SetComponent(...)
StartActivity(in)
Catch
ToastMessageShow("Application not found.", True)
End Try