Click here to Skip to main content
15,910,123 members
Home / Discussions / C#
   

C#

 
GeneralRe: The GetDetailsOf() Method Pin
Ankit Rajpoot13-Oct-08 7:30
Ankit Rajpoot13-Oct-08 7:30 
GeneralRe: The GetDetailsOf() Method Pin
Dave Kreskowiak13-Oct-08 9:07
mveDave Kreskowiak13-Oct-08 9:07 
Questionsave pdf on disk [modified] Pin
teddddddddddd13-Oct-08 5:11
teddddddddddd13-Oct-08 5:11 
Question.NET Remoting doesn't work with windows service but does with console application Pin
MegaBlasterX13-Oct-08 5:07
MegaBlasterX13-Oct-08 5:07 
AnswerRe: .NET Remoting doesn't work with windows service but does with console application Pin
Pedram Behroozi13-Oct-08 8:32
Pedram Behroozi13-Oct-08 8:32 
GeneralRe: .NET Remoting doesn't work with windows service but does with console application Pin
MegaBlasterX13-Oct-08 21:23
MegaBlasterX13-Oct-08 21:23 
GeneralRe: .NET Remoting doesn't work with windows service but does with console application Pin
DaveyM6913-Oct-08 23:43
professionalDaveyM6913-Oct-08 23:43 
GeneralRe: .NET Remoting doesn't work with windows service but does with console application Pin
Pedram Behroozi14-Oct-08 1:33
Pedram Behroozi14-Oct-08 1:33 
Questioniris recognition Pin
laswad13-Oct-08 5:06
laswad13-Oct-08 5:06 
AnswerRe: iris recognition Pin
Dave Kreskowiak13-Oct-08 5:22
mveDave Kreskowiak13-Oct-08 5:22 
QuestionHorizontally scrolling grid Pin
Chazzysb13-Oct-08 4:29
Chazzysb13-Oct-08 4:29 
AnswerRe: Horizontally scrolling grid Pin
Dave Kreskowiak13-Oct-08 5:26
mveDave Kreskowiak13-Oct-08 5:26 
GeneralRe: Horizontally scrolling grid Pin
Chazzysb13-Oct-08 6:43
Chazzysb13-Oct-08 6:43 
Questionexecuting a program by double clicking on a file shown in list view ( C# ) Pin
Gianpaolo Barci13-Oct-08 4:17
Gianpaolo Barci13-Oct-08 4:17 
AnswerRe: executing a program by double clicking on a file shown in list view ( C# ) Pin
SeMartens13-Oct-08 4:40
SeMartens13-Oct-08 4:40 
GeneralRe: executing a program by double clicking on a file shown in list view ( C# ) Pin
Gianpaolo Barci13-Oct-08 4:48
Gianpaolo Barci13-Oct-08 4:48 
GeneralRe: executing a program by double clicking on a file shown in list view ( C# ) Pin
SeMartens13-Oct-08 5:00
SeMartens13-Oct-08 5:00 
Generalexplaining better my program Pin
Gianpaolo Barci13-Oct-08 5:22
Gianpaolo Barci13-Oct-08 5:22 
GeneralRe: executing a program by double clicking on a file shown in list view ( C# ) Pin
Dave Kreskowiak13-Oct-08 5:01
mveDave Kreskowiak13-Oct-08 5:01 
GeneralRe: executing a program by double clicking on a file shown in list view ( C# ) Pin
Gianpaolo Barci13-Oct-08 5:29
Gianpaolo Barci13-Oct-08 5:29 
GeneralI tried another method!!! Pin
Gianpaolo Barci13-Oct-08 4:59
Gianpaolo Barci13-Oct-08 4:59 
AnswerGetting really close the answer!!!! Pin
Gianpaolo Barci13-Oct-08 7:11
Gianpaolo Barci13-Oct-08 7:11 
GeneralRe: Getting really close the answer!!!! Pin
SeMartens13-Oct-08 21:23
SeMartens13-Oct-08 21:23 
QuestionHow to read a DLL written in VB.NET in C#. Pin
MegaBlasterX13-Oct-08 4:16
MegaBlasterX13-Oct-08 4:16 
AnswerRe: How to read a DLL written in VB.NET in C#. Pin
Abhijit Jana13-Oct-08 4:32
professionalAbhijit Jana13-Oct-08 4:32 
What I have Done :
1: Create A Solution and Create a Windows Application in C#.
2. Right Click On Soluntaion -> Add New - > Class Library ( Choose Langauge as VB.NET )
3: Create a Class Library (MyLibrary) in VB.NET
4. Create Class as Class1 and Two Function A1() and A2() as Public.
5. Build The Class Library.
6.Back To My C# Application, Right Click on Reference -> Add -> Projects
Add MyLibrary.Dll
7. in C# code
using MyLibrary;
Now you can Able to Create Object of Class1

//Create Object of VB.Net Dll<br />
Class1 C1=new Class1();<br />
//Calling Methods<br />
C1.A1() // Working Fine<br />
C1.A2()//Also Working Fine


Now Try To Following Steps, Hope you will do it. that I have just done it. Smile | :)

cheers,
Abhijit

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.