[Oracle] VC6.0 uses odbc to access Oracle stored procedures

Environmental description System environment System: Windows XP IDE: Microsoft Visual C++ 6.0 msado15.dll: File version: 6.2.19041.3570 Product version: 10.0.19041.3570 Data source driver: Oracle in OraClient11g_home1 – Oracle Datebase Client 11g Release 2 (11.2.0.1.0) for Microsoft Windows (32-Bit) Object used msado15.tlh _ConnectionPtr m_pConnection; HRESULT hr = m_pConnection.CreateInstance(“ADODB.Connection”); _RecordsetPtr m_pRecordset; m_pRecordset.CreateInstance(“ADODB.Recordset”); _CommandPtr m_pCommand; m_pCommand.CreateInstance(“ADODB.Command”); _ParameterPtr pInputParam; pInputParam.CreateInstance(__uuidof(Parameter)); […]

VC6 MFC Dialog as apllication programming

Although the MFC framework is old, programming is still much more convenient. On the basis of controlling interface controls, the classes you usually practice in the Console mode can be integrated into MFC, and it is more convenient to develop applications. The picture below is the interface of the practice program. illustrate: An EDIT box […]

VC6 WIN32, Dialog programming as the main window

VC6 is a very classic development environment from Microsoft, especially for Windows API development. It has basically maintained the same style and API since Quick C for win. It is good to practice on it. The following is the interface after the exercise. It is created by adding a Dialog under the automatically created WIN32 […]

In the VS2015 project, the DLL function is called in the MFC memory (sample DLL generated by VC6)

This example mainly talks about how to use VC6 to generate a DLL, use the tool WinHex to obtain all the content of the DLL, and the VC2015 project to load the DLL function in the memory and call the function example. Download the sample code in this example, click to download 1. VC++ 6.0 […]