| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 
 | ...
#include "Principale.h"
 
namespace ServicePointeuse {
 
	public ref class ServicePointeuseWinService : public System::ServiceProcess::ServiceBase
	{
	public:
		ServicePointeuseWinService()
		{
			...
			AppPrinc = new CPrincipale();
		}
	protected:
		~ServicePointeuseWinService()
		{
			...
			delete AppPrinc;
		}
	...
	private: System::Windows::Forms::Timer^  timerBT;
	...
	private:
		CPrincipale* AppPrinc;
	...
	private:
		System::Void timerBT_Tick(System::Object^  sender, System::EventArgs^  e)
		{
			if (this->AppPrinc->AsFinished() == true)
			{
				...
			}
		}
	};
} | 
Partager