Click here to Skip to main content
15,893,904 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to wait for a window to appear before sending keystrok using sendkeys? Pin
Mycroft Holmes30-Sep-09 23:28
professionalMycroft Holmes30-Sep-09 23:28 
AnswerRe: How to wait for a window to appear before sending keystrok using sendkeys? Pin
Luc Pattyn30-Sep-09 23:58
sitebuilderLuc Pattyn30-Sep-09 23:58 
GeneralRe: How to wait for a window to appear before sending keystrok using sendkeys? Pin
Paramhans Dubey1-Oct-09 0:23
professionalParamhans Dubey1-Oct-09 0:23 
GeneralRe: How to wait for a window to appear before sending keystrok using sendkeys? Pin
Paramhans Dubey1-Oct-09 0:24
professionalParamhans Dubey1-Oct-09 0:24 
GeneralRe: How to wait for a window to appear before sending keystrok using sendkeys? Pin
Luc Pattyn1-Oct-09 0:48
sitebuilderLuc Pattyn1-Oct-09 0:48 
QuestionIssues with XML Deserializing of List Pin
User 1278230-Sep-09 19:44
User 1278230-Sep-09 19:44 
AnswerRe: Issues with XML Deserializing of List Pin
SeMartens30-Sep-09 22:14
SeMartens30-Sep-09 22:14 
GeneralRe: Issues with XML Deserializing of List Pin
User 127821-Oct-09 6:01
User 127821-Oct-09 6:01 
GeneralRe: Issues with XML Deserializing of List Pin
SeMartens1-Oct-09 21:29
SeMartens1-Oct-09 21:29 
GeneralRe: Issues with XML Deserializing of List Pin
User 127822-Oct-09 10:01
User 127822-Oct-09 10:01 
GeneralRe: Issues with XML Deserializing of List Pin
User 127822-Oct-09 10:54
User 127822-Oct-09 10:54 
QuestionHow to create a powerpoint chart using C# code? Pin
Ahsan Nabi Khan30-Sep-09 19:36
Ahsan Nabi Khan30-Sep-09 19:36 
QuestionIT Help desk Pin
mirianakoi30-Sep-09 17:33
mirianakoi30-Sep-09 17:33 
AnswerRe: IT Help desk Pin
Christian Graus30-Sep-09 17:36
protectorChristian Graus30-Sep-09 17:36 
GeneralRe: IT Help desk Pin
mirianakoi6-Oct-09 17:01
mirianakoi6-Oct-09 17:01 
GeneralRe: IT Help desk Pin
Shamaniac27-Jun-11 19:19
Shamaniac27-Jun-11 19:19 
AnswerRe: IT Help desk Pin
AndieDu30-Sep-09 17:42
AndieDu30-Sep-09 17:42 
GeneralRe: IT Help desk Pin
mirianakoi6-Oct-09 17:03
mirianakoi6-Oct-09 17:03 
AnswerRe: IT Help desk Pin
Blikkies30-Sep-09 19:52
professionalBlikkies30-Sep-09 19:52 
GeneralRe: IT Help desk Pin
Mycroft Holmes30-Sep-09 23:01
professionalMycroft Holmes30-Sep-09 23:01 
GeneralRe: IT Help desk Pin
Blikkies1-Oct-09 4:06
professionalBlikkies1-Oct-09 4:06 
GeneralRe: IT Help desk Pin
Mycroft Holmes1-Oct-09 12:25
professionalMycroft Holmes1-Oct-09 12:25 
GeneralRe: IT Help desk Pin
mirianakoi6-Oct-09 17:05
mirianakoi6-Oct-09 17:05 
QuestionProject_1.exe.config and Project_2.dll.config Pin
AndieDu30-Sep-09 16:44
AndieDu30-Sep-09 16:44 
AnswerRe: Project_1.exe.config and Project_2.dll.config Pin
Calla30-Sep-09 21:01
Calla30-Sep-09 21:01 
I think you need to include part of your DLL config file into the config file of your WinForm project. Try adding the line
<section name="CodistriCore.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
within the sectionGroup tags of the WinForm config so it looks like this: (I won't type the entire tag contents here)
<configSections>
   <sectionGroup name="applicationSettings"... />
      <section name="Codistri.Properties.Settings"... />
      <section name="CodistriCore.Properties.Settings"... />
   </sectionGroup>
</configSections>


Then you have to copy this part of your DLL config file:
<CodistriCore.Properties.Settings>
   <setting name="AttachmentRootFolder" serializeAs="String">
      <value>S:\Clients\Codistri\Attachments</value>
   </setting>
   <setting name="DBConnectionString" serializeAs="String">
      <value>Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Clients\Codistri\CoRE.mdb</value>
   </setting>
</CodistriCore.Properties.Settings>


to your WinForm config file and place it within the applicationSettings tags:
<applicationSettings>
   <Codistri.Properties.Settings>
      <setting name="AttachmentRootFolder" serializeAs="String">
         <value>S:\Clients\Codistri\Attachments</value>
      </setting>
      <setting name="DBConnectionString" serializeAs="String">
         <value>Provider=Microsoft.Jet.OLEDB.4.0;Data Source=S:\Clients\Codistri\CoRE.mdb</value>
      </setting>
   </Codistri.Properties.Settings>

   <CodistriCore.Properties.Settings>
      <setting name="AttachmentRootFolder" serializeAs="String">
         <value>S:\Clients\Codistri\Attachments</value>
      </setting>
      <setting name="DBConnectionString" serializeAs="String">
         <value>Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Clients\Codistri\CoRE.mdb</value>
      </setting>
   </CodistriCore.Properties.Settings>
</applicationSettings>


I haven't done this in a while myself so I hope I got it right. This should get you started anyway. Good Luck!

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.