Click here to Skip to main content
16,007,779 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Windows Workflow Foundation Pin
Ray Cassick30-Nov-06 11:34
Ray Cassick30-Nov-06 11:34 
AnswerRe: Windows Workflow Foundation Pin
Pete O'Hanlon30-Nov-06 23:14
mvePete O'Hanlon30-Nov-06 23:14 
QuestionTerminate application from other libraries? Pin
Ariston Darmayuda30-Nov-06 7:08
Ariston Darmayuda30-Nov-06 7:08 
AnswerRe: Terminate application from other libraries? Pin
Dave Kreskowiak30-Nov-06 10:20
mveDave Kreskowiak30-Nov-06 10:20 
QuestionHow to trace and log all method calls and it is desirable with attributes values Pin
bdimych30-Nov-06 3:27
bdimych30-Nov-06 3:27 
AnswerRe: How to trace and log all method calls and it is desirable with attributes values Pin
Dave Kreskowiak30-Nov-06 10:21
mveDave Kreskowiak30-Nov-06 10:21 
AnswerRe: How to trace and log all method calls and it is desirable with attributes values Pin
bdimych27-Dec-06 13:43
bdimych27-Dec-06 13:43 
QuestionCD Burning using IMAPI Pin
salaikumar29-Nov-06 23:35
salaikumar29-Nov-06 23:35 
Hello...
There is a requirement of burning data into a CD from my application which i developed in VC++.net
I tried to use Imapi.h related functionalities. but its not in my XP SDK.So i used another dll file(acclImapiWrapper.Dll) which i downloaded from the website...

http://www.vbaccelerator.com/home/NET/Code/Libraries/Writing_CDs/IMAPI/article.asp

Using this dll file i tried the following code...

try{
DiscMaster* DM ;
SimpleDiscRecorder* sRecorder ;
DiscRecorders* DRs;
` DiscRecorder * DR;
DM = new DiscMaster();
sRecorder = DM->SimpleDiscRecorder;
DRs = DM->DiscRecorders;

int i,cnt;
cnt = DRs->get_Count() ;
for (i=0;i<cnt;i++)
{
="" dr="DM-">DiscRecorders->get_Item(i);
}
DR->OpenExclusive();
DR = DM->DiscRecorders->get_Item(0);


Cursor::Current = System::Windows::Forms::Cursors::WaitCursor ;
if (sRecorder->HasRecordableDrive())
{
//sRecorder->Burn(this->Handle);
DM->RecordDisc(true,true);
}
MessageBox(0,"CD Burning completed successfully","CD Burning",0);
Cursor::Current = System::Windows::Forms::Cursors::Default ;
DR->CloseExclusive();
sRecorder->Dispose();
DR->Dispose();
DM->Dispose();
}catch(COMException* e)
{
e->Message;
}

The data is staging on CD but burning Cd is not successful..

Could any one help me out??


Regards
Salai

Salai

AnswerRe: CD Burning using IMAPI Pin
Christian Graus30-Nov-06 0:35
protectorChristian Graus30-Nov-06 0:35 
Questionadding year navigation to calendar Pin
sumit_k29-Nov-06 18:16
sumit_k29-Nov-06 18:16 
AnswerRe: adding year navigation to calendar Pin
Robert Rohde30-Nov-06 11:26
Robert Rohde30-Nov-06 11:26 
Questionadvanced validation ....urgent .net Pin
snuffnit29-Nov-06 15:50
snuffnit29-Nov-06 15:50 
GeneralRe: advanced validation ....urgent .net Pin
George L. Jackson29-Nov-06 17:10
George L. Jackson29-Nov-06 17:10 
GeneralRe: advanced validation ....urgent .net Pin
Guffa29-Nov-06 19:00
Guffa29-Nov-06 19:00 
GeneralRe: advanced validation ....urgent .net Pin
Not Active29-Nov-06 21:59
mentorNot Active29-Nov-06 21:59 
QuestionSecurityException on Invoke Pin
Kastellanos Nikos29-Nov-06 1:23
Kastellanos Nikos29-Nov-06 1:23 
AnswerRe: SecurityException on Invoke Pin
Robert Rohde30-Nov-06 11:31
Robert Rohde30-Nov-06 11:31 
GeneralRe: SecurityException on Invoke Pin
Kastellanos Nikos30-Nov-06 22:32
Kastellanos Nikos30-Nov-06 22:32 
GeneralRe: SecurityException on Invoke Pin
Robert Rohde1-Dec-06 9:21
Robert Rohde1-Dec-06 9:21 
GeneralRe: SecurityException on Invoke Pin
Kastellanos Nikos3-Dec-06 22:24
Kastellanos Nikos3-Dec-06 22:24 
QuestionCom port and window service Pin
Tauseef A29-Nov-06 1:15
Tauseef A29-Nov-06 1:15 
Questiongeting time from the server Pin
microuser_200028-Nov-06 22:02
microuser_200028-Nov-06 22:02 
AnswerRe: geting time from the server Pin
Tauseef A28-Nov-06 22:37
Tauseef A28-Nov-06 22:37 
QuestionUsing http modules with windows applications Pin
Kanjinghat28-Nov-06 18:41
Kanjinghat28-Nov-06 18:41 
AnswerRe: Using http modules with windows applications Pin
Pete O'Hanlon30-Nov-06 9:19
mvePete O'Hanlon30-Nov-06 9:19 

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.