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

C#

 
GeneralRe: custome control events Pin
Anonymous4-Dec-04 7:57
Anonymous4-Dec-04 7:57 
GeneralRe: custome control events Pin
Stanciu Vlad4-Dec-04 8:14
Stanciu Vlad4-Dec-04 8:14 
GeneralRe: custome control events Pin
Robert Rohde4-Dec-04 8:32
Robert Rohde4-Dec-04 8:32 
GeneralRe: custome control events Pin
Anonymous4-Dec-04 9:01
Anonymous4-Dec-04 9:01 
GeneralRe: custome control events Pin
Stanciu Vlad4-Dec-04 9:28
Stanciu Vlad4-Dec-04 9:28 
GeneralRe: custome control events Pin
Stanciu Vlad4-Dec-04 9:30
Stanciu Vlad4-Dec-04 9:30 
QuestionWhat are the good practises to write an complicate application? Pin
ting6683-Dec-04 17:49
ting6683-Dec-04 17:49 
AnswerRe: What are the good practises to write an complicate application? Pin
Daniel Turini3-Dec-04 19:16
Daniel Turini3-Dec-04 19:16 
ting668 wrote:
However, is there any rules to divide the code?
Yes:
1. When something is reused, it goes to a DLL.
2. When something needs to hide classes, data and references to other DLLs, it goes to a DLL. E.g., Data Access Layers - we have a rule where no project but the DAL should use a SqlConnection or an OracleConnection. When classes or data need to be hidden, but public to an assembly, we use the 'internal' keywork and put it on a DLL.
3. When the project is mature (i.e., we're on the optimization phase) and something is slow to load, and will not be used on the application startup, it goes to a DLL.


Yes, even I am blogging now!
AnswerRe: What are the good practises to write an complicate application? Pin
Anonymous3-Dec-04 19:18
Anonymous3-Dec-04 19:18 
GeneralRe: What are the good practises to write an complicate application? Pin
Daniel Turini3-Dec-04 23:02
Daniel Turini3-Dec-04 23:02 
GeneralRe: What are the good practises to write an complicate application? Pin
Robert Rohde4-Dec-04 8:34
Robert Rohde4-Dec-04 8:34 
Generalstring to int Pin
John L. DeVito3-Dec-04 17:29
professionalJohn L. DeVito3-Dec-04 17:29 
GeneralRe: string to int Pin
Charlie Williams3-Dec-04 18:12
Charlie Williams3-Dec-04 18:12 
GeneralRe: string to int Pin
John L. DeVito3-Dec-04 18:18
professionalJohn L. DeVito3-Dec-04 18:18 
Generalhelp... Pin
tom_dx3-Dec-04 14:01
tom_dx3-Dec-04 14:01 
GeneralRe: help... Pin
Daniel Turini3-Dec-04 19:11
Daniel Turini3-Dec-04 19:11 
GeneralRe: help... Pin
Alex Korchemniy3-Dec-04 21:10
Alex Korchemniy3-Dec-04 21:10 
GeneralRe: help... Pin
Robert Rohde4-Dec-04 8:38
Robert Rohde4-Dec-04 8:38 
GeneralRe: help... Pin
Alex Korchemniy3-Dec-04 21:07
Alex Korchemniy3-Dec-04 21:07 
GeneralVery Very Long Complex C# Programs Pin
demasoni.com3-Dec-04 13:34
demasoni.com3-Dec-04 13:34 
GeneralRe: Very Very Long Complex C# Programs Pin
tom_dx3-Dec-04 13:51
tom_dx3-Dec-04 13:51 
GeneralRe: Very Very Long Complex C# Programs Pin
demasoni.com3-Dec-04 18:32
demasoni.com3-Dec-04 18:32 
GeneralRe: Very Very Long Complex C# Programs Pin
Daniel Turini3-Dec-04 19:00
Daniel Turini3-Dec-04 19:00 
GeneralRe: Very Very Long Complex C# Programs Pin
Anonymous3-Dec-04 19:22
Anonymous3-Dec-04 19:22 
GeneralRe: Very Very Long Complex C# Programs Pin
leppie3-Dec-04 22:18
leppie3-Dec-04 22:18 

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.