TAILIEUCHUNG - Excel Add-in Development in C/C++ Applications in Finance phần 3

Tham khảo tài liệu 'excel add-in development in c/c++ applications in finance phần 3', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Using VBA 69 A VB interface function declared as taking a range argument would not be able to receive literal values from the worksheet. If this were not a problem then the VB code might look like this given that there is no need to call IsObject . Function VtFunction r As Range As Variant VtFunction C_vt_function End Function The following line would have resulted in a Variant of type VT_DISPATCH being passed to the DLL function. VtFunction C_vt_function r Converting array Variants to and from C C types Array Variants are Variants that contain an array. The array itself is an OLE data type called the SafeArray declared as SAFEARRAY in the Windows header files. An understanding of the internal workings of the SAFEARRAY is not necessary to bridge between VB and C C . All that s required is a knowledge of some of the functions used to create them obtain handles to their data release data handles find out their size upper and lower bounds find out what data-type the array contains and finally destroy them. The key functions all accessible in C C via the header are SafeArrayCreate SafeArrayDestroy SafeArrayAccessData SafeArrayUnaccessData SafeArrayGetDim SafeArrayGetElemsize SafeArrayGetLBound SafeArrayGetUBound SafeArrayGetElement SafeArrayPutElement To convert an array Variant the C C DLL code needs to do the following Determine that the Variant is an array by testing its type for the VT_ARRAY bit. Determine the element type by masking the VT_ARRAY bit from its type. Determine the number of dimensions using the SafeArray cDims property or by using the SafeArrayGetDim function. Determine the size of the array using SafeArrayGetUBound and SafeAr-rayGetLBound for each dimension. Convert each array element from the possible Variant types that could originate from a worksheet cell to the desired data type s . 70 Excel Add-in Development in C C To create an array Variant the C C DLL code needs to do the following Call SafeArrayCreate having .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.