Click here to Skip to main content
15,915,328 members
Home / Discussions / C#
   

C#

 
AnswerRe: ISupportInitialize.BeginInit............. Pin
kevin_moxiaoxing15-Jun-06 23:07
kevin_moxiaoxing15-Jun-06 23:07 
AnswerRe: ISupportInitialize.BeginInit............. Pin
leppie16-Jun-06 1:22
leppie16-Jun-06 1:22 
QuestionBest practice- sharing one form Pin
donkaiser15-Jun-06 12:02
donkaiser15-Jun-06 12:02 
AnswerRe: Best practice- sharing one form Pin
Ista15-Jun-06 12:53
Ista15-Jun-06 12:53 
AnswerRe: Best practice- sharing one form Pin
Ray Cassick15-Jun-06 13:05
Ray Cassick15-Jun-06 13:05 
AnswerRe: Best practice- sharing one form Pin
Eric Dahlvang16-Jun-06 3:08
Eric Dahlvang16-Jun-06 3:08 
GeneralRe: Best practice- sharing one form Pin
donkaiser16-Jun-06 5:12
donkaiser16-Jun-06 5:12 
AnswerRe: Best practice- sharing one form Pin
Eric Dahlvang16-Jun-06 9:00
Eric Dahlvang16-Jun-06 9:00 
10 easy steps:

1) File->New->Project->Visual C#->Windows->Class Library
	name it whatever you want (CP_DLLTest)

2) Project->Add New Item->Windows Form
  	Name it whatever you want (CP_DLLForm)

3) Build the DLL

4) File->New->Project->Visual C#->Windows->Windows Application

6) Project->Add Reference->Browse
	Locate your DLL

7) place the correct namespace at the top of Form1.cs in the Windows Application
	using CP_DLLTest;
	
8) Declare a class level object using the form name from the dll
	private CP_DLLForm myTestForm = new CP_DLLForm();

9) Add a button to Form1 in your Windows Application

10) Show the class level form object
	myTestForm.Show();


----------
Some problems are so complex that you have to be highly intelligent and well informed just to be undecided about them.
- Laurence J. Peters

GeneralRe: Best practice- sharing one form Pin
donkaiser16-Jun-06 10:08
donkaiser16-Jun-06 10:08 
QuestionLooking for component Pin
Jefis15-Jun-06 11:55
Jefis15-Jun-06 11:55 
QuestionCheckListBox and Which Forum Pin
Malcolm Smart15-Jun-06 11:27
Malcolm Smart15-Jun-06 11:27 
GeneralRe: CheckedListBox and Which Forum [modified] Pin
Mike Poz15-Jun-06 14:42
Mike Poz15-Jun-06 14:42 
GeneralRe: CheckedListBox and Which Forum Pin
Malcolm Smart15-Jun-06 21:09
Malcolm Smart15-Jun-06 21:09 
QuestionSo is there anyone who has been able to draw transparent on winforms? Pin
Ista15-Jun-06 11:09
Ista15-Jun-06 11:09 
AnswerRe: So is there anyone who has been able to draw transparent on winforms? Pin
Josh Smith15-Jun-06 11:18
Josh Smith15-Jun-06 11:18 
GeneralRe: So is there anyone who has been able to draw transparent on winforms? Pin
Ista15-Jun-06 15:50
Ista15-Jun-06 15:50 
QuestionDatabinding to the correct Row Pin
Drew McGhie15-Jun-06 11:02
Drew McGhie15-Jun-06 11:02 
AnswerRe: Databinding to the correct Row Pin
Drew McGhie15-Jun-06 11:31
Drew McGhie15-Jun-06 11:31 
QuestionFairly easy task (I think), but difficult to explain (plus I'm sort of a newbie) [modified] Pin
ThisIsMyUserName215-Jun-06 10:45
ThisIsMyUserName215-Jun-06 10:45 
AnswerRe: Fairly easy task (I think), but difficult to explain (plus I'm sort of a newbie) Pin
Josh Smith15-Jun-06 11:14
Josh Smith15-Jun-06 11:14 
GeneralRe: Fairly easy task (I think), but difficult to explain (plus I'm sort of a newbie) Pin
ThisIsMyUserName215-Jun-06 11:20
ThisIsMyUserName215-Jun-06 11:20 
GeneralRe: Fairly easy task (I think), but difficult to explain (plus I'm sort of a newbie) Pin
Josh Smith15-Jun-06 11:43
Josh Smith15-Jun-06 11:43 
GeneralRe: Fairly easy task (I think), but difficult to explain (plus I'm sort of a newbie) Pin
ThisIsMyUserName215-Jun-06 12:30
ThisIsMyUserName215-Jun-06 12:30 
AnswerRe: Fairly easy task (I think), but difficult to explain (plus I'm sort of a newbie) Pin
Alexander Wiseman15-Jun-06 11:24
Alexander Wiseman15-Jun-06 11:24 
GeneralRe: Fairly easy task (I think), but difficult to explain (plus I'm sort of a newbie) Pin
Alexander Wiseman15-Jun-06 11:29
Alexander Wiseman15-Jun-06 11:29 

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.