Click here to Skip to main content
15,900,383 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: waht does "Invalid Address specified to RtlValidateHeap" mean? Pin
Prakash Nadar13-Oct-05 6:04
Prakash Nadar13-Oct-05 6:04 
GeneralRe: waht does "Invalid Address specified to RtlValidateHeap" mean? Pin
greenwyx13-Oct-05 14:36
greenwyx13-Oct-05 14:36 
QuestionProcessor Information 32-bit app on 64-bit Machine Pin
sergioh7812-Oct-05 14:32
sergioh7812-Oct-05 14:32 
QuestionSubclassing MFC controls for ActiveX Pin
gaarons12-Oct-05 13:03
gaarons12-Oct-05 13:03 
QuestionNeed Help With Calculation Pin
WackoWolf12-Oct-05 12:40
WackoWolf12-Oct-05 12:40 
AnswerRe: Need Help With Calculation Pin
Roger Allen12-Oct-05 13:38
Roger Allen12-Oct-05 13:38 
AnswerRe: Need Help With Calculation Pin
David Crow13-Oct-05 3:19
David Crow13-Oct-05 3:19 
QuestionAccelerator key issue in hosted ActiveX control Pin
Ian Bowler12-Oct-05 12:35
Ian Bowler12-Oct-05 12:35 
QuestionCResourceException Pin
LighthouseJ12-Oct-05 12:08
LighthouseJ12-Oct-05 12:08 
QuestionMultiLingual Resource Pin
jim45612-Oct-05 11:54
jim45612-Oct-05 11:54 
Questionmalloc and free problem. Pin
Jader8912-Oct-05 11:47
Jader8912-Oct-05 11:47 
AnswerRe: malloc and free problem. Pin
Jader8912-Oct-05 11:51
Jader8912-Oct-05 11:51 
AnswerRe: malloc and free problem. Pin
Anonymous12-Oct-05 12:02
Anonymous12-Oct-05 12:02 
GeneralRe: malloc and free problem. Pin
Jader8912-Oct-05 12:08
Jader8912-Oct-05 12:08 
GeneralRe: malloc and free problem. Pin
LighthouseJ12-Oct-05 12:10
LighthouseJ12-Oct-05 12:10 
AnswerRe: malloc and free problem. Pin
sunit512-Oct-05 20:43
sunit512-Oct-05 20:43 
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 

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.