GetDLLVersion Method - intrepidcs API
C/C++ declare -
VB declare - VB.NET declare
- C# declare - Parameters - Return
Values - Remarks - C/C++ example
- VB example - VB.NET
example - C# example
This method returns the software version of the DLL.
int _stdcall icsneoGetDLLVersion();
Public Declare Function
icsneoGetDLLVersion Lib "icsneo40.dll"
() As Long
Public Declare Function icsneoGetDLLVersion Lib "icsneo40.dll" () As Integer
C# Declare
[DllImport("icsneo40.dll")]
None.
This function returns the version number of the API.
None.
Examples
'// get the DLL version information
MsgBox "The DLL version is: " & icsneoGetDLLVersion, vbInformation
char szOut[200];
// get the DLL
version and report it
wsprintf(szOut,TEXT("intrepidcs
API DLL Version %d\n"), icsneoGetDLLVersion());
MessageBox(hWnd,szOut,TEXT("Message"),MB_ICONINFORMATION);
Visual Basic .NET Example
'// get the DLL version
information and place in Button text
Button1.Text = "Version "
+ Convert.ToString(icsneoGetDLLVersion)
C# Example
'// get the DLL version
information and place in Button text
Button1.Text = "Version " +
Convert.ToString(icsNeoDll.icsneoGetDLLVersion());
| intrepidcs API Documentation - (C) Copyright 2000-2012 Intrepid Control Systems, Inc. (www.intrepidcs.com) |
Last Updated : Wednesday, September 17, 2008