.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

LOTUSSCRIPT/COM/OLE CLASSES


Examples: IsUsingJavaElement property
Clicking on this button will display a messagebox indicating if the current component is a Java-based view or outline.

Sub Click(Source As Button)
Dim uiws As New NotesUIWorkspace
If (uiws.IsInCompositeApp) Then
If (uiws.IsUsingJavaElement) Then
Msgbox "This is a Java-based component"
Else
Msgbox "This is not a Java-based component"
End If
Else
Msgbox "This is not a component in a composite application"
End If
End Sub

See Also