Click here to Skip to main content
15,879,184 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to open UNC path to C$ without credentials Pin
PIEBALDconsult7-Sep-12 4:51
mvePIEBALDconsult7-Sep-12 4:51 
GeneralRe: How to open UNC path to C$ without credentials Pin
robwm17-Sep-12 8:26
robwm17-Sep-12 8:26 
GeneralRe: How to open UNC path to C$ without credentials Pin
robwm112-Sep-12 9:32
robwm112-Sep-12 9:32 
GeneralRe: How to open UNC path to C$ without credentials Pin
PIEBALDconsult12-Sep-12 15:25
mvePIEBALDconsult12-Sep-12 15:25 
QuestionC# config file Pin
classy_dog6-Sep-12 8:26
classy_dog6-Sep-12 8:26 
AnswerRe: C# config file Pin
Expert Coming6-Sep-12 8:39
Expert Coming6-Sep-12 8:39 
AnswerRe: C# config file Pin
jschell6-Sep-12 8:47
jschell6-Sep-12 8:47 
AnswerRe: C# config file Pin
Deepak_Sharma_7-Sep-12 4:06
Deepak_Sharma_7-Sep-12 4:06 
You can store paths in app.config file that you can change after installation of the application:
XML
<configuration>
     <appSettings>
          <add key="path1" value=""/>
          <add key="path2" value=""/>
     </appSettings>
</configuration>


After installation of the application app.config is renamed to <projectname>.exe.config. So you need to change your settings in this file.

You can store paths in app.config file that you can change after installation of the application:

<configuration>
<appsettings>
<add key="path1" value="">
<add key="path2" value="">



After installation of the application app.config is renamed to <projectname>.exe.config. So you need to change your settings in this file.
QuestionC# linq Pin
classy_dog6-Sep-12 6:45
classy_dog6-Sep-12 6:45 
AnswerRe: C# linq Pin
Pete O'Hanlon6-Sep-12 7:57
mvePete O'Hanlon6-Sep-12 7:57 
QuestionImprove Project Pin
WebMaster6-Sep-12 6:30
WebMaster6-Sep-12 6:30 
AnswerRe: Improve Project Pin
PIEBALDconsult6-Sep-12 6:56
mvePIEBALDconsult6-Sep-12 6:56 
GeneralRe: Improve Project Pin
WebMaster6-Sep-12 7:06
WebMaster6-Sep-12 7:06 
GeneralRe: Improve Project Pin
PIEBALDconsult6-Sep-12 7:17
mvePIEBALDconsult6-Sep-12 7:17 
GeneralRe: Improve Project Pin
WebMaster6-Sep-12 7:27
WebMaster6-Sep-12 7:27 
AnswerRe: Improve Project Pin
PIEBALDconsult6-Sep-12 7:23
mvePIEBALDconsult6-Sep-12 7:23 
GeneralRe: Improve Project Pin
WebMaster6-Sep-12 7:29
WebMaster6-Sep-12 7:29 
AnswerRe: Improve Project Pin
Eddy Vluggen6-Sep-12 7:49
professionalEddy Vluggen6-Sep-12 7:49 
AnswerRe: Improve Project Pin
Gerry Schmitz6-Sep-12 9:08
mveGerry Schmitz6-Sep-12 9:08 
GeneralRe: Improve Project Pin
WebMaster6-Sep-12 9:11
WebMaster6-Sep-12 9:11 
AnswerRe: Improve Project Pin
RobCroll6-Sep-12 15:36
RobCroll6-Sep-12 15:36 
Questionprecision of digits durring conversion Pin
Fred 346-Sep-12 5:01
Fred 346-Sep-12 5:01 
AnswerRe: precision of digits durring conversion Pin
Pete O'Hanlon6-Sep-12 5:09
mvePete O'Hanlon6-Sep-12 5:09 
AnswerRe: precision of digits durring conversion Pin
Dave Kreskowiak6-Sep-12 5:34
mveDave Kreskowiak6-Sep-12 5:34 
AnswerRe: precision of digits durring conversion Pin
PIEBALDconsult6-Sep-12 5:39
mvePIEBALDconsult6-Sep-12 5:39 

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.