FILE: B2C.exe Converts Visual Basic Automation Code to Visual C++

ID: Q216388


SUMMARY

B2CSE.exe is a self-extracting executable file containing a stand-alone utility file (B2C.exe) that converts Visual Basic Automation code into Visual C++ code. You can paste the code generated from B2C.exe directly into your Visual C++ application to get the same functionality. Additionally, B2C.exe comes with some Visual Basic Automation examples you can use.


MORE INFORMATION

The following file is available for download from the Microsoft Software Library:

B2CSE.exe
Release Date: Mar-10-1999

For more information about downloading files from the Microsoft Software Library, please see the following article in the Microsoft Knowledge Base:
Q119591 How to Obtain Microsoft Support Files from Online Services
You have royalty-free right to use, modify, reproduce, and distribute any code generated by the B2C Converter, or any modified version of the B2C Converter, in any way you find useful provided that you agree that Microsoft has no warranty, obligations, or liability for the generated code.

B2CSE.exe contains the following files:


   FileName           Size
   -------------------------

   B2C.exe            220KB
   Readme.txt           4KB
 
B2C Limitations

B2C.exe was designed to convert simple Automation examples. It was not designed to be a generic conversion utility for all of Visual Basic. As such, you should be aware of the following limitations:
Despite these limitations, B2C is a powerful tool. For example, you can use B2C.exe to generate the equivalent Visual C++ code with the following Visual Basic Automation code and then paste the generated code directly into your project:


' Start Excel.
dim app as object
set app = createobject("Excel.Application")

' Make it visible.
app.visible = true

' Add a new workbook.
app.workbooks.add

' Declare an array.
dim arr(1 to 15, 1 to 15) as long

' Fill array with values.
dim i as long
dim j as long
for i = 1 to 15
   for j = 1 to 15
      arr(i,j) = i
   next j
   doevents
next i

' Set all values in one shot!
app.activesheet.range("A1:O15").value = arr

msgbox "All done." 
The user interface for B2C.exe is very simple. It includes three edit boxes, three buttons, and a combo-box where you can select some examples. You type in or paste your Visual Basic code in the edit box on the left, and when you click Convert & Copy, B2C.exe populates the other two edit boxes with your generated Visual C++ code, as well as copying it to the clipboard for quick use.

The generated code uses a helper function called AutoWrap() that is generated in the edit box in the upper-right corner of the B2C.exe dialog box. You need to add this function to your project so that it is accessible from where you use B2C-generated code. Although this function is regenerated every time you convert new code, it is always the same so you only need to copy it once.

The best way to learn how it works, is to run B2C and experiment with the built-in examples.


REFERENCES

© Microsoft Corporation 1999, All Rights Reserved.
Contributions by Joe Crump, Microsoft Corporation

Additional query words: converter conversion javafy coledispatchdriver import _com_ptr_t idispatch automate invoke getidsofnames


Keywords          : kbfile kbAutomation kbGrpDSO 
Version           : 
Platform          : 
Issue type        : kbinfo 

Last Reviewed: June 1, 1999