Click here to Skip to main content
15,900,461 members
Home / Discussions / C#
   

C#

 
GeneralRe: Is this result realistic? Pin
Dario Solera18-Sep-05 1:26
Dario Solera18-Sep-05 1:26 
GeneralRe: Is this result realistic? Pin
Dario Solera18-Sep-05 1:40
Dario Solera18-Sep-05 1:40 
QuestionBinding Ndisprot to MS Loopback Pin
rick.north17-Sep-05 23:35
rick.north17-Sep-05 23:35 
Questionhelp to create a dll Pin
Sasuko17-Sep-05 23:19
Sasuko17-Sep-05 23:19 
AnswerRe: help to create a dll Pin
Niklas Ulvinge18-Sep-05 0:55
Niklas Ulvinge18-Sep-05 0:55 
GeneralRe: help to create a dll Pin
Anonymous18-Sep-05 4:04
Anonymous18-Sep-05 4:04 
GeneralRe: help to create a dll Pin
Niklas Ulvinge18-Sep-05 5:12
Niklas Ulvinge18-Sep-05 5:12 
AnswerRe: help to create a dll Pin
Heinz_18-Sep-05 8:02
Heinz_18-Sep-05 8:02 
You can also create a dll manually without using VS Studio, i use notepad and batch files for programming and creating a dll is an easy task:

With explorer browse to the folder where your sources (.cs files) are located (the files that your dll will use) and create a text file with notepad and add the following 2 lines to this new file:

csc.exe /target:library /out:MyLibrary.dll *.cs
pause

Save the file, close it and now rename its extension from .txt to .bat, this is a batch file. Now doble click on it (open it) and it will open a DOS window and will start the compiling process. The first line you added to the file will create your dll and the second will prevent the window to close and it will keep it open so you can see the compiler's output in case something goes wrong.
Questionremoting basics Pin
g00fyman17-Sep-05 21:04
g00fyman17-Sep-05 21:04 
QuestionHoe To increase Row Height of a List View control! Pin
majidbhutta17-Sep-05 19:49
majidbhutta17-Sep-05 19:49 
AnswerRe: Hoe To increase Row Height of a List View control! Pin
mav.northwind17-Sep-05 23:00
mav.northwind17-Sep-05 23:00 
QuestionCrystal report Pin
Amir Jalaly17-Sep-05 19:46
Amir Jalaly17-Sep-05 19:46 
QuestionTyped DataSet Pin
Taurian11017-Sep-05 16:39
Taurian11017-Sep-05 16:39 
QuestionWindows DataGrid Pin
Taurian11017-Sep-05 16:32
Taurian11017-Sep-05 16:32 
QuestionDatabound ComboBox Selection Problems Pin
Glenn E. Lanier II17-Sep-05 13:46
Glenn E. Lanier II17-Sep-05 13:46 
QuestionAdding SMP Support Pin
Heinz_17-Sep-05 11:23
Heinz_17-Sep-05 11:23 
AnswerRe: Adding SMP Support Pin
Dave Kreskowiak17-Sep-05 14:37
mveDave Kreskowiak17-Sep-05 14:37 
GeneralRe: Adding SMP Support Pin
Heinz_18-Sep-05 8:09
Heinz_18-Sep-05 8:09 
GeneralRe: Adding SMP Support Pin
Dave Kreskowiak19-Sep-05 1:33
mveDave Kreskowiak19-Sep-05 1:33 
GeneralRe: Adding SMP Support Pin
Heinz_19-Sep-05 10:45
Heinz_19-Sep-05 10:45 
GeneralRe: Adding SMP Support Pin
Heinz_19-Sep-05 11:27
Heinz_19-Sep-05 11:27 
GeneralRe: Adding SMP Support Pin
Dave Kreskowiak19-Sep-05 15:24
mveDave Kreskowiak19-Sep-05 15:24 
GeneralRe: Adding SMP Support Pin
Heinz_19-Sep-05 17:10
Heinz_19-Sep-05 17:10 
QuestionMoving xml nodes Pin
thepersonof17-Sep-05 9:53
thepersonof17-Sep-05 9:53 
AnswerRe: Moving xml nodes Pin
Alomgir Miah17-Sep-05 11:02
Alomgir Miah17-Sep-05 11:02 

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.