Click here to Skip to main content
15,886,835 members
Home / Discussions / C#
   

C#

 
GeneralRe: Calling a C++ function from c# Pin
Entelecheia26-Aug-03 7:15
Entelecheia26-Aug-03 7:15 
Generaljust expose your C code as managed C++ lib, then Add Reference Pin
devvvy26-Aug-03 7:33
devvvy26-Aug-03 7:33 
GeneralRe: just expose your C code as managed C++ lib, then Add Reference Pin
Nemanja Trifunovic26-Aug-03 8:11
Nemanja Trifunovic26-Aug-03 8:11 
GeneralRe: Calling a C++ function from c# Pin
Nemanja Trifunovic26-Aug-03 11:50
Nemanja Trifunovic26-Aug-03 11:50 
GeneralRe: Calling a C++ function from c# Pin
Christian Graus26-Aug-03 16:13
protectorChristian Graus26-Aug-03 16:13 
GeneralRe: Calling a C++ function from c# Pin
Bo Hunter26-Aug-03 13:31
Bo Hunter26-Aug-03 13:31 
GeneralC# configurationfile Pin
User 53137826-Aug-03 6:30
User 53137826-Aug-03 6:30 
GeneralRe: C# configurationfile Pin
scadaguy26-Aug-03 8:32
scadaguy26-Aug-03 8:32 
Your configuration file should be named application.exe.config. Replace application with the actual executable name. If you add the configuration file to the project then name it app.config and VS.NET will automatically rename it correctly when it builds the project. The file should look like...
<configuration>
   <appSettings>
      <add key="ConnectionString" value="the actual string goes here" />
   </appSettings>
</configuration>

And in code you can access it with...
ConfigurationSettings.AppSettings["ConnectionString"]

GeneralRe: C# configurationfile Pin
User 53137826-Aug-03 8:43
User 53137826-Aug-03 8:43 
GeneralHiding close buttons, min and max in MDI CHild Pin
Ista26-Aug-03 4:41
Ista26-Aug-03 4:41 
GeneralRe: Hiding close buttons, min and max in MDI CHild Pin
Donald_a26-Aug-03 5:52
Donald_a26-Aug-03 5:52 
GeneralRe: Hiding close buttons, min and max in MDI CHild Pin
Ista26-Aug-03 6:44
Ista26-Aug-03 6:44 
GeneralThreadPool misbehaving Pin
TheFLC26-Aug-03 4:12
TheFLC26-Aug-03 4:12 
GeneralRe: ThreadPool misbehaving Pin
MeisterBiber26-Aug-03 6:45
MeisterBiber26-Aug-03 6:45 
GeneralRe: ThreadPool misbehaving Pin
Daniel Turini26-Aug-03 7:07
Daniel Turini26-Aug-03 7:07 
GeneralRe: ThreadPool misbehaving Pin
TheFLC26-Aug-03 7:13
TheFLC26-Aug-03 7:13 
QuestionHTML in C# ?? Pin
yyf26-Aug-03 3:13
yyf26-Aug-03 3:13 
GeneralEmail attachment on Outlook express Pin
Velichko Sarev26-Aug-03 3:02
Velichko Sarev26-Aug-03 3:02 
GeneralSilly bug in Left-to-Right Menu Pin
Hovik Melkomian26-Aug-03 2:29
Hovik Melkomian26-Aug-03 2:29 
GeneralHolding ArrayLists in an ArrayList Pin
amadeonMk25-Aug-03 22:45
amadeonMk25-Aug-03 22:45 
GeneralRe: Holding ArrayLists in an ArrayList Pin
A.Wegierski25-Aug-03 22:55
A.Wegierski25-Aug-03 22:55 
GeneralRe: Holding ArrayLists in an ArrayList Pin
amadeonMk26-Aug-03 0:43
amadeonMk26-Aug-03 0:43 
GeneralRe: Holding ArrayLists in an ArrayList Pin
Julian Bucknall [MSFT]26-Aug-03 5:50
Julian Bucknall [MSFT]26-Aug-03 5:50 
GeneralRe: Holding ArrayLists in an ArrayList Pin
A.Wegierski26-Aug-03 20:12
A.Wegierski26-Aug-03 20:12 
Question.NET security sample anyone? Pin
devvvy25-Aug-03 21:36
devvvy25-Aug-03 21: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.