Click here to Skip to main content
15,908,907 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionHow to create crystal report using generic list Pin
ShaikhShahnawaz5-Nov-08 23:44
ShaikhShahnawaz5-Nov-08 23:44 
QuestionMicrosoftReportViewer Pin
hmklakmal4-Nov-08 1:23
hmklakmal4-Nov-08 1:23 
AnswerRe: MicrosoftReportViewer Pin
Wendelius4-Nov-08 6:16
mentorWendelius4-Nov-08 6:16 
GeneralRe: MicrosoftReportViewer Pin
hmklakmal4-Nov-08 14:52
hmklakmal4-Nov-08 14:52 
QuestionThings related with Unmanaged code [modified] Pin
Member 45546493-Nov-08 19:25
Member 45546493-Nov-08 19:25 
AnswerRe: Things related with Unmanaged code Pin
Dave Kreskowiak4-Nov-08 3:56
mveDave Kreskowiak4-Nov-08 3:56 
GeneralRe: Things related with Unmanaged code Pin
Member 45546494-Nov-08 18:53
Member 45546494-Nov-08 18:53 
GeneralRe: Things related with Unmanaged code Pin
Simon P Stevens4-Nov-08 23:23
Simon P Stevens4-Nov-08 23:23 
Member 4554649 wrote:
Unmanaged code means All languages like C,C++,Win API, VC++,VB 6


Yes, but...there are managed variants of c++ (called c++\cli). The Win API is a framework not a language. It is an unmanaged framework, but it can be called from either managed or unmanaged code. VB6 actually has the option to be compiled as unmanaged or managed code (called P-code in the case of VB6). It's int the project settings somewhere IIRC.

Unmanaged is anything that is compiled straight to machine code and runs directly on the system. Managed means it is compiled to an intermediate language (MSIL for c#, bytecode for Java, etc), and a runtime (like the CLR or JVM) is used to interpret that intermediate language and convert it to machine code as the program is running - This is called JIT compilation (Just In Time).

Member 4554649 wrote:
One more thing if in my application i have unmanaged code who is going to compile that code ?


The compiler. GCC for c++ or the visual studio IDE for vc++. You can't mix managed and unmanaged code in the same project.

Simon

QuestionVSTO application deployment Pin
tozy3-Nov-08 19:16
tozy3-Nov-08 19:16 
AnswerStop cross posting Pin
Simon P Stevens4-Nov-08 2:04
Simon P Stevens4-Nov-08 2:04 
Question.Net API GetMembers(BindingFlags) returns some additional members. Pin
Manish Paul3-Nov-08 5:58
Manish Paul3-Nov-08 5:58 
AnswerRe: .Net API GetMembers(BindingFlags) returns some additional members. Pin
Mark Churchill3-Nov-08 14:09
Mark Churchill3-Nov-08 14:09 
QuestionHow do I suppress the SelectAll when tabbing into a ComboBox? Pin
Poolee2-Nov-08 18:51
Poolee2-Nov-08 18:51 
AnswerRe: How do I suppress the SelectAll when tabbing into a ComboBox? Pin
Wendelius3-Nov-08 9:09
mentorWendelius3-Nov-08 9:09 
GeneralRe: How do I suppress the SelectAll when tabbing into a ComboBox? Pin
Poolee3-Nov-08 13:06
Poolee3-Nov-08 13:06 
GeneralRe: How do I suppress the SelectAll when tabbing into a ComboBox? Pin
Wendelius3-Nov-08 17:53
mentorWendelius3-Nov-08 17:53 
QuestionHow to transfer file via bluetooth from desktop PC to Windows Mobile Device Pin
yudhisthira31-Oct-08 19:17
yudhisthira31-Oct-08 19:17 
AnswerRe: How to transfer file via bluetooth from desktop PC to Windows Mobile Device Pin
Giorgi Dalakishvili2-Nov-08 4:32
mentorGiorgi Dalakishvili2-Nov-08 4:32 
QuestionHow to show the windows File Association form? Pin
ninkk31-Oct-08 8:21
ninkk31-Oct-08 8:21 
AnswerRe: How to show the windows File Association form? Pin
ninkk2-Nov-08 7:17
ninkk2-Nov-08 7:17 
QuestionChange class inheritance at runtime Pin
jpsstavares31-Oct-08 1:18
jpsstavares31-Oct-08 1:18 
AnswerRe: Change class inheritance at runtime Pin
Pete O'Hanlon31-Oct-08 1:54
mvePete O'Hanlon31-Oct-08 1:54 
GeneralRe: Change class inheritance at runtime Pin
jpsstavares31-Oct-08 2:00
jpsstavares31-Oct-08 2:00 
GeneralRe: Change class inheritance at runtime Pin
Pete O'Hanlon31-Oct-08 2:46
mvePete O'Hanlon31-Oct-08 2:46 
GeneralRe: Change class inheritance at runtime Pin
jpsstavares31-Oct-08 7:27
jpsstavares31-Oct-08 7:27 

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.