Click here to Skip to main content
15,925,444 members
Home / Discussions / C#
   

C#

 
GeneralRe: Message Board tags? Pin
Heath Stewart5-May-04 2:55
protectorHeath Stewart5-May-04 2:55 
GeneralDataGridTextBoxColumn.TextBox .KeyDown event doesnt catch Enter key Pin
blankg4-May-04 12:38
blankg4-May-04 12:38 
GeneralUsing MSMQ with Web Services Pin
MrJJKoolJ4-May-04 12:35
MrJJKoolJ4-May-04 12:35 
GeneralRe: Using MSMQ with Web Services Pin
Heath Stewart4-May-04 16:57
protectorHeath Stewart4-May-04 16:57 
GeneralViewing computers in a workgroup Pin
User 9625784-May-04 12:15
User 9625784-May-04 12:15 
GeneralThis should be easy Pin
Neil Van Eps4-May-04 10:45
Neil Van Eps4-May-04 10:45 
GeneralRe: This should be easy Pin
leppie4-May-04 11:59
leppie4-May-04 11:59 
GeneralRe: This should be easy Pin
Heath Stewart4-May-04 16:31
protectorHeath Stewart4-May-04 16:31 
GeneralRe: This should be easy Pin
Neil Van Eps11-May-04 8:54
Neil Van Eps11-May-04 8:54 
GeneralRe: This should be easy Pin
Heath Stewart11-May-04 8:56
protectorHeath Stewart11-May-04 8:56 
Generalexport to Excel Pin
econnor4-May-04 9:24
econnor4-May-04 9:24 
GeneralRe: export to Excel Pin
Heath Stewart4-May-04 9:35
protectorHeath Stewart4-May-04 9:35 
GeneralRe: export to Excel Pin
econnor4-May-04 10:21
econnor4-May-04 10:21 
GeneralRe: export to Excel Pin
Heath Stewart4-May-04 10:25
protectorHeath Stewart4-May-04 10:25 
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 

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.