Click here to Skip to main content
15,913,773 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: GetLastError problem Pin
rmnowick23-Mar-04 12:28
rmnowick23-Mar-04 12:28 
GeneralSaving Encrypted Passwords Pin
ExtraLean23-Mar-04 9:18
ExtraLean23-Mar-04 9:18 
GeneralRe: Saving Encrypted Passwords Pin
Robert A. T. Káldy23-Mar-04 9:35
Robert A. T. Káldy23-Mar-04 9:35 
GeneralRe: Saving Encrypted Passwords Pin
ExtraLean23-Mar-04 10:03
ExtraLean23-Mar-04 10:03 
GeneralRe: Saving Encrypted Passwords Pin
Robert A. T. Káldy23-Mar-04 10:18
Robert A. T. Káldy23-Mar-04 10:18 
GeneralProblem CRecordSet Pin
ansontong23-Mar-04 6:59
ansontong23-Mar-04 6:59 
GeneralRe: Problem CRecordSet Pin
RadioShark23-Mar-04 7:11
RadioShark23-Mar-04 7:11 
GeneralRe: Problem CRecordSet Pin
David Crow23-Mar-04 8:17
David Crow23-Mar-04 8:17 
No error checking? If you are using MFC, use a CString object instead of sprintf(). Something like:

static void updateRecord(HWND hwnd, CDatabase *db)
{
    CString str;
 
    str.Format("UPDATE PlantInit SET %s = %s WHERE FrameID = %s" ,g_plantDataField[i], ebstr, g_temp[j].frameID);
 
    // Open database my write my DQL command on it
    TRY
    {
        rsta.Open(CRecordset::dynaset, str);
        rsta.Close();
        AfxMessageBox("The record has been updated.");
    }
    CATCH(CDBException, pDBException)
    {
        AfxMessageBox(pDBException->m_strError);
    }
    END_CATCH 
}



"The pointy end goes in the other man." - Antonio Banderas (Zorro, 1998)


General_crtisvalidheappointer (URGENT) Pin
BlackDice23-Mar-04 6:53
BlackDice23-Mar-04 6:53 
GeneralRe: _crtisvalidheappointer (URGENT) Pin
Steve S23-Mar-04 7:27
Steve S23-Mar-04 7:27 
GeneralRe: _crtisvalidheappointer (URGENT) Pin
BlackDice23-Mar-04 7:36
BlackDice23-Mar-04 7:36 
GeneralRe: _crtisvalidheappointer (URGENT) Pin
Steve S23-Mar-04 21:30
Steve S23-Mar-04 21:30 
GeneralRe: _crtisvalidheappointer (URGENT) Pin
BlackDice23-Mar-04 7:47
BlackDice23-Mar-04 7:47 
GeneralRe: _crtisvalidheappointer (URGENT) Pin
Steve S23-Mar-04 21:40
Steve S23-Mar-04 21:40 
GeneralAdding Items to CTabCtrl Pin
mmica23-Mar-04 6:38
mmica23-Mar-04 6:38 
GeneralRe: Adding Items to CTabCtrl Pin
Ravi Bhavnani23-Mar-04 10:59
professionalRavi Bhavnani23-Mar-04 10:59 
Generalrand Pin
nicolas thompson23-Mar-04 5:59
sussnicolas thompson23-Mar-04 5:59 
GeneralRe: rand Pin
RadioShark23-Mar-04 6:12
RadioShark23-Mar-04 6:12 
GeneralRe: rand Pin
nicolas thompson23-Mar-04 10:22
sussnicolas thompson23-Mar-04 10:22 
GeneralRe: rand Pin
David Crow23-Mar-04 10:26
David Crow23-Mar-04 10:26 
GeneralRe: rand Pin
David Crow23-Mar-04 6:29
David Crow23-Mar-04 6:29 
GeneralRe: rand Pin
nicolas thompson23-Mar-04 10:17
sussnicolas thompson23-Mar-04 10:17 
GeneralRe: rand Pin
David Crow23-Mar-04 10:23
David Crow23-Mar-04 10:23 
GeneralRe: rand Pin
Anonymous23-Mar-04 10:38
Anonymous23-Mar-04 10:38 
GeneralRe: rand Pin
David Crow23-Mar-04 10:48
David Crow23-Mar-04 10:48 

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.