Click here to Skip to main content
15,896,557 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: how do i call c++ dll function from another c ++ dll Pin
Rajesh R Subramanian4-Feb-10 19:14
professionalRajesh R Subramanian4-Feb-10 19:14 
AnswerRe: how do i call c++ dll function from another c ++ dll [modified] Pin
Adam Roderick J4-Feb-10 21:17
Adam Roderick J4-Feb-10 21:17 
AnswerRe: how do i call c++ dll function from another c ++ dll Pin
fat_boy5-Feb-10 1:08
fat_boy5-Feb-10 1:08 
GeneralRe: how do i call c++ dll function from another c ++ dll Pin
Rajesh R Subramanian5-Feb-10 6:51
professionalRajesh R Subramanian5-Feb-10 6:51 
QuestionHow to Disable a node in CtreeCtrl Pin
rahul.kulshreshtha4-Feb-10 18:53
rahul.kulshreshtha4-Feb-10 18:53 
QuestionNeed help for Server-Client Application. Pin
Le@rner4-Feb-10 18:25
Le@rner4-Feb-10 18:25 
AnswerRe: Need help for Server-Client Application. Pin
Le@rner8-Feb-10 1:08
Le@rner8-Feb-10 1:08 
QuestionOracle select * from table name Pin
MsmVc4-Feb-10 18:01
MsmVc4-Feb-10 18:01 
Hi All

I am try to get data from oracle.I am facing some problem to get data from oracle table when oracle table data type is RAW.For example i have a table in oracle
create table Test(Item RAW(255));
insert into Test values('1');
insert into Test values('2');

Now i am fetching data from Test table.
CString tabledata=Select * from "system"."Test";
pRecordset=m_pConn->Execute(_bstr_t(tabledata), 0, adCmdText);
_variant_t fetchdata;
fetchdata= pRecordset->GetRows(adGetRowsRest);
LONG lend = fetchdata.parray->rgsabound->cElements;
COleVariant varField;	
	    for (int i = 0; i < lend; i++)
		{
			int k=0;
  	   for (int j = 0; j < nCount; j++)
	   {
  	   
  	      long index[2] = {j,i};
              SafeArrayGetElement(fetchdata.parray,index,&varField);
           }
           }

out put is
varField = {???}
when i click on varFiled then show like this
tagVARIANT = safearray of UI1 = [1](1 '')

But original values is "1".
So how can i get original values.
Please help me
QuestionDialog is getting close automatically Pin
chevu4-Feb-10 16:46
chevu4-Feb-10 16:46 
AnswerRe: Dialog is getting close automatically Pin
Avi Berger4-Feb-10 17:28
Avi Berger4-Feb-10 17:28 
GeneralRe: Dialog is getting close automatically Pin
chevu4-Feb-10 17:48
chevu4-Feb-10 17:48 
GeneralRe: Dialog is getting close automatically Pin
Avi Berger4-Feb-10 18:30
Avi Berger4-Feb-10 18:30 
GeneralRe: Dialog is getting close automatically Pin
chevu4-Feb-10 18:39
chevu4-Feb-10 18:39 
GeneralRe: Dialog is getting close automatically Pin
Avi Berger4-Feb-10 20:50
Avi Berger4-Feb-10 20:50 
Questionclass instance address Pin
transoft4-Feb-10 10:46
transoft4-Feb-10 10:46 
AnswerRe: class instance address Pin
Abhi Lahare4-Feb-10 10:54
Abhi Lahare4-Feb-10 10:54 
GeneralRe: class instance address Pin
transoft4-Feb-10 11:05
transoft4-Feb-10 11:05 
GeneralRe: class instance address Pin
Graham Breach4-Feb-10 11:24
Graham Breach4-Feb-10 11:24 
GeneralRe: class instance address Pin
transoft4-Feb-10 11:30
transoft4-Feb-10 11:30 
GeneralRe: class instance address Pin
Avi Berger4-Feb-10 11:42
Avi Berger4-Feb-10 11:42 
GeneralRe: class instance address Pin
transoft4-Feb-10 12:09
transoft4-Feb-10 12:09 
AnswerRe: class instance address Pin
Avi Berger4-Feb-10 11:31
Avi Berger4-Feb-10 11:31 
QuestionDos subclassing Pin
aurelcly4-Feb-10 8:14
aurelcly4-Feb-10 8:14 
QuestionRe: Dos subclassing Pin
David Crow4-Feb-10 8:27
David Crow4-Feb-10 8:27 
AnswerRe: Dos subclassing Pin
Maximilien4-Feb-10 8:38
Maximilien4-Feb-10 8:38 

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.