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

[ Necessary Files for .Net project ]
1. In Debug or Release folder of .Net project, Copy these files - "mVCI_CAN_DotNET.dll", "VCI_CAN.dll" and "VCI_Uart.dll" in it.

[ Program for .Net project ]
1. Add "mVCI_CAN_DotNET.dll" file to reference of .Net project.
2. Type "Imports mVCI_CAN_DotNET" i;n the head of .Net project
3. Declare two global variable of "MVCI_SDK" class (Like: Dim I7565H1H2_Mod(1) As MVCI_SDK)
4. Build every object of "MVCI_SDK" class and execute InitDLL() function (Like: I7565H1H2_Mod[0] = New MVCI_SDK(); and I7565H1H2_Mod[0].InitDLL();)
5. After InitDLL() function execute 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_NoStruct();)
6. Please refer to the VB.net demo2 of I-7565-H1/H2 for details.