How to read a user setting in another project?
Thu, 17 Jul 2008 15:38:02 -0700 (PDT)
There are two projects in my solution, one is utility dll and the
other is the main executable. I have user settings in the exe project.
However I want to read the settings in the utility dll so that the
utility dll can be reused in other projects but generate project-
specified results. The scenario would be
...
|
dllimport stdout gets eaten
Thu, 17 Jul 2008 15:37:01 -0700 (PDT)
I changed the stdout in my C# app using Console.SetOut. It works fine
for all my Console.Out.Write calls and with log4net. However, I don't
see any output from native dlls that write to stdout. What am I doing
wrong? ...
|
how does C# compare to C++ and VB
Thu, 17 Jul 2008 17:34:15 -0500
If I'm reasonably familiar with C++ and am an expert at Visual Basic, what
principles should I apply in order to understand C# so that I could more
quickly learn the language?
Daniel
...
|
learn C++ or C#
Thu, 17 Jul 2008 17:31:36 -0500
If I haven't made substantial investment in either C++ or C#, which language
would the experts recommend I become well acquainted with?
Daniel
...
|
CSV Files
Thu, 17 Jul 2008 14:50:01 -0700
I've got a project that I'm sending output to a CSV file.
Some of the fields have commas in them and some of the fields have spaces.
When I attempt to open the file with a double click or Process.Start, the
default application opens it: MS Excel. This is fine.
However, every time Excel opens one of these ...
|
Number of digits in exponent with "g" format?
Thu, 17 Jul 2008 13:42:11 -0700
Hello,
By default, the "g" format specifier seems to use 2 digits in the exponent
if it decides to use the scientific format. I.e., Double.ToString("g"). How
do I control the number of exponent digits used without affecting the
operation of "g" in any other way? I need it to use 3 digits instead.
Than ...
|
XmlTextWriter and WriteElementString
Thu, 17 Jul 2008 15:40:29 -0500
I'm creating XML using the above. My problem is that if I have a string that
is passed to WriteElementString such as
WriteElementString("description", @"<![CDATA[<a
href=""http://www.google.com"">Here is the link</a>]]>");
then, it outputs the XML as...
<description><![CDATA[<a href="http://www.google.c ...
|
|
|
XML documentation to LaTeX?
Thu, 17 Jul 2008 16:40:31 -0400
Has anyone hacked a converter to turn Visual Studio XML documentation into
LaTeX?
...
|
what no TriState Checkboxes in TreeNodes ?
Thu, 17 Jul 2008 20:30:45 +0100
Hi,
I have a simple treeview, I want to put tri state checkboxes.
I thought this would be standard,
TreeViewNode has checkboxes,
and checkboxes have tri state,
but the TreeViewNode checkbox has no tri state capability.
I googled for this and suepried to find this is lacking
however they were mostly quite ...
|
Is there a limit on # of radio buttons
Thu, 17 Jul 2008 12:32:10 -0700
I have 8 radio buttons on my Windows form but I can only select up to the
first 4. If I click on any button beyond the 4th one and then come back into
the program again the 4th button is always checked instead of the 5th or 6th
etc. I followed the logic thru the debugger and can see where the 5th button
is ...
|