User CrashCodes - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T05:27:49Zhttp://stackoverflow.com/feeds/user/16260http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/93323/what-method-do-you-use-to-let-users-login-to-your-site-openid-google-own-oth1What method do you use to let users login to your site? (OpenID, Google, own, other?)CrashCodes2008-09-18T14:57:28Z2009-11-24T14:40:29Z
<p>And... which is easiest to implement?</p>
http://stackoverflow.com/questions/87551/how-do-you-respond-when-an-it-manager-asks-you-what-is-firefox0How do you respond when an IT manager asks you, "What is Firefox?"CrashCodes2008-09-17T20:52:16Z2009-08-17T03:08:42Z
<p>Even though I've jumped on the Chrome bandwagon, I still wear my blue Firefox golf shirt to work occasionally. Sometimes people ask me about it in the elevator. Sometimes these people are managers in our IT department. I've even had the same manager ask me more than once (given about six months between). </p>
<p>I want to know not just how would you respond to the manager, but how do you respond in general (kick the dog, curse, leave the company, indifference). </p>
http://stackoverflow.com/questions/854666/how-to-write-to-the-console-input-and-get-the-console-handle0How to write to the Console input and get the Console Handle?CrashCodes2009-05-12T20:17:28Z2009-05-13T14:56:10Z
<p>I want the user to be able to have some data already in the input stream that they can change. I looked into the below function, but I'm not sure how to get the Console handle from the Console class. </p>
<pre><code> [DllImport("kernel32", CharSet = CharSet.Auto, SetLastError = true)]
public static extern bool WriteConsoleInput(
IntPtr hConsoleInput,
[Out] INPUT_RECORD[] lpBuffer,
int nLength,
out int lpNumberOfEventsWritten);
public static void WriteConsoleInput()
{
UInt32 STD_INPUT_HANDLE = 0xfffffff6;
IntPtr hConsoleInput = GetStdHandle(STD_INPUT_HANDLE);
INPUT_RECORD[] lpBuffer = new INPUT_RECORD[2];
// I tried using uChar (short) as well.
lpBuffer[0].Event.KeyEvent.wVirtualKeyCode = 0x41; // A
lpBuffer[1].Event.KeyEvent.wVirtualKeyCode = 0x5A; // Z
int nLength = lpBuffer.Length;
int lpNumberOfEventsWritten;
if (!WriteConsoleInput(
hConsoleInput,
lpBuffer,
nLength,
out lpNumberOfEventsWritten))
{
// Don't get here.
Console.WriteLine("Error: {0}", GetLastError());
}
} // A breakpoint here shows that lpNumberOfEventsWritten is 2
...
...
...
Console.Write("Input something: ");
WriteConsoleInput();
String input = Console.ReadLine();
Console.WriteLine("input = {0}", input);
</code></pre>
<p>I don't see anything on the screen behind the "Input something: ". If I just hit enter, input is an empty string.</p>
http://stackoverflow.com/questions/103956/what-is-the-best-emulator-for-mix-and-or-mmix2What is the best emulator for MIX and/or MMIX?CrashCodes2008-09-19T17:37:23Z2009-04-21T07:00:28Z
<p>MIX is the hypothetical computer outlined by Donald Knuth in the Art of Computer Programming.</p>
<p>I guess when I say best, I mean most suitable for working with the algorithms and problems in the Art of Computer Programming.</p>
http://stackoverflow.com/questions/745425/in-c-how-to-declare-dword-as-an-uint320In C#, How to declare DWORD as an uint32?CrashCodes2009-04-13T21:10:55Z2009-04-13T21:13:48Z
<p>I guess the question is really about how to define a type as an existing primitive data type. Below clearly doesn't work, but I think you'll get the idea.</p>
<pre><code>Type DWORD = typeof(UInt32);
private DWORD func1(int x)
{
return 123;
}
</code></pre>
http://stackoverflow.com/questions/645518/how-can-i-hide-a-panel-that-is-on-a-splitcontainer1How can I hide a panel that is on a SplitContainer?CrashCodes2009-03-14T06:23:47Z2009-03-14T07:20:41Z
<p>I want to hide panel2 on a split container and have panel1 utilize the space. I was hoping setting Panel2Collapsed would do the trick, but no luck. Ideas?</p>
http://stackoverflow.com/questions/643201/how-to-safely-check-net-framework-version-using-a-net-framework-version-that-ma2How to safely check .net framework version using a .net framework version that may not exist?CrashCodes2009-03-13T15:19:59Z2009-03-13T16:07:23Z
<p>I have an app built with .net 3.5. If a user runs it without having .net 3.5 installed I want to have control of what they see perhaps provide a message that they can understand (with a link to .net 3.5) versus unhandled exception stack traces. But if they don't actually have .net 3.5 how can my app control anything?</p>
http://stackoverflow.com/questions/616719/c-how-do-events-differ-from-delegates1C#, How do events differ from delegates? [closed]CrashCodes2009-03-05T21:34:03Z2009-03-05T21:37:58Z
<p>What does the event keyword do really?</p>
<p><a href="http://msdn.microsoft.com/en-us/library/8627sbea.aspx" rel="nofollow">msdn</a> says it is used to declare an event in a publisher class</p>
<pre><code>// Declare the event.
public event SampleEventHandler SampleEvent;
</code></pre>
<p>Would that mean the SampleEvent is any less of a SampleEventHandler if I don't put event in front of it? </p>
<p>Besides the super awesome -= and += operators what do I get out of events/eventhandlers that I wouldn't get from List<MyDelegate>? When should I use one over the other?</p>
http://stackoverflow.com/questions/596631/what-windows-api-to-look-into-for-building-a-scheduling-application1What Windows API to look into for building a scheduling application?CrashCodes2009-02-27T20:48:43Z2009-02-28T11:07:29Z
<p>Why not use the Windows scheduler?
I have several applications that have to run at certain times according to business rules not the typical every weekday at 1pm. </p>
<p>I also need a way for the applications to provide feedback of their progress so that I can have rules that notify me when the applications are running slow or aren't even running anymore.</p>
<p>What Windows API should I be looking into? (like, a time version of the FileWatcher apis)</p>
<p>What's the best way to have the application notify the scheduler of its progress (files, sockets, windows messages, ???)?</p>
http://stackoverflow.com/questions/570931/oop-where-to-put-the-calls-to-the-data-access-layer/571034#5710341Answer by CrashCodes for OOP - Where to put the calls to the Data Access Layer?CrashCodes2009-02-20T20:03:25Z2009-02-20T20:10:03Z<p>The reason why'd you want to pull the CRUD operations into a separate layer is in case you ever want to change database systems. Well, that's why I did it. I wouldn't recommend doing this just to be good OOD. But here ya go...</p>
<p>Several sets of classes/interfaces</p>
<p>BusinessObject - Represents business type entities such as a Customer, has DataManager as a property.</p>
<p>DataManager - Maybe you can come up with a better name, but this thing provides Load() and Save() functions for the BusinessObjects</p>
<p>SearchList - Returns lists of things, your sql querries go here. Also this should probably behave like a RecordSet with Next(), Eof(), and CurrentRecord type members</p>
<p>Constructor/Factory - See FactoryPattern. You've de-coupled your database operations from your business objects this thing re-couples them in a necessary way. Assigns an appropriate datamanager implementation to BusinessObject</p>
<p>Come up with whatever actual names you want, but lets talk about Customer again. Suppose you have an Oracle database. You might end up with these classes:</p>
<p>boCustomer that inherits from BusinessObject</p>
<p>oracleDMCustomer that inherits or implements DataManager</p>
<p>searchlistCustomer that inherits from searchlist that has exposed either through abstract methods or as an interface something like:
SearchAll() - which should return all customer
SearchByZip(String zip) which should return all customers with the given zipcode</p>
<p>oracleSearchlistCustomer - implements searchlistCustomer, would actually implement the SearchAll() and SearchByZip()</p>
<p>boFactory - static class that has a method that looks something like CreateObject(Type type)</p>
<p>searchlistFactory - static class that has a method that looks something like CreateSearchList(Type type); </p>
<p>I'll let you fill in some of the blanks, but I think the important stuff is there. Others may have different ideas that require less abstraction. I'd mock up several strategies before going with one.</p>
http://stackoverflow.com/questions/360789/in-c-wait-on-the-mainthread-while-continuing-to-process-ui-updates-net-2-0-c/570252#5702520Answer by CrashCodes for In C#, wait on the mainthread while continuing to process UI updates? (.NET 2.0 CF)CrashCodes2009-02-20T16:31:07Z2009-02-20T16:31:07Z<p>I went with something I haven't seen posted yet which is to use MessageQueues.</p>
<ul>
<li>The MainThread blocks while waiting for the next message on a queue. </li>
<li>The background thread posts different types of messages to the MessageQueue.</li>
<li>Some of the message types signal the MainThread to update UI elements. </li>
<li>Of course, there is a message to tell the MainThread to stop blocking and waiting for messages.</li>
</ul>
<p>Seems over the top considering the windows message loop already exists somewhere, but it works.</p>
http://stackoverflow.com/questions/360789/in-c-wait-on-the-mainthread-while-continuing-to-process-ui-updates-net-2-0-c1In C#, wait on the mainthread while continuing to process UI updates? (.NET 2.0 CF)CrashCodes2008-12-11T20:37:07Z2009-02-20T16:31:07Z
<p>I want to otherwise block code execution on the main thread while still allowing UI changes to be displayed.</p>
<p>I tried to come up with a simplified example version of what I'm trying to do; and this is the best I could come up with. Obviously it doesn't demonstrate the behavior I'm wanting or I wouldn't be posting the question. I just hope it gives some code context to back my poor explanation of the problem I'm hoping to solve.</p>
<p>Within a button click handler on a form I have this:</p>
<pre><code> private void button2_Click(object sender, EventArgs e)
{
AutoResetEvent autoResetEvent = new AutoResetEvent(false);
new Thread(delegate()
{
// do something that takes a while.
Thread.Sleep(1000);
// Update UI w/BeginInvoke
this.BeginInvoke(new ThreadStart(
delegate() {
this.Text = "Working... 1";
this.Refresh();
Thread.Sleep(1000); // gimme a chance to see the new text
}));
// do something else that takes a while.
Thread.Sleep(1000);
// Update UI w/Invoke
this.Invoke(new ThreadStart(
delegate() {
this.Text = "Working... 2";
this.Refresh();
Thread.Sleep(1000); // gimme a chance to see the new text
}));
// do something else that takes a while.
Thread.Sleep(1000);
autoResetEvent.Set();
}).Start();
// I want the UI to update during this 4 seconds, even though I'm
// blocking the mainthread
if (autoResetEvent.WaitOne(4000, false))
{
this.Text = "Event Signalled";
}
else
{
this.Text = "Event Wait Timeout";
}
Thread.Sleep(1000); // gimme a chance to see the new text
this.Refresh();
}
</code></pre>
<p>If I didn't set a timout on the WaitOne() the app would deadlock on the Invoke() call.</p>
<p><hr /></p>
<p>As to why I'd want to do this, I've been tasked with moving one subsystem of an app to do work in a background thread, but still have it block user's workflow (the main thread) only sometimes and for certain types of work related to that subsystem only.</p>
http://stackoverflow.com/questions/554907/firing-an-event-over-a-network/554925#5549250Answer by CrashCodes for Firing an event over a networkCrashCodes2009-02-16T22:56:35Z2009-02-16T22:56:35Z<p>Have clients register themselves with a central app. Whenever the client updates the record it can notify the central app which then broadcast it to the registered clients. </p>
<p>Decide for yourself on transport mechanism, but you may want to consider sockets.</p>
http://stackoverflow.com/questions/550323/whats-the-name-of-the-control-that-has-buttons-for-auto-hidden-windows-like-the0What's the name of the control that has buttons for auto-hidden windows like the one used in Visual Studio 2005/2008? (.Net)CrashCodes2009-02-15T04:31:58Z2009-02-15T04:47:43Z
<p>In Visual Studio when you click the Auto-hide thumbtack looking icon the window will collapse into a band that has buttons for each hidden window for the docking area.</p>
<p>I've seen this in other apps so I assume its a control that I haven't found or figured out how to use yet.</p>
http://stackoverflow.com/questions/502517/selling-software-without-having-to-roll-out-your-own-e-commerce-web-site/518523#5185231Answer by CrashCodes for Selling software without having to roll out your own e-commerce web siteCrashCodes2009-02-05T23:48:05Z2009-02-05T23:48:05Z<p>I don't have any first hand experience with this, but you may want to look into <a href="http://fairsoftware.net" rel="nofollow">fairsoftware.net</a></p>
http://stackoverflow.com/questions/390051/in-c-how-can-i-serialize-system-exception-net-cf-2-03In C#, how can I serialize System.Exception? (.Net CF 2.0)CrashCodes2008-12-23T20:51:31Z2009-01-19T21:06:46Z
<p>I want to write an Exception to an MS Message Queue. When I attempt it I get an exception. So I tried simplifying it by using the XmlSerializer which still raises an exception, but it gave me a bit more info:</p>
<blockquote>
<p>{"There was an error reflecting type
'System.Exception'."}</p>
</blockquote>
<p>with InnerException: </p>
<blockquote>
<p>{"Cannot serialize member
System.Exception.Data of type
System.Collections.IDictionary,
because it implements IDictionary."}</p>
</blockquote>
<p>Sample Code:</p>
<pre><code> Exception e = new Exception("Hello, world!");
MemoryStream stream = new MemoryStream();
XmlSerializer x = new XmlSerializer(e.GetType()); // Exception raised on this line
x.Serialize(stream, e);
stream.Close();
</code></pre>
<p>EDIT:
I tried to keep this a simple as possible, but I may have overdone it. I want the whole bit, stack trace, message, custom exception type, and custom exception properties. I may even want to throw the exception again.</p>
http://stackoverflow.com/questions/407202/what-was-the-scary-code-comment-about-dragons1What was the scary code comment about dragons?CrashCodes2009-01-02T15:51:27Z2009-01-02T15:56:51Z
<p>The phrase was used as a warning that the code was pulling some serious stunts.
My google search for this is pulling up nadda; but I remember someone doing a search of google source for the phrase quite a while back.</p>
<p>in lies dragons?</p>
<p>dragons sleep here... </p>
<p>Bah... </p>
http://stackoverflow.com/questions/400900/in-c-how-can-i-create-an-instance-of-an-arbitrary-array-type-at-runtime-net0In C#, how can I create an instance of an arbitrary Array type at runtime? (.Net 2.0 CF)CrashCodes2008-12-30T17:20:34Z2008-12-30T17:24:17Z
<p>I'm trying to deserialize an array of an type unknown at compile time. At runtime I've discovered the type, but I don't know how to create an instance.</p>
<p>Something like:</p>
<pre><code>Object o = Activator.CreateInstance(type);
</code></pre>
<p>which doesn't work because there is no parameterless constructor, Array doesn't seem to have any constructor.</p>
http://stackoverflow.com/questions/390051/in-c-how-can-i-serialize-system-exception-net-cf-2-0/390213#3902131Answer by CrashCodes for In C#, how can I serialize System.Exception? (.Net CF 2.0)CrashCodes2008-12-23T22:11:43Z2008-12-29T15:14:59Z<p>I was looking at Jason Jackson's answer, but it didn't make sense to me that I'm having problems with this even though System.Exception implements ISerializable. So I bypass the XmlSerializer by wrapping the exception in a class that uses a BinaryFormatter instead. When the XmlSerialization of the MS Message Queuing objects kicks in all it will see is a class with a public byte array.</p>
<p>Here's what I came up with:</p>
<pre><code> public class WrappedException
{
public byte[] Data;
public WrappedException()
{
}
public WrappedException(Exception e)
{
SetException(e);
}
public Exception GetException()
{
Exception result;
BinaryFormatter bf = new BinaryFormatter();
MemoryStream stream = new MemoryStream(Data);
result = (Exception)bf.Deserialize(stream);
stream.Close();
return result;
}
public void SetException(Exception e)
{
MemoryStream stream = new MemoryStream();
BinaryFormatter bf = new BinaryFormatter();
bf.Serialize(stream, e);
Data = stream.ToArray();
stream.Close();
}
}
</code></pre>
<p>The first test worked perfectly, but I was still concerned about custom exceptions. So I tossed together my own custom exception. Then I just dropped a button on a blank form. Here's the code:</p>
<pre><code> [Serializable]
public class MyException : Exception, ISerializable
{
public int ErrorCode = 10;
public MyException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
ErrorCode = info.GetInt32("ErrorCode");
}
public MyException(string message)
: base(message)
{
}
#region ISerializable Members
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
base.GetObjectData(info, context);
info.AddValue("ErrorCode", ErrorCode);
}
#endregion
}
private void button1_Click(object sender, EventArgs e)
{
MyException ex = new MyException("Hello, world!");
ex.ErrorCode = 20;
WrappedException reply = new WrappedException(ex);
XmlSerializer x = new XmlSerializer(reply.GetType());
MemoryStream stream = new MemoryStream();
x.Serialize(stream, reply);
stream.Position = 0;
WrappedException reply2 = (WrappedException)x.Deserialize(stream);
MyException ex2 = (MyException)reply2.GetException();
stream.Close();
Text = ex2.ErrorCode.ToString(); // form shows 20
// throw ex2;
}
</code></pre>
<p>Although it seemed like all of other exception types that I looked up are marked with the SerializableAttribute, I'm going to have to be careful about custom exceptions that are not marked with the SerializableAttribute. </p>
<p>EDIT: Getting ahead of myself. I didn't realize that BinaryFormatter is not implemented on CF. </p>
<p>EDIT: Above code snippets were in a desktop project. In the CF version, the WrappedException will basically look the same I <strong><em>just</em></strong> need to implement my own BinaryFormater, but I'm very open to suggestions on that one.</p>
http://stackoverflow.com/questions/392122/in-c-how-can-i-tell-if-a-property-is-static-net-cf-2-01In C#, how can I tell if a property is static? (.Net CF 2.0)CrashCodes2008-12-24T19:38:29Z2008-12-24T19:53:27Z
<p>FieldInfo has an IsStatic member, but PropertyInfo doesn't. I assume I'm just overlooking what I need. </p>
<pre><code>Type type = someObject.GetType();
foreach (PropertyInfo pi in type.GetProperties())
{
// umm... Not sure how to tell if this property is static
}
</code></pre>
http://stackoverflow.com/questions/359732/why-is-it-considered-a-bad-practice-to-omit-curly-braces/361327#36132739Answer by CrashCodes for Why is it considered a bad practice to omit curly braces?CrashCodes2008-12-11T22:58:52Z2008-12-11T23:04:47Z<p><strong>Speed of reading...</strong></p>
<p>Aside from what has already been mentioned. At this point, I've already been conditioned to parse if statements with braces and white space. So I read:</p>
<pre><code>if (condition)
{
DoSomething();
}
DoSomethingElse();
</code></pre>
<p>Slightly faster than I read:</p>
<pre><code>if (condition) DoSomething();
DoSomethingElse();
</code></pre>
<p>I read it a little slower if it looks like this:</p>
<pre><code>if (condition) DoSomething();
DoSomethingElse();
</code></pre>
<p>I read this significantly slower than the prior:</p>
<pre><code>if (condition)
DoSomething();
DoSomethingElse();
</code></pre>
<p>beause I can't help but read it again just in-case and wonder if the author intended:</p>
<pre><code>if (condition)
{
DoSomething();
DoSomethingElse();
}
</code></pre>
<p>Already covered in general, but when it comes to <strong>reading</strong> the below, I'll be looking into this for quite a while to make sure what the author intended. I may even hunt down the original author to confirm.</p>
<pre><code>if (condition)
DoSomething();
DoSomethingElse();
</code></pre>
http://stackoverflow.com/questions/310247/how-to-automatically-position-the-cursor-between-method-braces-after-typing-the-c/310616#3106160Answer by CrashCodes for How to automatically position the cursor BETWEEN method braces after typing the closing brace in C#?CrashCodes2008-11-22T00:18:32Z2008-11-22T00:18:32Z<p>I don't have vs2008 at the moment. Assuming VS2008 still supports this, you could use code snippets. Mess with below til you get what you need. (See Tools|Code Snippets Manager)</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>b</Title>
<Shortcut>b</Shortcut>
<Description>Braces with cursor inside</Description>
<Author>CrashCodes</Author>
</Header>
<Snippet>
<Code Language="csharp"><![CDATA[{
$end$
}]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
</code></pre>
http://stackoverflow.com/questions/310167/in-c-how-can-i-serialize-queue-net-2-01In C#, How can I serialize Queue<>? (.Net 2.0)CrashCodes2008-11-21T20:55:49Z2008-11-21T21:14:37Z
<p>At the XmlSerializer constructor line the below causes an InvalidOperationException which also complains about not having a default accesor implemented for the generic type.</p>
<pre><code>Queue<MyData> myDataQueue = new Queue<MyData>();
// Populate the queue here
XmlSerializer mySerializer =
new XmlSerializer(myDataQueue.GetType());
StreamWriter myWriter = new StreamWriter("myData.xml");
mySerializer.Serialize(myWriter, myDataQueue);
myWriter.Close();
</code></pre>
http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303846#3038460Answer by CrashCodes for Your personal, successful coding practices.CrashCodes2008-11-19T23:49:37Z2008-11-19T23:49:37Z<p>I agree with Joel, <strong><a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">Make wrong code look wrong.</a></strong></p>
<p>The speed difference between reading code formatted in a constant way and code that isn't is ridiculous. Assuming no one went out of their way to make the inconsistently formatted code obscure I'd guess consistent formatting reads over three times faster with a much higher likelihood of detecting a problem.</p>
http://stackoverflow.com/questions/303555/using-an-interface-to-convert-an-object-from-one-type-to-another/303806#3038062Answer by CrashCodes for Using an interface to convert an object from one type to another?CrashCodes2008-11-19T23:31:37Z2008-11-19T23:31:37Z<p>Check out Joe's answer for the Reflection solution.</p>
<p>I assume you are using Visual Studio. </p>
<p>Are you familiar with the ctrl+shift+r and ctrl+shift+p shortcuts?
If not, ctrl+shift+r begins/ends recording a keystroke macro.
ctrl+shift+p plays the recorded macro. </p>
<p>What I've done when I have set a lot of properties is to copy the property declarations to where I want them to be set and record a macro for mutating the declaration to a set statement and moving the cursor to the next line, then I just play it until I have all the set statements done.</p>
http://stackoverflow.com/questions/293760/in-c-how-do-i-save-a-webpage-to-file-without-destroying-whatever-the-encoding-i2In C#, how do I save a webpage to file without destroying whatever the encoding is?CrashCodes2008-11-16T10:23:11Z2008-11-16T11:21:33Z
<p>Here's what I got so far (that doesn't work). At this point I thought my target was Ansi encoded, but I really don't want to have to know at this point. My browser seems to be able to determine what encoding to use, How can I?</p>
<pre><code>static void GetUrl(Uri uri, string localFileName)
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uri);
HttpWebResponse response;
response = (HttpWebResponse)request.GetResponse();
// Save the stream to file
Stream responseStream = response.GetResponseStream();
StreamReader reader = new StreamReader(responseStream, Encoding.Default);
Stream fileStream = File.OpenWrite(localFileName);
using (StreamWriter sw = new StreamWriter(fileStream, Encoding.Default))
{
sw.Write(reader.ReadToEnd());
sw.Flush();
sw.Close();
}
}
</code></pre>
<p><hr /></p>
<p><strong>After answers</strong> (currently only tested on a UTF-8 site):</p>
<pre><code>static void GetUrl(Uri uri, string localFileName)
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uri);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
try
{
// Hope GetEncoding() knows how to parse the CharacterSet
Encoding encoding = Encoding.GetEncoding(response.CharacterSet);
StreamReader reader = new StreamReader(response.GetResponseStream(), encoding);
using (StreamWriter sw = new StreamWriter(localFileName, false, encoding))
{
sw.Write(reader.ReadToEnd());
sw.Flush();
sw.Close();
}
}
finally
{
response.Close();
}
}
</code></pre>
http://stackoverflow.com/questions/272935/does-it-make-sense-to-set-up-a-wiki-at-the-workplace/273764#2737641Answer by CrashCodes for Does it make sense to set up a wiki at the workplace?CrashCodes2008-11-07T21:53:18Z2008-11-07T21:53:18Z<p>If you want to mess around with a small area to get a feel for what it would be like to use a wiki, try <a href="http://tiddlywiki.com/" rel="nofollow">TiddlyWiki</a> then upgrade to one of the other systems discussed when you decide to green light the whole deal.</p>
<p>If you put this on a shared drive somewhere for others to use too you may wanna install the <a href="http://www.minormania.com/tiddlylock/tiddlylock.html" rel="nofollow">TiddlyLock plugin</a>.</p>
http://stackoverflow.com/questions/218161/how-would-you-recommend-a-novice-get-started-using-css/220136#2201360Answer by CrashCodes for How Would You Recommend a Novice Get Started Using CSS?CrashCodes2008-10-20T22:15:10Z2008-10-20T22:15:10Z<p><a href="http://www.w3.org/Style/CSS/#specs" rel="nofollow">http://www.w3.org/Style/CSS/#specs</a></p>
<p>Someone already listed a w3c link. This link goes to the specs which is how I learned what I know about css. Anyway, start with level 1 then move on to the other levels. Well, level 1 should get you most of what you'll use so you may just want to learn level 1 then google the other things you want to do as needed. </p>
http://stackoverflow.com/questions/202971/formula-or-api-for-calulating-desktop-icon-spacing-on-windows-xp1Formula or API for calulating desktop icon spacing on Windows XP.CrashCodes2008-10-14T21:43:21Z2008-10-14T21:55:27Z
<p>I've built a simple application that applies grid-lines to an image or just simple colors for use as desktop wallpaper. The idea is that the desktop icons can be arranged within the grid. The problem is that depending on more things than I understand the actual spacing in pixels seems to be different from system to system. I've learned that at least these things play a factor:</p>
<ul>
<li>Resolution (duh)</li>
<li>Taskbar size and placement</li>
<li>Fonts</li>
</ul>
<p>There has to be more than this. Maybe there's some api call that I don't know about?</p>
http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/191859#1918590Answer by CrashCodes for Should C# include multiple inheritance?CrashCodes2008-10-10T15:25:48Z2008-10-14T17:07:42Z<p><strong>No.</strong></p>
<p>(for voting)</p>
http://stackoverflow.com/questions/718582/whats-the-funniest-user-request-youve-ever-had/1546215#1546215Comment by CrashCodes on What's the funniest user request you've ever had?CrashCodes2009-10-12T18:08:08Z2009-10-12T18:08:08Z Ask them to reseat the connector. This will clean off the dust and what not... Yeah whatever. It really just lets them discover that it's not connected.http://stackoverflow.com/questions/854666/how-to-write-to-the-console-input-and-get-the-console-handle/855327#855327Comment by CrashCodes on How to write to the Console input and get the Console Handle?CrashCodes2009-05-13T14:57:11Z2009-05-13T14:57:11ZWell, I don't get a 0 handle. So that's a plus. I'm still doing something else wrong.http://stackoverflow.com/questions/854666/how-to-write-to-the-console-input-and-get-the-console-handle/854804#854804Comment by CrashCodes on How to write to the Console input and get the Console Handle?CrashCodes2009-05-12T21:18:32Z2009-05-12T21:18:32ZThis fails. GetLastError() returns 6 - Handle is invalid.http://stackoverflow.com/questions/745425/in-c-how-to-declare-dword-as-an-uint32Comment by CrashCodes on In C#, How to declare DWORD as an uint32?CrashCodes2009-04-13T21:17:39Z2009-04-13T21:17:39ZHehehe. No kidding. A friend asked and I couldn't remember the answer. P/Invoked stuff is prolly easier to work with and corresponding docs.http://stackoverflow.com/questions/645518/how-can-i-hide-a-panel-that-is-on-a-splitcontainer/645549#645549Comment by CrashCodes on How can I hide a panel that is on a SplitContainer?CrashCodes2009-03-14T07:17:31Z2009-03-14T07:17:31ZYeah. Does now. Hot stuff. http://stackoverflow.com/questions/645518/how-can-i-hide-a-panel-that-is-on-a-splitcontainer/645549#645549Comment by CrashCodes on How can I hide a panel that is on a SplitContainer?CrashCodes2009-03-14T07:11:35Z2009-03-14T07:11:35ZOkay. Tried it works great. I started removing lines to see which one did the trick; and I'm back down to splitContainer1.Panel2Collapsed = true; Fun stuff.http://stackoverflow.com/questions/645518/how-can-i-hide-a-panel-that-is-on-a-splitcontainer/645549#645549Comment by CrashCodes on How can I hide a panel that is on a SplitContainer?CrashCodes2009-03-14T07:00:47Z2009-03-14T07:00:47Zbut what happens when the user resizes the formhttp://stackoverflow.com/questions/643201/how-to-safely-check-net-framework-version-using-a-net-framework-version-that-ma/643430#643430Comment by CrashCodes on How to safely check .net framework version using a .net framework version that may not exist?CrashCodes2009-03-13T19:00:33Z2009-03-13T19:00:33ZNM. Found it: <a href="http://wix.sourceforge.net/manual-wix3/check_for_dotnet.htm" rel="nofollow">wix.sourceforge.net/manual-wix3/…</a>http://stackoverflow.com/questions/643201/how-to-safely-check-net-framework-version-using-a-net-framework-version-that-ma/643430#643430Comment by CrashCodes on How to safely check .net framework version using a .net framework version that may not exist?CrashCodes2009-03-13T18:51:35Z2009-03-13T18:51:35ZOh. Is there something special I need to do to the Wix project to make it check for .net 3.5?http://stackoverflow.com/questions/643201/how-to-safely-check-net-framework-version-using-a-net-framework-version-that-ma/643430#643430Comment by CrashCodes on How to safely check .net framework version using a .net framework version that may not exist?CrashCodes2009-03-13T18:48:04Z2009-03-13T18:48:04ZI just started using Wix just because I wanted an installer and the project types came with SharpDevelop. I didn't realize it would make this issue irrelevant.http://stackoverflow.com/questions/643201/how-to-safely-check-net-framework-version-using-a-net-framework-version-that-ma/643225#643225Comment by CrashCodes on How to safely check .net framework version using a .net framework version that may not exist?CrashCodes2009-03-13T15:31:51Z2009-03-13T15:31:51ZWell. The way I phrased the question... I need to work on that.http://stackoverflow.com/questions/643201/how-to-safely-check-net-framework-version-using-a-net-framework-version-that-ma/643225#643225Comment by CrashCodes on How to safely check .net framework version using a .net framework version that may not exist?CrashCodes2009-03-13T15:26:46Z2009-03-13T15:26:46ZNot really assuming that. Also, thanks for the link.http://stackoverflow.com/questions/616719/c-how-do-events-differ-from-delegates/616732#616732Comment by CrashCodes on C#, How do events differ from delegates?CrashCodes2009-03-05T21:38:32Z2009-03-05T21:38:32ZThat was not a suggested question when I listed this. Thanks for pointing that out.http://stackoverflow.com/questions/596631/what-windows-api-to-look-into-for-building-a-scheduling-application/596790#596790Comment by CrashCodes on What Windows API to look into for building a scheduling application?CrashCodes2009-02-27T21:59:49Z2009-02-27T21:59:49ZI took a little time to look at this already; and if I just wanted to run something at a certain time, bizzaro rules and all, this would probably be the way to I'd go. Wanting the extra feedback is pulling me away from this.http://stackoverflow.com/questions/596631/what-windows-api-to-look-into-for-building-a-scheduling-applicationComment by CrashCodes on What Windows API to look into for building a scheduling application?CrashCodes2009-02-27T21:01:59Z2009-02-27T21:01:59ZAlso, thanks for taking the time to give me feedback about this.