Click here to Skip to main content
15,922,533 members
Home / Discussions / C#
   

C#

 
QuestionHow can I compare doubles? Pin
xkx3220-Jul-06 21:28
xkx3220-Jul-06 21:28 
AnswerRe: How can I compare doubles? Pin
Nader Elshehabi20-Jul-06 22:10
Nader Elshehabi20-Jul-06 22:10 
AnswerRe: How can I compare doubles? Pin
Andrei Ungureanu20-Jul-06 22:42
Andrei Ungureanu20-Jul-06 22:42 
AnswerRe: How can I compare doubles? Pin
Shajeel21-Jul-06 0:35
Shajeel21-Jul-06 0:35 
AnswerRe: How can I compare doubles? Pin
Super Lloyd21-Jul-06 0:44
Super Lloyd21-Jul-06 0:44 
QuestionHow to get a DataTable from StoreProcedure? Pin
Old Gun20-Jul-06 20:58
Old Gun20-Jul-06 20:58 
QuestionHowTo Print A Grid In A Window Application Pin
Vipin Venugopal20-Jul-06 20:47
Vipin Venugopal20-Jul-06 20:47 
AnswerRe: HowTo Print A Grid In A Window Application Pin
Duncan Edwards Jones20-Jul-06 21:12
professionalDuncan Edwards Jones20-Jul-06 21:12 
GeneralRe: HowTo Print A Grid In A Window Application Pin
Vipin Venugopal20-Jul-06 23:26
Vipin Venugopal20-Jul-06 23:26 
AnswerRe: HowTo Print A Grid In A Window Application Pin
Nader Elshehabi20-Jul-06 22:50
Nader Elshehabi20-Jul-06 22:50 
QuestionC# .NET 1.1 Application displaying problem in Chinese Windows XP Pin
uz_jaswal20-Jul-06 20:43
uz_jaswal20-Jul-06 20:43 
QuestionHow can I create a var that doesn't get destroyed after exiting the method? Pin
xkx3220-Jul-06 20:03
xkx3220-Jul-06 20:03 
QuestionRe: How can I create a var that doesn't get destroyed after exiting the method? Pin
Vega0220-Jul-06 20:19
Vega0220-Jul-06 20:19 
AnswerRe: How can I create a var that doesn't get destroyed after exiting the method? Pin
xkx3220-Jul-06 21:29
xkx3220-Jul-06 21:29 
AnswerRe: How can I create a var that doesn't get destroyed after exiting the method? [modified] Pin
Martin#20-Jul-06 21:36
Martin#20-Jul-06 21:36 
AnswerRe: How can I create a var that doesn't get destroyed after exiting the method? Pin
Martin#20-Jul-06 20:33
Martin#20-Jul-06 20:33 
AnswerRe: How can I create a var that doesn't get destroyed after exiting the method? Pin
Nader Elshehabi20-Jul-06 22:33
Nader Elshehabi20-Jul-06 22:33 
QuestionC# to Excel Pin
aaraaayen20-Jul-06 19:56
aaraaayen20-Jul-06 19:56 
AnswerRe: C# to Excel Pin
WillemM20-Jul-06 20:58
WillemM20-Jul-06 20:58 
AnswerRe: C# to Excel Pin
Nader Elshehabi20-Jul-06 22:46
Nader Elshehabi20-Jul-06 22:46 
GeneralRe: C# to Excel Pin
aaraaayen20-Jul-06 23:49
aaraaayen20-Jul-06 23:49 
GeneralRe: C# to Excel Pin
Nader Elshehabi21-Jul-06 3:26
Nader Elshehabi21-Jul-06 3:26 
AnswerRe: C# to Excel Pin
stancrm21-Jul-06 1:38
stancrm21-Jul-06 1:38 
QuestionIn C# ,How can i use a C++ DLL with a class being defined in head file. Pin
dfbx20-Jul-06 17:43
dfbx20-Jul-06 17:43 
AnswerRe: In C# ,How can i use a C++ DLL with a class being defined in head file. Pin
Andrei Ungureanu20-Jul-06 19:47
Andrei Ungureanu20-Jul-06 19:47 
you can try to create a DLL using the C++ class. After creating the DLL it's easier to use in c# with [DllImport] command. In c# char* becomes string byte* becomes byte[] and if you pass a value using reference like in your class "long* Value", use "ref log Value".
Hope it helps

Do your best to be the best

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.