⑴What is vc++
The word C++ is usually pronounced as “C plus plus” in programmer circles in mainland China, while Western programmers usually pronounce it as “C++” plus plus”, which is a very widely used computer programming language. C++ is a general-purpose programming language that supports static data type checking and supports multiple programming paradigms. It supports a variety of programming styles such as procedural programming, data abstraction, object-oriented programming, and generic programming such as making icons.
Dr. Bjarne Stroustrup of AT&T Bell Labs invented and implemented C++ in the early 1980s (originally the language was called “C with Classes” ). At the beginning, C++ appeared as an enhanced version of the C language. Starting from adding classes to the C language, new features were continuously added. Virtual functions, operator overloading, multiple inheritance, templates, exceptions, RTTI, and name spaces are gradually being added to the standard. In 1998, the International Standards Organization (ISO) promulgated the international standard ISO/IEC 14882-1998 for the C++ programming language. C++ is a programming language with an international standard, commonly referred to as ANSI/ISO C++. 1998 was the first year of the establishment of the C++ Standard Committee. After that, the standard will be updated every 5 years depending on actual needs. The next standard update will be in 2009. At present, we generally call the standard C++0x. Unfortunately, due to the complexity of the C++ language and its evolution over the years, until now (2004) only a few compilers fully comply with this standard (it is not entirely correct to say that, in fact, so far no ISO C++ is fully supported by any compiler).
In addition, as far as learning C++ is concerned, it can be considered as an independent language; it does not depend on C language, and we can directly learn C++ without learning C language at all. According to the review of the book “Thinking in C++” (Thinking in C++), the efficiency of C++ and C often differs by plus or minus 5%. Therefore, some people think that C++ can completely replace C language in most cases (however, we still need to use C language in places such as single-chip microcomputers where we need to use space carefully and directly operate hardware).
2 How to uninstall vc6.0!
Try the computer control panel – add and remove programs to find the vc6.0 to be uninstalled. If it doesn’t work, you can use it directly One-click uninstall from Tencent Computer Manager
Steps: Open Tencent Computer Manager, find software management, uninstall the software, and then find the vc6.0 software you want to uninstall and clear the residue.
Tencent Computer Manager’s professional security capabilities have been recognized by international authorities such as VB100, AVC,
AV-TEST, Check Mark, and
It has become a domestic antivirus that has obtained the “Four Slams” of international authoritative certifications. Software,
antivirus capability has been among the ranks of the world’s first-class antivirus software.
⑶ vc6.0 technology to solve the problem
I will answer; ADO is designed for MS’s powerful data access interface OLE DB, the last one is easy to use application layer.
OLE DB provides high-performance access to any data source, including:
relational databases, non-relational databases, e-mail, file systems, text and graphics, and custom business objects.
ADO 2.0 is actually based on the dynamic link library MSADO15.DLL. Although the name of this library file is the same as that of ADO 1.5, it implements a newer interface.
The new technologies in ADO 2.0 are:
1. Asynchronous operation and event model
2. Data set persistence
3. Hierarchical data transmission
br />
DAO is the Data Access Object data access interface, data access: as the name implies, it is dealing with the database. Sandwiched between business logic and database resources.
The DAO pattern is introduced in the core J2EE pattern: In order to build a robust J2EE application, all access operations to the data source should be abstractly encapsulated in a public API. In programming language, it is to create an interface that defines all transaction methods that will be used in this application. In this application, this interface is used when interacting with a data source, and a separate class is written to implement this interface logically corresponding to this particular data store.
DAO (Data Access Object) is an application programming interface (API) that exists in Microsoft’s Visual Basic that allows programmers to request access to Microsoft’s Access database. DAO is Microsoft’s first object-oriented database interface. The DAO object encloses Access’s Jet functions. It can also access other Structured Query Language (SQL) databases through Jet functions.
Reference:
http://bk..com/view/160596.htm
ActiveX is Microsoft’s name for a series of strategic object-oriented programming technologies and tools, the main technology of which is the Component Object Model (COM). In a network with directory and other support, COM becomes Distributed COM (DCOM). When creating a program that includes ActiveX, the main work is the component, a program that can run arbitrarily in an ActiveX network (now the network mainly includes Windows and Mac). This component is the ActiveX proximity control. ActiveX is proposed by Microsoft to compete with Sun Microsystems’ JAVA technology. The function of this control is similar to that of JAVA applet.
If you are using a Windows operating system, you may notice some files ending in OCX. OCX stands for “Object Linking and Embedding Control” (OLE), which is a program technology proposed by Microsoft to handle mixed use of desktop files. Now that the concept of COM has replaced part of OLE, Microsoft also uses ActiveX controls to represent component objects.
A great advantage of components is that they can be reused by most applications (these applications are called component containers). A COM component (ActiveX control) can be developed by development tools in different languages, including C++ and Visual Basic or PowerBuilder, and even some technical languages such as VBScript.
Currently, ActiveX controls run on Windows 95/NT and Macintosh, and Microsoft is also preparing ActiveX controls for UNIX.
ActiveX components include the following categories:
1. Automation Server: Components that can be programmed and driven by other applications. The automation server includes at least one, possibly multiple, IDispatch-based interfaces for other applications to generate and connect to. An automation server may or may not have a user interface (UI), depending on the features and functionality of the server.
2. Automation Controllers: Applications that use and manipulate automation servers.
3. Control: ActiveX control is equivalent to the previous OLE control or OCX. A typical control includes design-time and run-time user interfaces, a unique IDispatch interface defines the control’s methods and properties, and a unique IConnectionPoint interface is used for events that the control can raise.
4. Document: ActiveX document, formerly called DocObect, represents an object that is not just a simple control or automation server. ActiveX documents are structurally extensions of OLE Links and Models and have more control over the container in which they reside. One of the most notable changes is the way the menus are displayed. A typical OLE document’s
menu will be merged with the container menu into a new set, and the ActiveX document will replace the entire menu system, showing only the
properties of the document rather than the properties common to the document and the container. .
5. Container: An ActiveX container is an application that can host automation servers, controls and documents
Component Object Model (COM)
Component Object Model is an open architecture based on object-oriented technology for cross-platform development of client/server applications. Digital Equipment Corporation and Microsoft Corporation agree on this standard. The Component Object Model defines an interface (similar to the abstract base class), IUnknown, from which all COM-compatible classes derive.
OLE/ActiveX/COM technology is the core application technology of MS. Only by thoroughly understanding its theoretical essence, can it adapt to changes without change.
We start with OLE.
1. OLE in the past and OLE today
As the predecessor of COM technology, OLE originally meant linking and embedding object data between programs (Object Link Embeded ). It provides a means to create mixed documents (senior Windows 3.X users may remember the novelty and joy of inserting a graphic in Word 6.0, about the composite document, which will be described in detail later in the article), making it easy for users who do not have much professional knowledge. Can easily coordinate multiple applications to complete the creation of mixed documents. The OLE1.0 specification formulated in 1991 mainly solves the problem of communication and message passing between multiple applications. Microsoft hopes that third-party developers can abide by this specification so that applications on the Windows platform at that time can work in harmony with each other. Greater work efficiency. However, it backfired and only a few software developers supported it. To this end, Microsoft released a new specification – OLE2.0 in 1993, which improved and enhanced the performance of the following aspects on the basis of the original:
1. OLE Automation: The ability of one program to control another program in a planned way.
2. OLE Controls: Small component programs that can be embedded into other programs to provide their own proprietary functionality.
3. OLE Documents: The earlier hybrid document functions have been improved, supporting not only simple linking and embedding, but also in-place activation, ��� playback and other functions.
The powerful function makes many developers begin to support the new OLE technology, because Microsoft established a new specification called COM (Component Object Model) in OLE2.0.
Second, OLE applications and related terms
Container:
A container is a client program, which has the function of applying for and using other COM components to implement functions for other programs through interfaces;
/>
Server:
The server provides some functions that it completes to its own applications through a specific interface (for example, the Paintbrush program is a document server, which provides the function of creating and editing BMP images) . When opening Word, select the [Object…] item under the [Insert] menu, you can see which document servers exist in your system, and Word appears as a document container at this time.
In-place activation:
When you double-click the inserted object, you will find that the Word menu changes to the menu of the document server program, and you can edit the object in the current environment, which is called in-place activation.
Automation:
Similar to the OLE document technology, the technology that allows one application to programmatically control functionality that another application “voluntarily” provides is called OLE Automation. An application program that exposes some programmable objects to other programs is called an automation server. An application program that utilizes and manipulates the functions provided by an automation server is called an automation client or an automation controller. Some programs are both an automation server and an automation controller. For example, in VC, we can create and edit an Excel worksheet through programming (many reference books take this as an example), where VC is the automation controller, and the Excel program that creates the worksheet is the automation server, but in Excel We can use the VBA language to create PowerPoint slides, and it has become an automation controller. Using OLE automation technology can realize one-time development and multiple utilization of software, which is also the key technology of integrated components. Whether it is an operating system or an application software, Microsoft is consciously developing in this direction. For example, since Windows95, the Shell of the operating system after WindowsNT4.0 has realized the OLE automation technology. So what is ActiveX? What does it have to do with OLE?
Three, ActiveX strategy
Compared with the earlier weak OLE1.0, OLE2.0 has been supported by many software manufacturers. Many programmers have written a large number of components (not necessarily EXE files) that implement OLE automation server functions. These components generally do not require complete and powerful functions, but implement specialized functions, which can be programmed and controlled by other programs. OLE’s name is OLE Controls. Their extension in the file name is generally OCX (OLE Control Extension). Microsoft has just won the support of the vast number of software manufacturers, so that OLE technology is deeply rooted in the hearts of the people. In addition, the early OLE1.0 was unpopular, which led to people who later regarded inserting a graphic in Word as the whole of OLE technology. Various materials were not named uniformly when introducing new OLE technology, causing great confusion. In response to these situations, Microsoft in 1996 re-enacted a specification about OLE – OLE 96 specification. This specification expands the capabilities of OLE controls and implements Microsoft’s Internet strategy to make it easier to use in a network environment. It also considers the problem of naming confusion and re-labels OLE controls as ActiveX controls. Not only that, the former OLE document is also called ActiveX document accordingly. In short, in order to meet the Internet strategy, Microsoft replaced OLE with ActiveX, in an attempt to make people re-look at the new OLE – ActiveX, and regard it as the standard for solving software component problems on the network. Many manufacturers who have cooperated well with Microsoft on Windows have begun to support ActiveX technology when developing new versions of software, such as Delphi, PowerBuild and other development tools. The operating systems that originally competed with Windows also began to support ActiveX, such as the Macintosh, and even the old rival OS/2 can use ActiveX controls. ActiveX technology may really become a specification for heterogeneous platforms to support, if ActiveX can be further improved, a more open strategy is adopted, and Microsoft is not unloaded into eight pieces.
This is about 24592
⑷ How long has vc financial mutual assistance been running?
Altcoins, it is recommended not to start with virtual currencies Just be a real virtual currency, and the real virtual currency must have the following points
Real virtual currency:
1: Decentralization – not affected by individuals, enterprises , State regulation. It will not be supervised by any country, institution, organization, enterprise or individual, and will not be frozen.
2: LimitThe real virtual currency is issued by measurement, and the circulation is neither too much nor too little. The total circulation of Bitcoin is 21 million, and the mining time is 100 years.
3: It can be freely traded on international trading platforms, in other words, only virtual currencies that can be traded on international trading platforms are real.
4: There is a mining pool website, open source code is open, the real virtual currency is open source code, it is dug out and can be freely mined, many players have been engaged in this kind of ” miners” profession.
5: Have your own e-wallet. All real virtual currencies have their own electronic wallets, and the offline wallets of the computer version are programmed without any external links.
I know a little bit about digital currency, I can communicate if I need it, the username is WeChat
⑸ vc++, high score, SDk,
My current software The development is mainly under vc, which is considered to have some experience. I will make a brief summary of your problem. I hope it will help you!
First answer your question (the number corresponds to your question number):
1. This is mainly because of the lack of experience in Windows-based development. Simply put, it is to try to write code by yourself The courage is not enough, as soon as there is a lack of ability, I want to seek ready-made code, and the code design experience is poor. If you choose vc, you choose the essence of in-depth programming, because vc, like C language, is relatively low-level, unlike development tools such as vb and delphi, which have thought a lot for you. There is a lot of work that needs to be done to use vc. Even if you want to create a toolbar on the window, you need to write your own code design. Unlike delphi, you can move the mouse.
So use vc to develop, learn and use. It is a process of accumulation of experience, starting from a small program and expanding the scale of the program little by little, such as loading pictures to display in the program is simple; but if loading pictures allows you to display in gradient colors, or with gorgeous transitions It is difficult to display the method, which involves a code design problem. Without enough code experience, it is difficult to cross this gap.
2. In fact, the libraries provided by vc, including the standard library and MFC, are It is relatively small. Compared with the VCL library, the .net library is simply insignificant. The reason why I feel that there are many functions and complicated keywords is mainly because the structure of VC is not straightened out. The MFC library is a shallow package, mainly to reduce the development difficulty of directly using the sdk. It actually has its own structure, which is mainly divided into interface library, network library, ole library, database related library (DAO, ADO, OLEDB, etc.). In fact, you don’t need to care about mastering all of them, and it’s not necessary, and with MSDN, you can inquire at any time, as long as you know what the functions you want to implement are roughly related to, and how to find the relevant functions or classes you need in MSDN.
Let’s talk about keywords, there are not many keywords in C++, but mainly because Windows development is easy to understand, so use define or typedef to define a lot of auxiliary keywords. For example, HANDLE stands for handle, which is actually unsigned int; WORD stands for Words are actually unsigned short int, etc. In fact, don’t care too much. If you write a lot of code, you will naturally understand.
3. The above answer is involved. This is not a problem at all, even if you don’t know at all, when you ask search engines, you usually have the experience of the predecessors to follow. With the experience of the predecessors (just for reference), plus your own design, this in itself is a great improvement.
4. Learning vc, based on C++ language grammar and MFC library, the difficulty lies in application, such as network programming, database programming, GDI programming, kernel programming, driver programming and so on.
Many people think that after learning C++ syntax or reading the use of MFC library, they feel that they are proficient. In fact, this is just an introduction, but it is just out of the ranks of beginners. The essence of vc lies in self-design, I think this is also the essence of programming, not just learning the language syntax or a few libraries
What the landlord has learned before is a very valuable experience, when learning vc You can learn from it, but it is only for reference, and it must be treated differently, otherwise it is easy to go to a dead end. For example, some design experience using assembly can be used for reference in vc development. But just like learning vc, to go to assembly, you need some code experience. But when you get to the level of experience in compiling, you only get into the introduction of software design. After this level, there are still many levels, such as stability development and so on.
VC is mainly used for relatively low-level development, so it requires programmers to do a lot of work. Often, you need to design a small problem by yourself, which is troublesome and easy to understand the core of development. Just like programmers who use sdk to develop programs tend to understand how windows works than programmers who use mfc to develop programs. This is also�A process of summarizing experience. So the iceberg is seen, but to move the iceberg, it still needs the spirit of Yugong to move the mountain.
5. Microsoft’s stability and compatibility are still very good, which is worthy of recognition. The reason why programs written in vc6 sometimes have errors in vc2005 is related to the development environment. Because vc itself is written for professional software development, it embodies many excellent programming ideas, which has nothing to do with the C++ language, but has a certain relationship with the vc series. For example, the default string encoding of vc6 is ANSI, because the problem of software internationalization at that time is not serious, and the windows system itself uses ansi as the default encoding; but the new vc 2005 uses Unicode encoding by default, in order to To solve the problem of mixed string encoding, the kernel of windows system has been Unicode-based since 2000. There is also the precompiled header technology of vc. This technology itself is to improve the compilation efficiency, because the parsing of C++ syntax is relatively difficult, unlike pascal, etc., the compilation speed is very slow, and some large programs are compiled in hours. Some even count by the day. There are no major changes to the C standard library in vc6, but vc 2005 thinks that functions such as printf are unsafe, and will add security warnings, which are all introduced for software development. For starters, it does cause confusion. At these times, the most important thing is to meet the difficulties, find a problem, turn to MSDN or a search engine, you can usually find a summary of the problem of your predecessor, and gradually the problem becomes not a problem.
########################################## #############
Learning vc has a process of getting started, I have also gone through it, and I share it here, I hope it will help you ^_^
Recommended books:
C++ Language Grammar:
C++ Introduction Classic (easy to understand) C++ Primer (professional and comprehensive)
MFC Application:
Introduction to MFC Proficient MFC VC++ in-depth and detailed explanation, etc.
Win32 platform development:
windows programming, windows core programming, etc.
⑹ vc6.0 installation package Baidu cloud
p>
Indicates that this vc6.0 software is not good, you can find and download it from the Internet, if not, try a few more.
⑺ VC++ technology
ADO It is designed for MS’s powerful data access interface OLE DB, an easy-to-use application layer.
OLE DB provides high-performance access to any data source, including:
relational databases, non-relational databases, e-mail, file systems, text and graphics, and custom business objects.
ADO 2.0 is actually based on the dynamic link library MSADO15.DLL. Although the name of this library file is the same as that of ADO 1.5, it implements a newer interface.
The new technologies in ADO 2.0 are:
1. Asynchronous operation and event model
2. Data set persistence
3. Hierarchical data transmission
br />
DAO is the Data Access Object data access interface, data access: as the name implies, it is dealing with the database. Sandwiched between business logic and database resources.
The DAO pattern is introduced in the core J2EE pattern: In order to build a robust J2EE application, all access operations to the data source should be abstractly encapsulated in a public API. In programming language, it is to create an interface that defines all transaction methods that will be used in this application. In this application, this interface is used when interacting with a data source, and a separate class is written to implement this interface logically corresponding to this particular data store.
DAO (Data Access Object) is an application programming interface (API) that exists in Microsoft’s Visual Basic that allows programmers to request access to Microsoft’s Access database. DAO is Microsoft’s first object-oriented database interface. The DAO object encloses Access’s Jet functions. It can also access other Structured Query Language (SQL) databases through Jet functions.
References: http://bk..com/view/160596.htm
ActiveX is Microsoft’s name for a series of strategic object-oriented programming technologies and tools, among which the main technology is the Component Object Model (COM). In a network with directory and other support, COM becomes Distributed COM (DCOM). When creating a program that includes ActiveX, the main work is the component, a program that can run arbitrarily in an ActiveX network (now the network mainly includes Windows and Mac). This component is the ActiveX proximity control. ActiveX is proposed by Microsoft to compete with Sun Microsystems’ JAVA technology. The function of this control is similar to that of JAVA applet.
If you are using a Windows operating system, you may notice some files ending in OCX. OCX stands for “Correct�Linking and Embedding Controls” (OLE), this technology is a program technology proposed by Microsoft to handle the mixed use of desktop files. Now that the concept of COM has replaced part of OLE, Microsoft also uses ActiveX controls to represent component objects.
A major advantage of components is that they can be reused by most applications (these applications are called component containers). A COM component (ActiveX control) can be developed by development tools in different languages, including C++ and Visual Basic or PowerBuilder, and even some technical languages such as VBScript.
Currently, ActiveX controls run on Windows 95/NT and Macintosh, and Microsoft is also preparing ActiveX controls for UNIX.
ActiveX Components It includes the following categories:
1. Automation server: a component that can be programmed and driven by other applications. The automation server includes at least one
, maybe multiple for other applications to generate and connect An IDispatch-based interface. The Automation Server
may or may not have a User Interface (UI), depending on the features and capabilities of the server.
2. Automation Controller: Those applications that use and manipulate the Automation Server Program.
3. Controls: ActiveX controls are equivalent to previous OLE controls or OCX. A typical control includes design-time and
runtime user interfaces, the unique IDispatch interface defines the control’s methods and Properties, the only
IConnectionPoint interface is used for events that can be raised by controls.
4. Documents: ActiveX documents, formerly known as DocObects, represent more than a simple control or automatic
The object of the server. ActiveX documents are structurally an extension of the OLE link and model, and have more control over the
container it is in. One of the most notable changes is the way menus are displayed. A typical OLE The document’s
menu will be merged with the container menu into a new set, and the ActiveX document will replace the entire menu system, expressing only the
properties of the document rather than the properties common to the document and the container.
5. Container: An ActiveX container is an application that can host automation servers, controls and documents
Component Object Model (COM) (Component Object Model)
Component Object The model is a client/server application based on object-oriented technology. Using an open architecture for cross-platform development of programs, Digital Equipment Corporation and Microsoft Corporation have agreed on this standard. The Component Object Model defines an interface (similar to the abstract base class), IUnknown, from which all COM-compatible classes derive.
OLE/ActiveX/COM technology is the core application technology of MS. Only by thoroughly understanding its theoretical essence, can it adapt to changes without change.
We start with OLE.
1. OLE in the past and OLE today
As the predecessor of COM technology, OLE originally meant linking and embedding object data between programs (Object Link Embeded ). It provides a means to create mixed documents (senior Windows 3.X users may remember the novelty and joy of inserting a graphic in Word 6.0, about the composite document, which will be described in detail later in the article), making it easy for users who do not have much professional knowledge. Can easily coordinate multiple applications to complete the creation of mixed documents. The OLE1.0 specification formulated in 1991 mainly solves the problem of communication and message passing between multiple applications. Microsoft hopes that third-party developers can abide by this specification so that applications on the Windows platform at that time can work in harmony with each other. Greater work efficiency. However, it backfired and only a few software developers supported it. To this end, Microsoft released a new specification – OLE2.0 in 1993, which improved and enhanced the performance of the following aspects on the basis of the original:
1. OLE Automation: The ability of one program to control another program in a planned way.
2. OLE Controls: Small component programs that can be embedded into other programs to provide their own proprietary functionality.
3. OLE Documents: The earlier hybrid document functions have been improved, supporting not only simple linking and embedding, but also in-place activation, drag-and-drop and other functions.
The powerful function makes many developers begin to support the new OLE technology, because Microsoft established a new specification called COM (Component Object Model) in OLE2.0.
Second, OLE applications and related terms
Container:
A container is a client program, which has the function of applying for and using other COM components to implement functions for other programs through interfaces;
/>
Server:
The server provides some functions that it completes to its own applications through a specific interface (for example, the Paintbrush program is a document server, which provides the function of creating and editing BMP images) . When Word is open, select [Correction] under the [Insert] menu.Like…] item, you can see which document servers exist in your system, and Word appears as a document container at this time.
In-place activation:
When you double-click the inserted object, you will find that the Word menu changes to the menu of the document server program, and you can edit the object in the current environment, which is called in-place activation.
Automation:
Similar to the OLE document technology, the technology that allows one application to programmatically control functionality that another application “voluntarily” provides is called OLE Automation. An application program that exposes some programmable objects to other programs is called an automation server. An application program that utilizes and manipulates the functions provided by an automation server is called an automation client or an automation controller. Some programs are both an automation server and an automation controller. For example, in VC, we can create and edit an Excel worksheet through programming (many reference books take this as an example), where VC is the automation controller, and the Excel program that creates the worksheet is the automation server, but in Excel We can use the VBA language to create PowerPoint slides, and it has become an automation controller. Using OLE automation technology can realize one-time development and multiple utilization of software, which is also the key technology of integrated components. Whether it is an operating system or an application software, Microsoft is consciously developing in this direction. For example, since Windows95, the Shell of the operating system after WindowsNT4.0 has realized the OLE automation technology. So what is ActiveX? What does it have to do with OLE?
Three, ActiveX strategy
Compared with the earlier weak OLE1.0, OLE2.0 has been supported by many software manufacturers. Many programmers have written a large number of components (not necessarily EXE files) that implement OLE automation server functions. These components generally do not require complete and powerful functions, but implement specialized functions, which can be programmed and controlled by other programs. OLE’s name is OLE Controls. Their extension in the file name is generally OCX (OLE Control Extension). Microsoft has just won the support of the vast number of software manufacturers, so that OLE technology is deeply rooted in the hearts of the people. In addition, the early OLE1.0 was unpopular, which led to people who later regarded inserting a graphic in Word as the whole of OLE technology. Various materials were not named uniformly when introducing new OLE technology, causing great confusion. In response to these situations, Microsoft in 1996 re-enacted a specification about OLE – OLE 96 specification. This specification expands the capabilities of OLE controls and implements Microsoft’s Internet strategy to make it easier to use in a network environment. It also considers the problem of naming confusion and re-labels OLE controls as ActiveX controls. Not only that, the former OLE document is also called ActiveX document accordingly. In short, in order to meet the Internet strategy, Microsoft replaced OLE with ActiveX, in an attempt to make people re-look at the new OLE – ActiveX, and regard it as the standard for solving software component problems on the network. Many manufacturers who have cooperated well with Microsoft on Windows have begun to support ActiveX technology when developing new versions of software, such as Delphi, PowerBuild and other development tools. The operating systems that originally competed with Windows also began to support ActiveX, such as the Macintosh, and even the old rival OS/2 can use ActiveX controls. ActiveX technology may really become a specification for heterogeneous platforms to support, if ActiveX can be further improved, a more open strategy is adopted, and Microsoft is not unloaded into eight pieces.
That’s about it
⑻ How to join the VC/PE Master of International Trade
VC means that the investment target is start-up and A company in a growing state. The target of PE investment is a mature company, or this stage of transition from growth to maturity
I want to know if you are a full-time graduate student? Then you join the VC/PE positioning is what?
0
Comments (No)