CreateObject Function

UNO བྱ་ཡུལ་ཞིག་གསར་འཛུགས་བྱས་པ་

ཐབས་ཤེས་འདིས་ཁུགས་གྲངས་སུ་བརྩིས་ནས་བརྒྱུད་སྤྲོད་བྱེད་པའི་རིགས་ཀྱི་དངོས་དཔེ་གསར་འཛུགས་བྱའོ་

Syntax:

oObj = CreateObject(type)

Parameters:

type: the type of the object to be created, as a string.

Example:


    Type address
        Name1 As String
        City As String
    End Type
     
    Sub main
        myaddress = CreateObject("address")
        MsgBox IsObject(myaddress)
    End Sub
  

Please support us!