28.10.2006, 18:22 | #1 |
Участник
|
Axapta Lessons: Axapta DLLs
Источник: http://axapta-lessons-learned.blogsp...apta-dlls.html
============== What is a DLL? A dynamic-link library (DLL) file is an executable file that allows programs to share code and other resources necessary to perform particular tasks. A DLL provides one or more particular functions. Programs accesses these functions by creating either a static or dynamic link to the DLL. A static link remains constant during program execution while a dynamic link is created by the program as needed. A DLL can be used by several applications at the same time. Some DLLs are provided with the Windows operating system and available for any Windows application. Other DLLs are written for a particular application and are loaded with the application. DLL files usually end with the extension .dll,.exe., drv, or .fon. Kernel.exe, User.exe and Gdi.exe are examples of DLLs with .EXE extensions. They provide code, data or routines to programs running in the Windows operating system. DLLs may be found in the Windows directory, Windows\System directory or in an program's directory. Static and Dynamic Linking Usually, programmers use static linking when using functions in a DLL. This is the most easiest way to use a DLL. However, if a DLL is missing, application cannot be started. This is not a big problem: missing DLL means that something is wrong with application installation and the application should not be started anyway. If an application is designed in such a way as to offer some optional features with the help of one or more DLLs, missing DLL should not prevent the application to run normally (but without optional features). In this case, DLL must be loaded dynamically. Axapta DLLs In the Bin directory of the Client and Server we can find several DLL-files. These DLL-files are either created by Microsoft or by third parties. DLL-Files found in the BIN directory - AnaMeter.dll Provided by: Circle Capital A/S Web site: www.circlecapital.com Purpose: Used in Balanced Scorecard and Questionnaire Type: - aspupload.dll Provided by: Persits Software, Inc. Web site: www.aspupload.com Purpose: AspUpload is a COM+ component which enables an ASP application to capture, save and process files uploaded to the web server with a browser. The files are selected for uploading via an HTML POST form using the tag. With AspUpload, you can add file upload functionality to your Web application in as little as 2 lines of ASP script. In addition to uploading, AspUpload offers a wide range of file management functions, including secure downloading, saving files in the database, permission and attribute management, image size extraction, file encryption, etc. - AxaFiles.dll Provided by: Web site: Purpose: Type: - AxCfg300.dll Provided by: Microsoft Business Solutions ApS Web site: Purpose: Used by the Axapta Configuration Utility (AxConfig.exe) Type: - AxCom.dll Provided by: Web site: Purpose: COM Connector Type: - AxComps.dll Provided by: Navision a/s Web site: Purpose: DCOM Client Type: - AxHotLib.dll Provided by: Web site: Purpose: Handling function keys (F1-F10) in SFC Type: - Bcfont32.dll Provided by: Web site: Purpose: Used for Bar code Type: - CFX2032.dll Provided by: Web site: Purpose: Type: - dbghelp.dll Provided by: Web site: Purpose: Type: - DSMailer.dll Provided by: Dundas Software Web site: http://www.dundas.com Purpose: Type: - gear32pd.dll Provided by: AccuSoft Corporation Web site: www.accusoft.com Purpose: Type: - iglzw32s.dll Provided by: AccuSoft Corporation Web site: www.accusoft.com Purpose: Type: - mfc71.dll Provided by: Microsoft Corporation Web site: Purpose: Type: - msvcp71.dll Provided by: Microsoft Corporation Web site: Purpose: Type: - msvcr71.dll Provided by: Microsoft Corporation Web site: Purpose: Type: - smmaxol.dll Provided by: Hands ASA Web site: http://www.hands.no/ Purpose: Used in synchronization between Outlook and Axapta Type: - tlbinf32.dll Provided by: Web site: Purpose: Type: - vc6-re200l.dll Provided by: Microsoft Corporation Web site: Purpose: Type: - vcpanes32.dll Provided by: NETRONIC Software GmbH Web site: >http://www.netronic-us.com/ Purpose: Type: - vcprct32.dll Provided by: NETRONIC Software GmbH Web site: http://www.netronic-us.com/ Purpose: Used by VarChart (Gantt Applications) Type: - vcsced32.dll Provided by: NETRONIC Software GmbH Web site: http://www.netronic-us.com/ Purpose: Used by VarChart (Gantt Applications) Type: - vcwin32.dll Provided by: NETRONIC Software GmbH Web site: http://www.netronic-us.com/ Purpose: Used by VarChart (Gantt Applications) Type: - vxcsv32.dll Provided by: NETRONIC Software GmbH Web site: http://www.netronic-us.com/ Purpose: Used by VarChart (Gantt Applications) Type: ============== Источник: http://axapta-lessons-learned.blogsp...apta-dlls.html |
|