MapX programming (C ++)
---- MapxRelease
After MapX-based software is developed and installed on the client, MapX is required. If you publish the required MapX-related files to the client, the simplest method is to install a set of MapX software on the client. However, MapX has a large capacity and is difficult to install. It must be installed independently and is not suitable for software release. How can this problem be solved? Of course, it is to extract the necessary MapX files and install them on the client through the packaging and publishing tool. The required files mainly involve some dynamic libraries and some special files. For example, mapx5.0 is used as the download link for the required files: http://download.csdn.net/detail/mingojiang/5094082. The key has been cracked and can be used directly. The key is stored in the mapx50.lic file and can be copied during development. To register, the following is Inno
Release code of setup:
[Files]
Source: "F: \ temp \ regtyplib.exe"; destdir: "{sys}"; flags: onlyifdoesntexist
Source: "F: \ temp \ regsvr32.exe"; destdir: "{sys}"; flags: onlyifdoesntexist
Source: "F: \ map engine \ *"; destdir:
"{App} \ MapInfo \ MapX 5.0"; flags: ignoreversion recursesubdirs createallsubdirs
Source: "F: \ map engine \ mapx50.dll ";
Destdir: "{app} \ MapInfo \ MapX 5.0"; flags: onlyifdestfileexists regserver
Source: "F: \ map engine \ mdatasetint. TLB ";
Destdir: "{app} \ MapInfo \ MapX 5.0"; flags: onlyifdestfileexists regtypelib
If you are in trouble, add QQ: 1148824289 for technical exchange.