| |
Dll files is build with the last version of Visual Studio .net 2005
You can download a version on Microsoft website for each application:
Visual Basic 2005 Express Edition »
Visual C# 2005 Express Edition »
Visual C++ 2005 Express Edition »
Visual J# 2005 Express Edition »
- First, Download the dll package link here (the dll and the help xml file)
- Unzip the archive in your application project.
- Add a reference to the EasyUpdaterDll.
- You can use the dll like (for VB application):
Dim easy As EasyUpdateDll.EasyUpdate = New EasyUpdateDll.EasyUpdate()
If Not easy.ToDate("EMD") Then
easy.DownloadNewVersion("EMD")
End If |
On default, downloading Setup is location in Temp directory but you can change it with
easy.DownloadNewVersion("EMD",Application.StartupPath+"/setup.exe");
The Application need to create one key in the Registry:
HKEY_LOCAL_MACHINE\SOFTWARE\Nadeo\TmTools\[Your Application Key]\version
(please, respect the Case)
This key contains the version of the application, and it was read by EasyUpdater.
In the Form, Registry Key is the [Your Application Key].
For exemple, Easy Mod Downloader have the EMD key and the complet Registry key is :
HKEY_LOCAL_MACHINE\SOFTWARE\Nadeo\TmTools\EMD\version
You can use your own XML list. Please just use the same structure.
If you have more question, please mail me
back to the website
|
|