Click here to Skip to main content
15,903,632 members
Home / Discussions / C#
   

C#

 
QuestionLINQ to SQL - Design Pattern Pin
brunoseixas14-Sep-10 8:09
brunoseixas14-Sep-10 8:09 
AnswerRe: LINQ to SQL - Design Pattern Pin
Ennis Ray Lynch, Jr.14-Sep-10 8:23
Ennis Ray Lynch, Jr.14-Sep-10 8:23 
GeneralRe: LINQ to SQL - Design Pattern Pin
OriginalGriff14-Sep-10 8:35
mveOriginalGriff14-Sep-10 8:35 
AnswerRe: LINQ to SQL - Design Pattern Pin
T M Gray14-Sep-10 8:43
T M Gray14-Sep-10 8:43 
AnswerRe: LINQ to SQL - Design Pattern Pin
PIEBALDconsult14-Sep-10 15:12
mvePIEBALDconsult14-Sep-10 15:12 
QuestionSimple Animation... Pin
stephen.darling14-Sep-10 7:01
stephen.darling14-Sep-10 7:01 
AnswerRe: Simple Animation... Pin
Ennis Ray Lynch, Jr.14-Sep-10 7:07
Ennis Ray Lynch, Jr.14-Sep-10 7:07 
AnswerRe: Simple Animation... Pin
Luc Pattyn14-Sep-10 7:08
sitebuilderLuc Pattyn14-Sep-10 7:08 
GeneralRe: Simple Animation... Pin
stephen.darling14-Sep-10 9:50
stephen.darling14-Sep-10 9:50 
GeneralRe: Simple Animation... Pin
Luc Pattyn14-Sep-10 9:53
sitebuilderLuc Pattyn14-Sep-10 9:53 
QuestionStatic method and thread safe question Pin
Yanshof14-Sep-10 6:17
Yanshof14-Sep-10 6:17 
AnswerRe: Static method and thread safe question Pin
Luc Pattyn14-Sep-10 6:20
sitebuilderLuc Pattyn14-Sep-10 6:20 
AnswerRe: Static method and thread safe question Pin
Ennis Ray Lynch, Jr.14-Sep-10 7:01
Ennis Ray Lynch, Jr.14-Sep-10 7:01 
Questionusercontrol Pin
utunity14-Sep-10 5:01
utunity14-Sep-10 5:01 
AnswerRe: usercontrol Pin
Luc Pattyn14-Sep-10 5:45
sitebuilderLuc Pattyn14-Sep-10 5:45 
GeneralRe: usercontrol Pin
Henry Minute14-Sep-10 5:46
Henry Minute14-Sep-10 5:46 
AnswerRe: usercontrol Pin
Henry Minute14-Sep-10 5:45
Henry Minute14-Sep-10 5:45 
GeneralRe: usercontrol Pin
utunity14-Sep-10 6:02
utunity14-Sep-10 6:02 
GeneralRe: usercontrol Pin
Henry Minute14-Sep-10 6:14
Henry Minute14-Sep-10 6:14 
GeneralRe: usercontrol Pin
Luc Pattyn14-Sep-10 6:18
sitebuilderLuc Pattyn14-Sep-10 6:18 
GeneralRe: usercontrol Pin
utunity14-Sep-10 6:36
utunity14-Sep-10 6:36 
GeneralRe: usercontrol Pin
Luc Pattyn14-Sep-10 6:57
sitebuilderLuc Pattyn14-Sep-10 6:57 
GeneralRe: usercontrol Pin
utunity14-Sep-10 7:10
utunity14-Sep-10 7:10 
GeneralRe: usercontrol Pin
Luc Pattyn14-Sep-10 7:39
sitebuilderLuc Pattyn14-Sep-10 7:39 
GeneralRe: usercontrol Pin
utunity14-Sep-10 7:50
utunity14-Sep-10 7:50 
tyty..

It's because i let's say want to add an item to a listbox in a program. In that case i would make a void like this.

public static void Add(listBox l, string s)
{
l.Items.Add(s);
}

And before the program knows what listbox it is to add the string i must be setted from designer code as it is a component. Thats what i want -.-

i could of course just do it like this.

myComponent.Box = listBox1

but i wan't to make it easy for beginners.

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.