Click here to Skip to main content
15,890,506 members
Home / Discussions / C#
   

C#

 
AnswerRe: Crystal Report Not Working For Console Application Pin
Eddy Vluggen21-Sep-12 2:38
professionalEddy Vluggen21-Sep-12 2:38 
QuestionNeed HELP !!!!! Pin
mAzeem2220-Sep-12 20:37
mAzeem2220-Sep-12 20:37 
AnswerRe: Need HELP !!!!! Pin
Abhinav S20-Sep-12 20:47
Abhinav S20-Sep-12 20:47 
GeneralRe: Need HELP !!!!! Pin
mAzeem2220-Sep-12 20:53
mAzeem2220-Sep-12 20:53 
GeneralRe: Need HELP !!!!! Pin
Abhinav S20-Sep-12 20:56
Abhinav S20-Sep-12 20:56 
GeneralRe: Need HELP !!!!! Pin
mAzeem2220-Sep-12 21:03
mAzeem2220-Sep-12 21:03 
AnswerRe: Need HELP !!!!! Pin
Ingo20-Sep-12 21:10
Ingo20-Sep-12 21:10 
AnswerRe: Need HELP !!!!! Pin
Richard MacCutchan20-Sep-12 21:02
mveRichard MacCutchan20-Sep-12 21:02 
AnswerRe: Need HELP !!!!! PinPopular
V.20-Sep-12 21:32
professionalV.20-Sep-12 21:32 
AnswerRe: Need HELP !!!!! Pin
Pete O'Hanlon20-Sep-12 22:06
mvePete O'Hanlon20-Sep-12 22:06 
QuestionShould I do a VB project? Pin
Swinkaran20-Sep-12 19:08
professionalSwinkaran20-Sep-12 19:08 
AnswerRe: Should I do a VB project? Pin
Mycroft Holmes20-Sep-12 20:05
professionalMycroft Holmes20-Sep-12 20:05 
AnswerRe: Should I do a VB project? Pin
Abhinav S20-Sep-12 20:48
Abhinav S20-Sep-12 20:48 
GeneralRe: Should I do a VB project? Pin
BillWoodruff25-Sep-12 23:02
professionalBillWoodruff25-Sep-12 23:02 
AnswerRe: Should I do a VB project? Pin
Swinkaran20-Sep-12 21:02
professionalSwinkaran20-Sep-12 21:02 
GeneralRe: Should I do a VB project? Pin
BillWoodruff25-Sep-12 23:02
professionalBillWoodruff25-Sep-12 23:02 
AnswerRe: Should I do a VB project? Pin
Amarnath S20-Sep-12 21:43
professionalAmarnath S20-Sep-12 21:43 
GeneralRe: Should I do a VB project? Pin
BillWoodruff25-Sep-12 23:13
professionalBillWoodruff25-Sep-12 23:13 
GeneralRe: Should I do a VB project? Pin
Amarnath S26-Sep-12 6:08
professionalAmarnath S26-Sep-12 6:08 
QuestionShould I bring in a project or a .dll in my VS solution? Pin
chuckdawit20-Sep-12 12:18
chuckdawit20-Sep-12 12:18 
AnswerRe: Should I bring in a project or a .dll in my VS solution? Pin
Expert Coming20-Sep-12 14:05
Expert Coming20-Sep-12 14:05 
As with many things, it depends...

We do the same thing a lot where I work. Sometimes we reference a DLL, sometimes we share the project, sometimes we copy the project and reverse integrate the changes.

Referencing a DLL is the safest answer. You always know what version you are running against and upgrade it when you decide to (Test can run full test passes and make sure nothing broke by doing so).

Sharing a project is very dangerous and is rarely used. If you change an interface in project B, project A probably will no longer compile.

Making a copy of the project and reverse integrating changes is one of the best solutions. It allows bugs to be fixed from both sides of the project and each side gets to decide whether or not to integrate those fixes. This even has the added benefit of allowing you to heavily modify some things (Interfaces, Classes ect) that would otherwise break the other project while still being able to take some bug fix type integration back.

I'm getting tired so hopefully that makes sense.
The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo

GeneralRe: Should I bring in a project or a .dll in my VS solution? Pin
chuckdawit20-Sep-12 14:15
chuckdawit20-Sep-12 14:15 
GeneralRe: Should I bring in a project or a .dll in my VS solution? Pin
Expert Coming20-Sep-12 14:25
Expert Coming20-Sep-12 14:25 
GeneralRe: Should I bring in a project or a .dll in my VS solution? Pin
chuckdawit20-Sep-12 14:30
chuckdawit20-Sep-12 14:30 
GeneralRe: Should I bring in a project or a .dll in my VS solution? Pin
Expert Coming20-Sep-12 14:36
Expert Coming20-Sep-12 14:36 

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.