Click here to Skip to main content
15,887,416 members
Home / Discussions / C#
   

C#

 
QuestionAutoscroll DataGridview Control Pin
Member 20251764-Jun-09 16:07
Member 20251764-Jun-09 16:07 
AnswerRe: Autoscroll DataGridview Control Pin
Niladri_Biswas4-Jun-09 16:25
Niladri_Biswas4-Jun-09 16:25 
GeneralRe: Autoscroll DataGridview Control Pin
Christian Graus4-Jun-09 16:26
protectorChristian Graus4-Jun-09 16:26 
AnswerRe: Autoscroll DataGridview Control Pin
Christian Graus4-Jun-09 16:25
protectorChristian Graus4-Jun-09 16:25 
QuestionHow to copy sysDiagrams when copying a database Pin
fiaolle4-Jun-09 8:51
fiaolle4-Jun-09 8:51 
QuestionIs it possible to use VB control in C#? Pin
Seraph_summer4-Jun-09 8:49
Seraph_summer4-Jun-09 8:49 
AnswerRe: Is it possible to use VB control in C#? Pin
DaveyM694-Jun-09 8:53
professionalDaveyM694-Jun-09 8:53 
AnswerRe: Is it possible to use VB control in C#? Pin
0x3c04-Jun-09 9:36
0x3c04-Jun-09 9:36 
Just to expand on the previous poster's points:
All .Net Framework base languages are compiled down to a bytecode concoction known as MSIL or CIL
MSIL: Microsoft Intermediate Language
CIL: Common Intermediate Language
MSIL was what CIL was called back when the .Net Framework was in Beta

A VB.Net based control is converted to code behind the scenes by the IDE (Visual Studio or SharpDevelop, etc.) This code is then converted to CIL at compile time and interpreted by the .Net Framework's JIT (Just In Time) compiler into actual processor code at runtime. This means that languages using the .Net Framework are known as interpreted languages (which means they use a bytecode which is converted to processor code at runtime), as opposed to compiled languages (which produce processor code from the first base) like C++. This is why C++ and ASM is usually faster than C# and VB.Net

Anyway, the upshot of this commonly-compiled basecode is that the same code will compile down to the same bytecode, regardless of which language you write it in. This makes up half of a .Net Framework executable (assembly). Logically then, the metadata (the other half of an assembly) would also be the same. Therefore, we can say that if an algorithm is implemented identically in two .Net Framework languages, they will produce an identical output. So if you can add a reference to and use a VB-based control, you can also add a reference to and use a C#-based control. To all intents and purposes, they are identical

Between the idea
And the reality
Between the motion
And the act
Falls the Shadow

GeneralRe: Is it possible to use VB control in C#? Pin
Seraph_summer4-Jun-09 10:08
Seraph_summer4-Jun-09 10:08 
GeneralRe: Is it possible to use VB control in C#? Pin
Dave Kreskowiak4-Jun-09 10:16
mveDave Kreskowiak4-Jun-09 10:16 
GeneralRe: Is it possible to use VB control in C#? Pin
0x3c04-Jun-09 10:24
0x3c04-Jun-09 10:24 
GeneralRe: Is it possible to use VB control in C#? Pin
harold aptroot4-Jun-09 10:45
harold aptroot4-Jun-09 10:45 
GeneralRe: Is it possible to use VB control in C#? Pin
Seraph_summer4-Jun-09 10:27
Seraph_summer4-Jun-09 10:27 
GeneralRe: Is it possible to use VB control in C#? Pin
harold aptroot4-Jun-09 10:53
harold aptroot4-Jun-09 10:53 
GeneralRe: Is it possible to use VB control in C#? Pin
Dave Kreskowiak4-Jun-09 12:58
mveDave Kreskowiak4-Jun-09 12:58 
GeneralRe: Is it possible to use VB control in C#? Pin
Christian Graus4-Jun-09 13:43
protectorChristian Graus4-Jun-09 13:43 
GeneralRe: Is it possible to use VB control in C#? Pin
Rajesh R Subramanian4-Jun-09 19:38
professionalRajesh R Subramanian4-Jun-09 19:38 
AnswerRe: Is it possible to use VB control in C#? Pin
Christian Graus4-Jun-09 11:49
protectorChristian Graus4-Jun-09 11:49 
QuestionRajdeep.net Pin
EliottA4-Jun-09 8:46
EliottA4-Jun-09 8:46 
AnswerRe: Rajdeep.net Pin
I Believe In GOD4-Jun-09 9:43
I Believe In GOD4-Jun-09 9:43 
GeneralRe: Rajdeep.net Pin
OriginalGriff4-Jun-09 9:50
mveOriginalGriff4-Jun-09 9:50 
GeneralRe: Rajdeep.net Pin
I Believe In GOD4-Jun-09 9:57
I Believe In GOD4-Jun-09 9:57 
GeneralRe: Rajdeep.net Pin
molesworth4-Jun-09 12:38
molesworth4-Jun-09 12:38 
Generalignorandus Pin
Luc Pattyn4-Jun-09 11:02
sitebuilderLuc Pattyn4-Jun-09 11:02 
GeneralRe: ignorandus Pin
OriginalGriff4-Jun-09 21:48
mveOriginalGriff4-Jun-09 21:48 

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.