[*****   For Example   *****]
   If users want to use two I-7565-H1 or I-7565-H2 modules simultaneously in the same VB program, please follow the below steps:

[ Necessary File for VC project ]
[1] Copy these four files - "mVCI_CAN_vb_Register.bat", "mVCI_CAN_vb.dll", "VCI_CAN.dll" and "VCI_UART.dll" to VB project folder.
[2] Execute "mVCI_CAN_vb_Register.bat" file to register "mVCI_CAN_vb.dll" to system.

[ Progarm for VB project ]
[1] Add "mVCI_CAN_vb" reference to VB project by following below steps:
    (1) Click "Project/References..." option
    (2) Click "Browser..." button and choose "mVCI_CAN_vb.dll" file. Then "mVCI_CAN_vb" reference will be added to VB project.
[2] Declare two global variable of "CMVCI_CAN" class. (Like: Private I7565H1H2_Mod(1) As CMVCI_CAN)
[3] Create every object of "MVCI_SDK" class and execute InitDLL() function. (Like: Set I7565H1H2_Mod(0) = New CMVCI_CAN and I7565H1H2_Mod(0).InitDL())
[4] After InitDLL() function executes successfully, every object will be one I-7565-H1 or I-7565-H2 module. Then users can use object to operate I-7565-H1/H2 module. (Like: I7565H1H2_Mod(0).mVCI_OpenCAN())
[5] Please refer to the VB demo3 of I-7565-H1/H2 for details.