Click here to Skip to main content
15,918,742 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionHow can I Read Excel-documents? Pin
MaWeRic5-Oct-07 15:18
MaWeRic5-Oct-07 15:18 
AnswerRe: How can I Read Excel-documents? Pin
Christian Graus5-Oct-07 16:17
protectorChristian Graus5-Oct-07 16:17 
AnswerRe: How can I Read Excel-documents? Pin
Monte at Oaklawn8-Oct-07 4:03
Monte at Oaklawn8-Oct-07 4:03 
QuestionSSL Signature Verification Pin
#realJSOP5-Oct-07 11:37
professional#realJSOP5-Oct-07 11:37 
QuestionAny issues????? Pin
Charith Jayasundara4-Oct-07 20:07
Charith Jayasundara4-Oct-07 20:07 
AnswerRe: Any issues????? Pin
Urs Enzler6-Oct-07 3:50
Urs Enzler6-Oct-07 3:50 
QuestionConditional Compiler Directives Pin
Vasudevan Deepak Kumar4-Oct-07 0:42
Vasudevan Deepak Kumar4-Oct-07 0:42 
AnswerRe: Conditional Compiler Directives Pin
Scott Dorman4-Oct-07 1:15
professionalScott Dorman4-Oct-07 1:15 
Unfortunately, there are no built in conditional symbols for this. You will need to define your own in the project properties, under the Build tab. Add the comditional symbol you want to the "Conditional compilation symbols" text box (multiple symbols must be space separated).

Once you do that, you can wrap the code in #if [symbol] blocks. It would look like this (assuming you define a symbol named NET_20):
C#
#if NET_20
// .NET 2.0 specific code
#else
// .NET 1.1 specific code
#endif



Scott.

—In just two days, tomorrow will be yesterday.

[Forum Guidelines] [Articles] [Blog]

GeneralRe: Conditional Compiler Directives Pin
Vasudevan Deepak Kumar4-Oct-07 6:05
Vasudevan Deepak Kumar4-Oct-07 6:05 
GeneralRe: Conditional Compiler Directives Pin
Scott Dorman4-Oct-07 11:33
professionalScott Dorman4-Oct-07 11:33 
GeneralRe: Conditional Compiler Directives Pin
Luc Pattyn4-Oct-07 12:23
sitebuilderLuc Pattyn4-Oct-07 12:23 
GeneralRe: Conditional Compiler Directives Pin
Scott Dorman5-Oct-07 3:42
professionalScott Dorman5-Oct-07 3:42 
AnswerRe: Conditional Compiler Directives Pin
PIEBALDconsult4-Oct-07 4:24
mvePIEBALDconsult4-Oct-07 4:24 
GeneralRe: Conditional Compiler Directives Pin
Vasudevan Deepak Kumar4-Oct-07 6:06
Vasudevan Deepak Kumar4-Oct-07 6:06 
QuestionWCF not passing its Data Contract :( Pin
twista3-Oct-07 16:29
twista3-Oct-07 16:29 
QuestionTabPage (rant) Pin
PIEBALDconsult3-Oct-07 11:01
mvePIEBALDconsult3-Oct-07 11:01 
AnswerRe: TabPage (rant) Pin
Scott Dorman3-Oct-07 12:16
professionalScott Dorman3-Oct-07 12:16 
GeneralRe: TabPage (rant) Pin
PIEBALDconsult3-Oct-07 15:45
mvePIEBALDconsult3-Oct-07 15:45 
GeneralRe: TabPage (rant) Pin
Scott Dorman3-Oct-07 16:49
professionalScott Dorman3-Oct-07 16:49 
GeneralRe: TabPage (rant) Pin
PIEBALDconsult3-Oct-07 17:54
mvePIEBALDconsult3-Oct-07 17:54 
GeneralRe: TabPage (rant) Pin
Scott Dorman4-Oct-07 1:17
professionalScott Dorman4-Oct-07 1:17 
GeneralRe: TabPage (rant) Pin
PIEBALDconsult4-Oct-07 4:27
mvePIEBALDconsult4-Oct-07 4:27 
GeneralRe: TabPage (rant) Pin
PIEBALDconsult4-Oct-07 5:37
mvePIEBALDconsult4-Oct-07 5:37 
GeneralRe: TabPage (rant) Pin
PIEBALDconsult4-Oct-07 6:53
mvePIEBALDconsult4-Oct-07 6:53 
GeneralRe: TabPage (rant) Pin
Scott Dorman4-Oct-07 11:33
professionalScott Dorman4-Oct-07 11:33 

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.