Click here to Skip to main content
15,891,689 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Arrays Pin
Eytukan24-Mar-09 1:35
Eytukan24-Mar-09 1:35 
GeneralRe: Arrays Pin
Neal beavis24-Mar-09 1:39
Neal beavis24-Mar-09 1:39 
GeneralRe: Arrays Pin
Eytukan24-Mar-09 1:43
Eytukan24-Mar-09 1:43 
QuestionRe: Arrays Pin
David Crow24-Mar-09 2:41
David Crow24-Mar-09 2:41 
GeneralRe: Arrays Pin
CPallini24-Mar-09 1:43
mveCPallini24-Mar-09 1:43 
GeneralRe: Arrays Pin
Eytukan24-Mar-09 1:53
Eytukan24-Mar-09 1:53 
GeneralRe: Arrays Pin
CPallini24-Mar-09 3:22
mveCPallini24-Mar-09 3:22 
QuestionODBC database problem Pin
Deepu Antony24-Mar-09 0:55
Deepu Antony24-Mar-09 0:55 
Hi all

I am using a database application program using ODBC with MS Access as the database.
While navigating through the database,it is missing a particular row.

my code look like this

m_rs.Open( CRecordset::snapshot, _T( "SELECT * FROM DAUArinc717Frame2" ) );
m_rs.Move( Index );
for(i=0;i<128;i++)
{


data = (BYTE)strtoul( m_edit2, 0, 16 );
str.Format("%d",data);

m_rs.Edit();
m_rs.m_Data = str;
m_rs.Update();
m_rs.MoveNext();

b2 = strtoul( m_edit2, 0, 16 )>> 8;
str.Format("%d",b2);
m_rs.Edit();
m_rs.m_Data = str;
m_rs.Update();
m_rs.MoveNext();


}

I am updating to the database, the values read from the GUI.In this process when i==3,in that particular location in my database(row==264),it is skipping without updating and is moving to the next row.

Please help me..

Thanks in advance

Regards
Deepu
QuestionRe: ODBC database problem Pin
David Crow24-Mar-09 2:48
David Crow24-Mar-09 2:48 
AnswerRe: ODBC database problem Pin
Deepu Antony24-Mar-09 3:23
Deepu Antony24-Mar-09 3:23 
Questionerror LNK2001: unresolved external symbol Pin
ytubis24-Mar-09 0:26
ytubis24-Mar-09 0:26 
AnswerRe: error LNK2001: unresolved external symbol Pin
Cedric Moonen24-Mar-09 0:35
Cedric Moonen24-Mar-09 0:35 
AnswerRe: error LNK2001: unresolved external symbol [modified] Pin
S p k 52124-Mar-09 0:37
S p k 52124-Mar-09 0:37 
AnswerRe: error LNK2001: unresolved external symbol Pin
Eytukan24-Mar-09 0:40
Eytukan24-Mar-09 0:40 
Questionstring append with \ symbol Pin
Thilek23-Mar-09 23:23
Thilek23-Mar-09 23:23 
AnswerRe: string append with \ symbol Pin
Eytukan23-Mar-09 23:33
Eytukan23-Mar-09 23:33 
GeneralRe: string append with \ symbol Pin
Thilek23-Mar-09 23:40
Thilek23-Mar-09 23:40 
QuestionRe: string append with \ symbol Pin
Maxwell Chen23-Mar-09 23:51
Maxwell Chen23-Mar-09 23:51 
AnswerRe: string append with \ symbol Pin
Thilek23-Mar-09 23:58
Thilek23-Mar-09 23:58 
GeneralRe: string append with \ symbol Pin
David Crow24-Mar-09 2:51
David Crow24-Mar-09 2:51 
AnswerRe: string append with \ symbol Pin
KarstenK24-Mar-09 0:03
mveKarstenK24-Mar-09 0:03 
GeneralRe: string append with \ symbol Pin
Thilek24-Mar-09 0:34
Thilek24-Mar-09 0:34 
GeneralRe: string append with \ symbol Pin
Thilek24-Mar-09 3:14
Thilek24-Mar-09 3:14 
QuestionWriting a callback function? Pin
Maxwell Chen23-Mar-09 22:56
Maxwell Chen23-Mar-09 22:56 
AnswerRe: Writing a callback function? Pin
Eytukan23-Mar-09 23:06
Eytukan23-Mar-09 23:06 

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.