connect()


Initiates a connection to an Oracle OLAP instance. Requires a valid XML connection file to have been created in advance.


Syntax


                 connect()


Return Value


               BOOLEAN


Example



Public Sub connect()

'Actually does the connection


If Not oregistered Then:   boo = regQ:

boo = o.connect


If boo = True Then

  MsgBox "Connected OK"

Else

  MsgBox "Not Connected"

End If


End Sub