Click here to Skip to main content
15,919,479 members
Home / Discussions / C#
   

C#

 
GeneralArchitecture question Pin
Jeff Varszegi4-May-04 9:07
professionalJeff Varszegi4-May-04 9:07 
GeneralRe: Architecture question Pin
Heath Stewart4-May-04 9:13
protectorHeath Stewart4-May-04 9:13 
GeneralRe: Architecture question Pin
Jeff Varszegi4-May-04 9:36
professionalJeff Varszegi4-May-04 9:36 
GeneralRe: Architecture question Pin
Heath Stewart4-May-04 9:51
protectorHeath Stewart4-May-04 9:51 
GeneralRe: Architecture question Pin
Jeff Varszegi4-May-04 10:01
professionalJeff Varszegi4-May-04 10:01 
GeneralRe: Architecture question Pin
Heath Stewart4-May-04 10:16
protectorHeath Stewart4-May-04 10:16 
GeneralNewbie - Updating Custom Controls Pin
andyj18324-May-04 8:20
andyj18324-May-04 8:20 
GeneralRe: Newbie - Updating Custom Controls Pin
Heath Stewart4-May-04 8:31
protectorHeath Stewart4-May-04 8:31 
The designer has little to do with it. All the code is serialized to your code file (your .cs source file) and an assembly reference is added to your project references. In real-world solutions, you common add multiple projects to a solution and use project references - not assembly references (right-click on project, select Add Reference, then click the Projects tab). This keeps the version numbers in sync, as well as the makes the build configurations the same.

As far as the toolbox goes, putting controls you're currently developing in there is a big mistake since they change often.

Also, if you're working on a multi-project solution, I highly recommend NOT using automatic versioning (i.e., using an asterisk - * - in the AssemblyVersionAttribute common found in AssemblyInfo.cs). This can get to be a big pain really fast, especially when not all your assemblies are bound to each other (like a plug-in type application).

If you're building UserControl derivatives in the same project in which you're working, the designer usually (it's supposed to) adds them to the toolbox for the active project automatically.

 

Microsoft MVP, Visual C#
My Articles
GeneralRe: Newbie - Updating Custom Controls Pin
andyj18324-May-04 9:04
andyj18324-May-04 9:04 
GeneralRe: Newbie - Updating Custom Controls Pin
Heath Stewart4-May-04 9:08
protectorHeath Stewart4-May-04 9:08 
GeneralWindow embedded, views Pin
Demian Panello4-May-04 7:23
Demian Panello4-May-04 7:23 
GeneralRe: Window embedded, views Pin
Heath Stewart4-May-04 8:26
protectorHeath Stewart4-May-04 8:26 
GeneralProcessor data Pin
mikker_1234-May-04 6:39
mikker_1234-May-04 6:39 
GeneralRe: Processor data Pin
Jeff Varszegi4-May-04 7:12
professionalJeff Varszegi4-May-04 7:12 
GeneralRe: Processor data Pin
..Hubert..4-May-04 7:58
..Hubert..4-May-04 7:58 
GeneralRe: Processor data Pin
eggie54-May-04 15:31
eggie54-May-04 15:31 
GeneralUsing a device driver in C# Pin
goldoche4-May-04 5:14
goldoche4-May-04 5:14 
GeneralRe: Using a device driver in C# Pin
Heath Stewart4-May-04 8:18
protectorHeath Stewart4-May-04 8:18 
GeneralWindows Forms DataGrid Control Keyboard Shortcuts Pin
Anonymous4-May-04 5:10
Anonymous4-May-04 5:10 
GeneralRe: Windows Forms DataGrid Control Keyboard Shortcuts Pin
Heath Stewart4-May-04 8:16
protectorHeath Stewart4-May-04 8:16 
GeneralXml and XSLT in C# Pin
Anonymous4-May-04 4:57
Anonymous4-May-04 4:57 
GeneralRe: Xml and XSLT in C# Pin
Heath Stewart4-May-04 8:10
protectorHeath Stewart4-May-04 8:10 
GeneralRe: Xml and XSLT in C# Pin
bertcox4-May-04 20:34
bertcox4-May-04 20:34 
GeneralRe: Xml and XSLT in C# Pin
Heath Stewart5-May-04 2:52
protectorHeath Stewart5-May-04 2:52 
GeneralRe: Xml and XSLT in C# Pin
bertcox5-May-04 3:42
bertcox5-May-04 3:42 

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.