Click here to Skip to main content
15,888,527 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionVisual C++ .Net Dialog Help Wizard Pin
Cubzfan12-Oct-05 11:14
Cubzfan12-Oct-05 11:14 
QuestionEnumProcesses question Pin
Gary Wheeler12-Oct-05 10:43
Gary Wheeler12-Oct-05 10:43 
AnswerRe: EnumProcesses question Pin
Prakash Nadar12-Oct-05 22:45
Prakash Nadar12-Oct-05 22:45 
GeneralRe: EnumProcesses question Pin
Gary Wheeler13-Oct-05 2:18
Gary Wheeler13-Oct-05 2:18 
AnswerRe: EnumProcesses question Pin
ThatsAlok13-Oct-05 1:38
ThatsAlok13-Oct-05 1:38 
GeneralRe: EnumProcesses question Pin
Gary Wheeler13-Oct-05 2:20
Gary Wheeler13-Oct-05 2:20 
QuestionCreating executable files? Pin
Tara1412-Oct-05 10:34
Tara1412-Oct-05 10:34 
AnswerRe: Creating executable files? Pin
dave_dv12-Oct-05 11:06
dave_dv12-Oct-05 11:06 
Smile | :) You have to check register "HKEY_LOCAL_MACHINE\Software\Microsoft\Jet\3.5\Engines exists"

If you don't have this fold you have to install Jet Engine. It's depend on OS you can get download in this site http://www.microsoft.com/downloads/results.aspx?productID=&freetext=Jet%204.0%20Service%20Pack&displaylang=en[^]


One more thing is before check DAO/Jet infromation

bool DAOInstallCheck()
{
HKEY hRet;

bool bBool=false;

if (RegOpenKeyEx(HKEY_LOCAL_MACHINE,
"Software\\Microsoft\\Jet\\3.5\\Engines",
0,KEY_QUERY_VALUE, &hRet) == ERROR_SUCCESS)
{
bBool = true;
RegCloseKey(hRet);
}

return bBool;
}


if DAOInstallCheck())
// Message Return Install require
else
// DAO already Install



Have a nice day

-- modified at 17:22 Wednesday 12th October, 2005
QuestionBitmap over video problem (VMR9) Pin
Storm-blade12-Oct-05 10:16
professionalStorm-blade12-Oct-05 10:16 
AnswerRe: Bitmap over video problem (VMR9) Pin
Storm-blade12-Oct-05 11:05
professionalStorm-blade12-Oct-05 11:05 
GeneralRe: Bitmap over video problem (VMR9) Pin
Trollslayer12-Oct-05 21:58
mentorTrollslayer12-Oct-05 21:58 
QuestionAdd color on the Dimmed text of disabled controls? Pin
y22zhou12-Oct-05 9:08
y22zhou12-Oct-05 9:08 
QuestionRe: Add color on the Dimmed text of disabled controls? Pin
David Crow12-Oct-05 9:59
David Crow12-Oct-05 9:59 
Questionadd message to jpeg file Pin
kevincwong12-Oct-05 8:52
kevincwong12-Oct-05 8:52 
AnswerRe: add message to jpeg file Pin
Chris Losinger12-Oct-05 9:53
professionalChris Losinger12-Oct-05 9:53 
QuestionSetup a Default Button Pin
Ian Bowler12-Oct-05 8:14
Ian Bowler12-Oct-05 8:14 
QuestionRe: Setup a Default Button Pin
David Crow12-Oct-05 9:55
David Crow12-Oct-05 9:55 
AnswerRe: Setup a Default Button Pin
Ian Bowler12-Oct-05 11:07
Ian Bowler12-Oct-05 11:07 
GeneralRe: Setup a Default Button Pin
David Crow13-Oct-05 2:55
David Crow13-Oct-05 2:55 
AnswerRe: Setup a Default Button Pin
vikas amin12-Oct-05 22:33
vikas amin12-Oct-05 22:33 
AnswerRe: Setup a Default Button Pin
ThatsAlok13-Oct-05 1:59
ThatsAlok13-Oct-05 1:59 
GeneralRe: Setup a Default Button Pin
Ian Bowler13-Oct-05 5:26
Ian Bowler13-Oct-05 5:26 
QuestionInvisible temporary Pin
Bob Stanneveld12-Oct-05 6:47
Bob Stanneveld12-Oct-05 6:47 
QuestionSerial Comms Help Please! Pin
Member 138216012-Oct-05 6:34
Member 138216012-Oct-05 6:34 
AnswerRe: Serial Comms Help Please! Pin
Rage12-Oct-05 7:12
professionalRage12-Oct-05 7:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.