-
Dec 12th, 2007, 10:45 AM
#1
Thread Starter
Hyperactive Member
Which programming language have you used to make VB08?
This may sound silly but which programming language have you used to make VB08?
-
Dec 12th, 2007, 11:04 AM
#2
Re: Which programming language have you used to make VB08?
I think it depends on what part of VB08 you're referring to but I am also curious about this question.
The IDE was most likely developed in C++ as, I believe, has been the existing codebase (as far as I know VS hasn't been re-written).
The .Net framework has been reported to have been developed via C#.
For VB08... I would imagine the parser was created in C# but I'd be curious to know if any other languages / technologies were used. Is VB used at all in the actual developed of VB?
-
Dec 12th, 2007, 11:14 AM
#3
Re: Which programming language have you used to make VB08?
If I remember right... the IDE is written in C#.... the compiler is in C++ (I think)... But VS is written in C#.NET. At least it used to be....
-tg
-
Dec 12th, 2007, 11:18 AM
#4
Re: Which programming language have you used to make VB08?
Yes, I was curious about this too as 08 is out I wonder just how much of a percentage of it is written in .NET.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum.
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it!
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6
-
Dec 12th, 2007, 11:23 AM
#5
Re: Which programming language have you used to make VB08?
Originally Posted by techgnome
If I remember right... the IDE is written in C#.... the compiler is in C++ (I think)... But VS is written in C#.NET. At least it used to be....
-tg
This is interesting insofar as C# is a part of .NET - it would seem as though one part of .NET was used to develop another part.
(As an aside, many years ago when I was taking a class in the Assembly language I asked my instructor what language Assembly was written in.....he was not amused. )
-
Dec 12th, 2007, 11:25 AM
#6
Re: Which programming language have you used to make VB08?
Well I would assume its because C# is easier for the C++ programmers to use since they come from a C++ background.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum.
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it!
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6
-
Dec 12th, 2007, 11:27 AM
#7
Re: Which programming language have you used to make VB08?
Actually, not really.... you develop the language binaries... and the compiler in something like C++.... now you have a command-line compiler.... you then write the interface using something, could be the previous version of the IDE... .could be note pad.... could be something proprietary.... thyen use the command line to build the IDE.... it's almost ingenious... downright brilliant in my opinion.
-tg
-
Dec 12th, 2007, 11:29 AM
#8
Re: Which programming language have you used to make VB08?
Use VS to create VS. It's perfect.
I would imagine the IDE wasn't written with VB, given what it does. C# is in its' nature a faster language, and C++ even more so. Neither would really surprise me.
-
Dec 12th, 2007, 01:21 PM
#9
Re: Which programming language have you used to make VB08?
The Mono compiler is self-hosting (compiles its own code).
I don't live here any more.
-
Dec 12th, 2007, 04:32 PM
#10
Re: Which programming language have you used to make VB08?
Originally Posted by techgnome
If I remember right... the IDE is written in C#.... the compiler is in C++ (I think)... But VS is written in C#.NET. At least it used to be....
-tg
Same exact information i have, i also found this also on Bjarne's site...
Visual Studio (Visual C++, Visual Basic, Visual FoxPro) (Some parts of Visual Studio like the Base Class Libraries that ship with the .NET Framework were written using C# but the C# compiler itself is written in C++.)
-
Dec 12th, 2007, 05:56 PM
#11
Special Guest - Microsoft
Re: Which programming language have you used to make VB08?
Myth buster time:
The compiler is native code written in C++, the VB runtime is completely written in VB (hence so is part of the .NET framework redist), My namespace and framework is completely written in VB.
The IDE is a solid combination of C++, C#, and VB. Examples of VB are the project designer and corresponding designers (settings, resources, attributes). Other managed code designers such as OR designer are C#.
Dynamics SL is another example of a serious Microsoft product written in a combination of VB.NET, C++, and C#.
Best,
Paul
-
Dec 13th, 2007, 10:50 AM
#12
Thread Starter
Hyperactive Member
Re: Which programming language have you used to make VB08?
Thank you PaulYuk_MS for you answer and for clarifying "tha mith".
Thank you MS VB Dev Team for giving us this opportunity to chat with you.
-
Dec 13th, 2007, 11:33 PM
#13
Special Guest - Microsoft
Re: Which programming language have you used to make VB08?
Thank you for having us - honestly we love the engaging conversations we're having with y'all.
-
Dec 14th, 2007, 10:02 AM
#14
Re: Which programming language have you used to make VB08?
Originally Posted by PaulYuk_MS
Myth buster time:
The compiler is native code written in C++, the VB runtime is completely written in VB (hence so is part of the .NET framework redist), My namespace and framework is completely written in VB.
The IDE is a solid combination of C++, C#, and VB. Examples of VB are the project designer and corresponding designers (settings, resources, attributes). Other managed code designers such as OR designer are C#.
Dynamics SL is another example of a serious Microsoft product written in a combination of VB.NET, C++, and C#.
I am astounded, and very please to hear, that VB was used in these products. As an old VB'er (I started with VB3), I've taken some....er...um..."comments" over years from folks that believe VB is nothing more than a "play" language.
I can't wait for the next time someone says something like that to me.
-
Dec 14th, 2007, 10:56 AM
#15
Re: Which programming language have you used to make VB08?
Originally Posted by Hack
As an old VB'er (I started with VB3), I've taken some....er...um..."comments" over years from folks that believe VB is nothing more than a "play" language.
Unfortunately not enough people realise that VB stands for Very Best :-)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|