Click here to Skip to main content
15,906,097 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Memory Problem Pin
CPallini21-Aug-08 23:45
mveCPallini21-Aug-08 23:45 
GeneralRe: Memory Problem Pin
Hamid_RT22-Aug-08 0:20
Hamid_RT22-Aug-08 0:20 
GeneralRe: Memory Problem Pin
CPallini22-Aug-08 0:34
mveCPallini22-Aug-08 0:34 
AnswerRe: Memory Problem Pin
Hamid_RT21-Aug-08 23:46
Hamid_RT21-Aug-08 23:46 
Questiona basic and silly question about hooking Pin
Green Fuze21-Aug-08 21:46
Green Fuze21-Aug-08 21:46 
AnswerRe: a basic and silly question about hooking Pin
Naveen21-Aug-08 22:01
Naveen21-Aug-08 22:01 
GeneralRe: a basic and silly question about hooking Pin
Green Fuze22-Aug-08 3:28
Green Fuze22-Aug-08 3:28 
QuestionHow to convert string to BYTE array? Pin
kapardhi21-Aug-08 21:23
kapardhi21-Aug-08 21:23 
AnswerRe: How to convert string to BYTE array? Pin
SandipG 21-Aug-08 21:29
SandipG 21-Aug-08 21:29 
AnswerRe: How to convert string to BYTE array? Pin
Nibu babu thomas21-Aug-08 21:39
Nibu babu thomas21-Aug-08 21:39 
QuestionRe: How to convert string to BYTE array? Pin
CPallini21-Aug-08 21:45
mveCPallini21-Aug-08 21:45 
AnswerRe: How to convert string to BYTE array? Pin
kapardhi21-Aug-08 21:58
kapardhi21-Aug-08 21:58 
QuestionRe: How to convert string to BYTE array? Pin
CPallini21-Aug-08 22:03
mveCPallini21-Aug-08 22:03 
AnswerRe: How to convert string to BYTE array? Pin
kapardhi21-Aug-08 22:07
kapardhi21-Aug-08 22:07 
GeneralRe: How to convert string to BYTE array? Pin
Nibu babu thomas21-Aug-08 22:57
Nibu babu thomas21-Aug-08 22:57 
GeneralRe: How to convert string to BYTE array? Pin
CPallini21-Aug-08 23:02
mveCPallini21-Aug-08 23:02 
QuestionPlease Guide Connect Sqlserver with VC++6.0. thanks very much Pin
aa_zz21-Aug-08 21:05
aa_zz21-Aug-08 21:05 
AnswerRe: Please Guide Connect Sqlserver with VC++6.0. thanks very much Pin
Hamid_RT21-Aug-08 21:14
Hamid_RT21-Aug-08 21:14 
GeneralRe: Please Guide Connect Sqlserver with VC++6.0. thanks very much Pin
aa_zz21-Aug-08 21:36
aa_zz21-Aug-08 21:36 
Please You check it is error code ?

"
void CReadDBDlg::OnRead()
{
CDatabase database;
CString SqlString;
CString sCatID, sCategory;
CString sDriver = "Microsoft Access Driver(*.mdb)";
CString sDsn;

CString sFile = "C:\\CONNECTACCESS_2.mdb";

int iRec = 0;

CString s = "MS Access Database";
sDsn.Format("ODBC;Driver={%s};DSN={%s};Dbq=%s",sDriver,s, sFile);
TRY
{
database.Open(s,false, true,sDsn); //ERROR this isMad | :mad:
CRecordset recset( &database );
}
CATCH(CDBException, e)
{
// If a database exception occured, show error msg
AfxMessageBox("Database error: "+e->m_strError);
}
END_CATCH;
}
"
GeneralRe: Please Guide Connect Sqlserver with VC++6.0. thanks very much Pin
Hamid_RT21-Aug-08 23:43
Hamid_RT21-Aug-08 23:43 
QuestionHow to create a 'setup' installation CD for a simple win32 C app. Pin
glyfyx21-Aug-08 21:01
glyfyx21-Aug-08 21:01 
AnswerRe: How to create a 'setup' installation CD for a simple win32 C app. Pin
Hamid_RT21-Aug-08 21:17
Hamid_RT21-Aug-08 21:17 
AnswerRe: How to create a 'setup' installation CD for a simple win32 C app. Pin
Nuri Ismail21-Aug-08 22:09
Nuri Ismail21-Aug-08 22:09 
GeneralRe: How to create a 'setup' installation CD for a simple win32 C app. Pin
Michael Schubert21-Aug-08 22:32
Michael Schubert21-Aug-08 22:32 
GeneralRe: How to create a 'setup' installation CD for a simple win32 C app. Pin
glyfyx22-Aug-08 22:26
glyfyx22-Aug-08 22:26 

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.