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

.NET (Core and Framework)

 
GeneralRe: composit data entry control Pin
Aryadip11-May-04 19:45
Aryadip11-May-04 19:45 
GeneralCode access security for in-memory assembly Pin
VRubins11-May-04 4:30
VRubins11-May-04 4:30 
GeneralRe: Code access security for in-memory assembly Pin
TigerNinja_11-May-04 12:05
TigerNinja_11-May-04 12:05 
GeneralRe: Code access security for in-memory assembly Pin
Aryadip12-May-04 1:51
Aryadip12-May-04 1:51 
General.NET Questions Pin
Honest10-May-04 22:22
Honest10-May-04 22:22 
GeneralRe: .NET Questions Pin
Ernst Kuschke11-May-04 1:18
Ernst Kuschke11-May-04 1:18 
QuestionHow to call VB.NET DLL from VC+.NET Pin
Member 87328310-May-04 12:47
Member 87328310-May-04 12:47 
AnswerRe: How to call VB.NET DLL from VC+.NET Pin
TigerNinja_10-May-04 14:18
TigerNinja_10-May-04 14:18 
1. Add a reference in your C++.NET project to your VB.NET Project (if in same solution) or the .dll itself if not part of the same solution.

2. Make sure you use the compiler switch /clr when compiling the C++ project.

3. In your code you might want to add a #using statement followed by the namespace of your VB.NET dll.

4. Then to create a new instance of something defined in your VB.NET dll, say you defined a Foo class do this:

__gc Foo myFoo = new Foo();<br />
<br />
myFoo.DoSomething();


There is a little more to it, but msdn.microsoft.com has plenty of info on this. This post is all from memory, but it is the gist of it.

Good luck.





R.Bischoff 
.NET, Kommst du mit?


GeneralHelp on plugin Pin
pcpc10-May-04 8:53
pcpc10-May-04 8:53 
GeneralRe: Help on plugin Pin
TigerNinja_10-May-04 14:21
TigerNinja_10-May-04 14:21 
QuestionHow to get the subnet mask Pin
Chen Venkataraman10-May-04 4:03
Chen Venkataraman10-May-04 4:03 
GeneralUpgrade VS.NET to .NET 1.1 Pin
Alan Zhao9-May-04 9:06
Alan Zhao9-May-04 9:06 
GeneralRe: Upgrade VS.NET to .NET 1.1 Pin
Roman Rodov10-May-04 14:00
Roman Rodov10-May-04 14:00 
GeneralProblem with IIS 5 Pin
Gary Hyslop at home8-May-04 11:33
Gary Hyslop at home8-May-04 11:33 
GeneralRe: Problem with IIS 5 Pin
TigerNinja_11-May-04 12:17
TigerNinja_11-May-04 12:17 
GeneralRe: Problem with IIS 5 Pin
sreejith ss nair12-May-04 0:59
sreejith ss nair12-May-04 0:59 
GeneralCreating DLL in visual C++.NET Pin
Emiliano8-May-04 2:02
Emiliano8-May-04 2:02 
GeneralRe: Creating DLL in visual C++.NET Pin
srikkanthank9-May-04 5:06
srikkanthank9-May-04 5:06 
GeneralToString(); Pin
gman447-May-04 14:29
gman447-May-04 14:29 
GeneralRe: ToString(); Pin
srikkanthank9-May-04 5:17
srikkanthank9-May-04 5:17 
GeneralMC++ or C# for user controls Pin
Julien Delezenne4-May-04 15:17
Julien Delezenne4-May-04 15:17 
GeneralRe: MC++ or C# for user controls Pin
ian mariano8-May-04 6:50
ian mariano8-May-04 6:50 
GeneralRe: MC++ or C# for user controls Pin
Julien Delezenne9-May-04 2:43
Julien Delezenne9-May-04 2:43 
General.NET advantage over JAVA Pin
mmikey74-May-04 11:43
mmikey74-May-04 11:43 
GeneralRe: .NET advantage over JAVA Pin
Jeff Varszegi4-May-04 12:22
professionalJeff Varszegi4-May-04 12:22 

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.