Tagged Questions
1
vote
2answers
91 views
Creating heirarchy of files in vb.net
I'm trying to create heirarchy of classes in vb.net. I was able to achieve it in csharp by using
the following tags in .csproj
<Compile Include="ClassA.cs">
...
0
votes
4answers
81 views
Need a good freeware that will correct your VB once translated from C#
I've used Teleflex, developerfusion, and SharpDeveloper, and all these, to convert C# to VB, but as most know, there are always errors, and modules left out, and such.
Does anybody know of a good VB ...
1
vote
1answer
503 views
C# -->Go to Definition ==> VB.NET
I have a solution in VS 2010.
There are two DLL projects: one UserControl in C# WPF (myCSharpUC) and other - WinForm UserControl in VB.NET (myVbUC)
Actually in myCSharpUC I have an instance of ...
2
votes
3answers
2k views
How to get expansion of code behind files in a vb.net web app?
I'm a C# guy, but I need to work on a vb.net application.
In a C# web app, you can expand the codebehind and designer files by clicking on the little arrow to the left of the .aspx file name.
...
0
votes
1answer
346 views
calling a vb.net class from c# in VS2010
So i am working on a wpf browser project in c# but on of the class library's I need is in vb.net. So in VS2010 I have imported the solution called vblib and it shows up on the solution explorer. The ...
3
votes
2answers
3k views
How can I get my VB.NET forms application startup method to be Sub Main() in Program.vb?
Trying to get it to behave like C#, where there is a Program class with a static Main method.
However, in the project properties, I cannot set Program.vb to be the startup object, only the forms (it ...