Advertisement
Advertisement
| 02.25.2008 at 09:08AM PST, ID: 23190809 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 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: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: |
FM_Principal.cpp
----------------
#include "FM_Principal.h"
#include "FM_MiThread.h"
#pragma package(smart_init)
#pragma link "LMDAboutDlg"
#pragma link "LMDBaseDialog"
#pragma link "LMDContainerComponent"
#pragma link "LMDCustomComponent"
#pragma link "LMDTrayIcon"
#pragma link "LMDWndProcComponent"
#pragma resource "*.dfm"
TGaliciaNova *GaliciaNova;
MiThread *MiThread1;
__fastcall TGaliciaNova::TGaliciaNova(TComponent* Owner)
: TService(Owner)
{
}
TServiceController __fastcall TGaliciaNova::GetServiceController(void)
{
return (TServiceController) ServiceController;
}
void __stdcall ServiceController(unsigned CtrlCode)
{
GaliciaNova->Controller(CtrlCode);
}
void __fastcall TGaliciaNova::MenuClick(TObject *Sender)
{
if (Sender == AcercaDe)
{
About->Execute();
}
else if (Sender == Web)
{
ShellExecute(NULL, "open", String("http://www.galicianova.es").c_str(), NULL, NULL, SW_SHOWNORMAL);
}
else if (Sender == EMail)
{
ShellExecute(NULL, "open", String("mailto:info@galicianova.es").c_str(), NULL, NULL, SW_SHOWNORMAL);
}
}
void __fastcall TGaliciaNova::ContadorTimer(TObject *Sender)
{
ShowMessage("Contador");
}
void __fastcall TGaliciaNova::ServiceStart(TService *Sender, bool &Started)
{
MiThread1 = new MiThread(false);
// ServiceThread->Priority = tpIdle ;
Started = true;
}
void __fastcall TGaliciaNova::ServiceContinue(TService *Sender,
bool &Continued)
{
MiThread1->Resume();
Continued = true;
}
void __fastcall TGaliciaNova::ServicePause(TService *Sender, bool &Paused)
{
MiThread1->Suspend();
Paused = true;
}
void __fastcall TGaliciaNova::ServiceStop(TService *Sender, bool &Stopped)
{
MiThread1->Terminate();
Stopped = true;
}
void __fastcall TGaliciaNova::ServiceAfterInstall(TService *Sender)
{
DoStart();
}
FM_MiThread.cpp
---------------
#include <vcl.h>
#pragma hdrstop
#include "FM_MiThread.h"
#include "FM_Principal.h"
#pragma package(smart_init)
//---------------------------------------------------------------------------
// Important: Methods and properties of objects in VCL can only be
// used in a method called using Synchronize, for example:
//
// Synchronize(&UpdateCaption);
//
// where UpdateCaption could look like:
//
// void __fastcall MiThread::UpdateCaption()
// {
// Form1->Caption = "Updated in a thread";
// }
//---------------------------------------------------------------------------
__fastcall MiThread::MiThread(bool CreateSuspended)
: TThread(CreateSuspended)
{
}
void __fastcall MiThread::Execute()
{
// GaliciaNova->Icono->Active = true;
// GaliciaNova->Contador->Enabled = true;
while (!Terminated)
{
ShowMessage("THREAD");
Sleep(5000);
}
}
|
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 02.26.2008 at 09:23AM PST, ID: 20986446 |
| 02.26.2008 at 10:23AM PST, ID: 20987109 |