User Scott Langham - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T20:46:50Zhttp://stackoverflow.com/feeds/user/11898http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/373142/what-techniques-can-be-used-to-speed-up-c-compilation-times17What techniques can be used to speed up C++ compilation times?Scott Langham2008-12-16T23:25:06Z2009-12-02T14:29:12Z
<p>What techniques can be used to speed up C++ compilation times?</p>
<p>This question came up in some comments on this question: <a href="http://stackoverflow.com/questions/372862/c-programming-style">http://stackoverflow.com/questions/372862/c-programming-style</a></p>
<p>And I'm interested to hear what ideas there are.</p>
<p>I've seen this related question, but that doesn't provide many solutions:<br />
<a href="http://stackoverflow.com/questions/318398/why-does-c-compilation-take-so-long">http://stackoverflow.com/questions/318398/why-does-c-compilation-take-so-long</a></p>
http://stackoverflow.com/questions/1782077/c-asp-net-asynchronous-thread-execution/1782155#17821551Answer by Scott Langham for C# /ASP.NET Asynchronous Thread ExecutionScott Langham2009-11-23T09:56:06Z2009-11-23T09:56:06Z<p>1 ) The TestDelegate already pointing to a Method ( "PrintOut").Why do Again we are passing another method ("callback") in d.BeginInvoke("Hello",new AysncCallback(Callback),d);.Does it mean d.BeginInvoke executes "PrintOut" and "Callback" parallely?.Can you please explain line by line what exactly going on?</p>
<ul>
<li>PrintOut and Callback are not executed in paralled. Callback will be called when PrintOut has finished and returned.</li>
</ul>
<p>2) Normally, Aysnchronous execution means the execution of a "thread" is not predictable or fastest execution ?</p>
<ul>
<li>No. Asynchronous execution means the execution is not synchronous. That is.. the timing and execution time of the execution are not related to the timing of the piece of code that starts the asynchronous operation. It is the opposite of synchronous execution. With synchronous operation you would expect the execution to complete before the next statement is executed. For example, calling another method directly is synchronous operation, or another example is calling a function on a remote service and waiting for it to return before continuing.</li>
</ul>
<p>3) TestDelegate d = (TestDelegate)ar.AsyncState; "TestDelegate" d is a delegate.How is it possible to cast it to filed or property? ( ar.AsyncState )</p>
<ul>
<li>The delegate is not being case to a field or property. The cast is the other way around. The field or property is being cast into a TestDelegate.</li>
</ul>
<p>4) can you provide me some live example where do i need to use this Asynchronous execution?</p>
<ul>
<li>An example might be if you have a user interface that displays reports. The report might need to be generated from data in a database and takes a long time to generate. You would want to generate the report asynchronously so that the user interface can carry on running. If the report was not generated asynchronously the user interface might appear to be frozen and the user might think the program has crashed.</li>
</ul>
http://stackoverflow.com/questions/1749534/multiple-dispatch-in-c/1749607#17496073Answer by Scott Langham for Multiple dispatch in C++Scott Langham2009-11-17T15:22:38Z2009-11-17T15:22:38Z<p>Multiple dispatch is when the function that gets executed depends on the run time type of more than one object.</p>
<p>C++ has single dispatch because when you use virtual functions, the actual function that gets run depends only on the run-time type of the object to the left of the -> or . operator.</p>
<p>I'm struggling to think of a real programming case for multiple dispatch. Maybe in a game where various characters fight each other.</p>
<pre><code>void Fight(Opponent& opponent1, Opponent& opponent2);
</code></pre>
<p>The winner of a fight may depend on the characteristics of both opponents, so you may want this call to dispatch to one of the following, depending on the run-time types of both arguments:</p>
<pre><code>void Fight(Elephant& elephant, Mouse& mouse)
{
mouse.Scare(elephant);
}
void Fight(Ninja& ninja, Mouse& mouse)
{
ninja.KarateChop(mouse);
}
void Fight(Cat& cat, Mouse& mouse)
{
cat.Catch(mouse);
}
void Fight(Ninja& ninja, Elephant& elephant)
{
elephant.Trample(ninja);
}
// Etc.
</code></pre>
<p>What the function does depends on the types of both arguments, not just one. In C++ you might have to write this as some virtual functions. A virtual function would be selected depending on one argument (the this pointer). Then, the virtual function may need to contain a switch or something to do something particular to the other argument.</p>
http://stackoverflow.com/questions/1728169/are-passive-objects-considered-a-good-design-practice/1728258#17282581Answer by Scott Langham for Are "passive" objects considered a good design practice?Scott Langham2009-11-13T09:54:16Z2009-11-13T09:54:16Z<p>Seems like fine design to me. I'm not sure about the name passive though. Those classes do seem pretty active. They react to events and do stuff. I would think a class is more passive if you have to call methods on it to get it to do stuff, but normally it wouldn't do anything unless poked.</p>
<p>How about the name "controller". "controller" is the more usual name for a class used in a UI that causes interaction between a view and data, and they quite often don't need to have public methods.</p>
<p>I'm sure there's other ideas for names.</p>
http://stackoverflow.com/questions/1714355/c-how-to-remove-and-cleanup-all-events0C# How to remove and cleanup all eventsScott Langham2009-11-11T10:36:18Z2009-11-11T11:15:36Z
<p>Ideally I want a function something like the following (this example doesn't compile):</p>
<pre><code> void AddRemoveEvent<TEvent, TArgs>(TEvent e, EventHandler<TArgs> h, bool add)
where TArgs : System.EventArgs
{
if (add)
{
e += h;
}
else
{
e -= h;
}
}
</code></pre>
<p>Then I can write functions:</p>
<pre><code>void AddRemoveEvents(bool add)
{
AddRemoveEvent(aMemberControl.Click, OnClick, add);
}
</code></pre>
<p>I then know I can call the function again to remove all handlers. I'm thinking this would be better than writing, keeping and relying on two functions being kept in sync:</p>
<pre><code>void AddEvents(bool add)
{
aMemberControl.Click += OnClick;
}
void RemoveEvents(bool add)
{
aMemberControl.Click -= OnClick;
}
</code></pre>
<p>A colleague has written a handy class that does this kind of stuff that uses reflection. It's very useful, but it relies on the name of the event being passed in as a string. I'm looking for a <strong>type safe</strong> version. Has anybody got any ideas on if it's possible to write this?</p>
<p>Thanks.</p>
<p>I know I shouldn't really have to unwire stuff everywhere because the garbage collector should take care of most cases. But, sometimes a stray event causes a leak, and so I find it safer to just try and remove all events I add rather than trying to mess about with a profiler trying to identify the ones that do cause problems.</p>
<p>I've seen this related question:<br>
<a href="http://stackoverflow.com/questions/91778/how-to-remove-all-event-handlers-from-a-control">http://stackoverflow.com/questions/91778/how-to-remove-all-event-handlers-from-a-control</a></p>
http://stackoverflow.com/questions/194215/are-bought-in-thirdparty-libraries-cost-time-effective3Are bought in thirdparty libraries cost/time effective?Scott Langham2008-10-11T15:38:30Z2009-11-08T18:25:50Z
<p>I've recently been working on a C# GUI. We used a third party graphical controls library (that I won't name). Some people really like this library and get all excited with "hey look its got a control that looks flashy, let's use that on this screen". My experience was that we compromised the usability of our GUI by putting some flashy controls in it. And, I also found many of the controls limiting. They'd nearly do what I wanted, but not quite, so there would always be a compromise.</p>
<p>Some parts of the library just had unacceptably poor performance, and we had to write our own versions of these features. In other places where bugs were encountered, we had to wait long turn-around times to get fixes from the suppliers.</p>
<p>I've got a feeling that the expense of buying this library in wasn't worth it and that it didn't improve our development time or product quality.</p>
<p>Do you have any information, preferably quantifiable facts, on the successes/failings of buying in software libraries so that we can be more informed about deciding if we should buy in libraries for future projects?</p>
http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/304926#3049265Answer by Scott Langham for Your personal, successful coding practices.Scott Langham2008-11-20T10:46:19Z2009-11-08T18:09:48Z<p><strong>Reduce the number of possible 'states of being' that can exist</strong></p>
<p>Ensure objects are initialized and consistent the instant they are constructed and stay so until they are destructed.</p>
<p>If you know your objects members are all initialized and valid while the object exists you can write methods to rely on that without worrying.</p>
<p>I often see code where the author doesn't recognize how important object lifetimes are. They expect you to construct an object and then call various initialize methods on it to get it bought properly to life. This means their code is littered with checks to see if members are valid before they're used. All these checks reduce the code to an impenetrable mess.</p>
http://stackoverflow.com/questions/1626132/how-do-you-version-service-pack-or-hot-fix/1693200#16932001Answer by Scott Langham for How do you version service pack or hot fix?Scott Langham2009-11-07T14:26:12Z2009-11-07T14:26:12Z<p>You only need to up the version number if the methods etc of the public api changed, or if the behaviour of a call changed such that a client might need to rewrite some of their code that uses your api.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1691650#16916500Answer by Scott Langham for Interview question: f(f(n)) == -nScott Langham2009-11-07T01:49:52Z2009-11-07T01:49:52Z<p>C++</p>
<pre><code>struct Value
{
int value;
Value(int v) : value(v) {}
operator int () { return -value; }
};
Value f(Value input)
{
return input;
}
</code></pre>
http://stackoverflow.com/questions/727918/what-happens-when-gettickcount-wraps3What happens when GetTickCount() wraps?Scott Langham2009-04-07T22:59:07Z2009-10-19T16:28:30Z
<p>If a thread is doing something like this:</p>
<pre><code>const DWORD interval = 20000;
DWORD ticks = GetTickCount();
while(true)
{
DoTasksThatTakeVariableTime();
if( GetTickCount() - ticks > interval )
{
DoIntervalTasks();
ticks = GetTickCount();
}
}
</code></pre>
<p>Eventually, ticks is going to wrap when the value doesn't fit in a DWORD.</p>
<p>I've been discussing this with a colleague. One of us believes the code will still behave 'nicely' when the wrap occurs, because the subtraction operation will also wrap. The other of us, believes it won't always work, especially if the interval is large.</p>
<p>Who's right, and why?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1476995/tfs-re-run-merge2TFS Re-run mergeScott Langham2009-09-25T12:20:27Z2009-09-28T15:30:24Z
<p>So, In TFS I tried to merge one branch to another - there are a lot of files needing manual merging.</p>
<p>The dialog came up with a list of conflicts. I worked through some and went for a coffee. The screen saver came on. When I came back to my PC the list of conflicts dialog seems to have disappeared and it seems that it's done an 'accept theirs' on all the remaining files.</p>
<p>Is there any way I can force the dialog to come back up? I don't want to have to start again or manually work out what remaining files I need to diff and mess about changing them.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1231889#12318895Answer by Scott Langham for What are common UI misconceptions and annoyances?Scott Langham2009-08-05T08:33:13Z2009-09-27T11:58:00Z<p><strong>The 'Open, Save and Save As' model is the only way of accessing files</strong></p>
<p>I'm frequently asked by not so computer literate friends: "How can I get all my work back, it seems to have gone?"</p>
<p>What's happened is that they've opened up a document, say "2008 financial accounts.spreadsheet", spent a few hours editing it to contain 2009 accounts, and then though, great, that's good. I'll save it. So, they press save. Then, later on they need some important information from their 2008 or 2009 accounts. Well, they can't find their 2009 accounts, because it's saved in a file called "2008 financial accounts.spreadsheet", and their 2008 accounts are lost because they've been overwritten.</p>
<p>There are a number of solutions:</p>
<ul>
<li>Computers have loads of hard disk space nowadays, so couldn't the OS keep old copies of the document?</li>
<li>Get rid of save and save as. Files icons in the OS should be used more like real world files. This would get people into the correct mind-set. If they want to start editing a new version, they'd go to explorer and copy the file, and then open it to work on it. There would be no concept of save, because all changes would be automatically saved... just like when you start writing on a piece of paper (although, with computers we could still allow some undo). Also, there would be no open command, you'd open the file from explorer rather than from in the program that edits/views it.</li>
</ul>
<p>I think the reason we ended up with the Open, Save and and Save As model for working is just for historical reasons. In older OS's that didn't have graphical user interfaces for manipulating files that were always available, they were seen as an OK solution to a technical problem.</p>
http://stackoverflow.com/questions/1476995/tfs-re-run-merge/1478217#14782170Answer by Scott Langham for TFS Re-run mergeScott Langham2009-09-25T16:08:09Z2009-09-25T16:08:09Z<p>Got it.</p>
<p>Press the 'Check In' button. Sounds scary I know if you don't want to check in, but it pops up with a dialog telling you there are unresolved differences and then it shows you the list of conflicting files so you can resume fixing them.</p>
<p>After you've finished going through the list, TFS will tell you that the check-in has been cancelled because there were unresolved differences.</p>
http://stackoverflow.com/questions/1465253/createobjectwxz-agent-1-remoteservername-permission-denied-how-can-a-user0CreateObject("WXZ.Agent.1", "RemoteServerName") Permission denied. How can a username and password be supplied?Scott Langham2009-09-23T10:45:31Z2009-09-24T16:08:36Z
<p>Hi I'm trying to use CreateObject to DCOM to a service running on a remote machine. I get the error "Permission denied: 'CreateObject'", which is kind of what I expected.</p>
<p>I'm wondering though, how can I supply credentials to this call of a user who I know has permissions on the target machine to create the object? Is this possible? Or do I have to be logged on as a user who has the right permissions?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1466587/is-there-a-way-of-making-c-binding-work-statically4Is there a way of making C# binding work statically?Scott Langham2009-09-23T15:03:30Z2009-09-23T16:09:59Z
<p>This probably applies to other places, but in WinForms, when I use binding I find many methods want to take the name of the property to bind to. Something like:</p>
<pre><code>class Person
{
public String Name { get { ... } set { ... } }
public int Age { get { ... } set { ... } }
}
class PersonView
{
void Bind(Person p)
{
nameControl.Bind(p,"Name");
ageControl.Bind(p,"Age");
}
}
</code></pre>
<p>The big problem I keep having with this is that "Name" and "Age" are specified as strings. This means the compiler is no help if someone renames one of Person's properties. The code will compile fine, but the bindings will be broken.</p>
<p>Is there a standard way of solving this that I've missed? It feels like I need some keyword, maybe called stringof to match the existing typeof. You could use it something like:</p>
<pre><code>ageControl.Bind(p,stringof(p.Age).Name);
</code></pre>
<p>stringof could return some class that has properties for getting the full path, part of the path, or the string so you can parse it up yourself.</p>
<p>Is something like this already do-able?</p>
http://stackoverflow.com/questions/1444492/treenode-right-click-option/1444539#14445391Answer by Scott Langham for TreeNode Right Click OptionScott Langham2009-09-18T13:27:17Z2009-09-18T13:27:17Z<p>Add a handler for MouseUp.
In the handler, check the args for a right mouse button, return if it's not.
Call treeView.GetNodeAt() with the mouse coordinates to find the node.
Create a context menu.</p>
<p>Here's something similar for a list control which can be adapted for a TreeView:</p>
<pre><code> private void listJobs_MouseUp(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Right)
{
int index = listJobs.IndexFromPoint(e.Location);
if (index != ListBox.NoMatches)
{
listJobs.SelectedIndex = index;
Job job = (Job)listJobs.Items[index];
ContextMenu cm = new ContextMenu();
AddMenuItem(cm, "Run", QueueForRun, job).Enabled = !job.Pending;
AddMenuItem(cm, "Cancel run", CancelQueueForRun, job).Enabled = (job.State == JobState.Pending || job.State == JobState.Running);
AddMenuItem(cm, "Open folder", OpenFolder, job);
cm.Show(listJobs, e.Location);
}
}
}
private MenuItem AddMenuItem(ContextMenu cm, string text, EventHandler handler, object context)
{
MenuItem item = new MenuItem(text, handler);
item.Tag = context;
cm.MenuItems.Add(item);
return item;
}
</code></pre>
<p>You may need to use PointToClient or PointToScreen on the form to translate the coordinates appropriately. You'll soon realize if you need them when the context menu appears in the wrong place.</p>
http://stackoverflow.com/questions/145570/what-existing-style-and-coding-standard-documents-should-be-used-on-a-c-project/145668#1456682Answer by Scott Langham for What existing style and coding standard documents should be used on a C++ project?Scott Langham2008-09-28T11:14:05Z2009-09-16T07:01:37Z<p><a href="http://rads.stackoverflow.com/amzn/click/0321113586" rel="nofollow">C++ Coding Standards: 101 Rules, Guidelines, and Best Practices</a> (C++ In-Depth Series)
by Herb Sutter and, Andrei Alexandrescu.</p>
http://stackoverflow.com/questions/1405256/how-to-find-plain-character-code-of-a-key-press0How to find plain character code of a key press?Scott Langham2009-09-10T13:18:36Z2009-09-10T13:18:36Z
<p>I'm handling WM_CHAR in a MessageFilter written in C#. I need to interpret the key that was pressed along with whether the ctrl or alt keys were pressed at the same time. So far, I've got this:</p>
<pre><code>case WM_CHAR:
{
bool control = (Control.ModifierKeys & Keys.Control) != 0;
bool alt = (Control.ModifierKeys & Keys.Alt) != 0;
char c = (char)msg.WParam;
HandleShortcut(c,control,alt);
}
</code></pre>
<p>If I press 'f' or 'alt-f', I get the value of c in the snippet above to be the character 'f'. However, if ctrl is down, I get a different value for c. I get the decimal value 6 instead.</p>
<p>I really need to get an 'f' regardless of whether the ctrl key was down. Do you know how I can get this?</p>
<p>I've seen this related article, but I don't think I can go down this route because I don't want to mess up how the key gets translated because other parts of the application might break if I start messing about with how keys get translated.</p>
<p><a href="http://www.gamedev.net/community/forums/topic.asp?topic_id=470716" rel="nofollow">http://www.gamedev.net/community/forums/topic.asp?topic_id=470716</a></p>
<p>Any help would be greatly appreciated. Thanks.</p>
http://stackoverflow.com/questions/1366544/how-to-export-image-field-to-file0How to export image field to file?Scott Langham2009-09-02T08:55:08Z2009-09-02T11:09:01Z
<p>Hi,</p>
<p>I am using Microsoft SQL Server Management Studio to connect to a database. In it I've got a table, one column of which is an Image column containing file data. Another column is a string containing the file name.</p>
<p>Is there some way I can write some sql script that will allow me to select a record and write this data to a file? Or if this isn't possible, what's a simple way for achieving this?</p>
<p>Thanks very much.</p>
<p>I've seen this related question, but it doesn't seem quite the same. <a href="http://stackoverflow.com/questions/1328914/save-image-column-to-file-in-sql-server-2000">http://stackoverflow.com/questions/1328914/save-image-column-to-file-in-sql-server-2000</a></p>
http://stackoverflow.com/questions/1352905/passing-object-references-needlessly-through-a-middleman/1353401#13534011Answer by Scott Langham for Passing object references needlessly through a middlemanScott Langham2009-08-30T08:03:14Z2009-08-30T08:03:14Z<p>In some cases a global isn't too bad.</p>
<p>Consider, you're probably programming against an operating system's API. That's full of globals, you can probably access a file or the registry, write to the console. Look up a window handle. You can do loads of stuff to access state that is global across the whole computer, or even across the internet... and you don't have to pass a single reference to your class to access it. All this stuff is global if you access the OS's API.</p>
<p>So, when you consider the number of global things that often exist, a global in your own program probably isn't as bad as many people try and make out and scream about.</p>
<p>However, if you want to have very nice OO code that is all unit testable, I suppose you should be writing wrapper classes around any access to globals whether they come from the OS, or are declared yourself to encapsulate them. This means you class that uses this global state can get references to the wrappers, and they could be replaced with fakes.</p>
<p>Hmm, anyway. I'm not quite sure what advice I'm trying to give here, other than say, structuring code is all a balance! And, how to do it for your particular problem depends on your preferences, preferences of people who will use the code, how you're feeling on the day on the academic to pragmatic scale, how big the code base is, how safety critical the system is and how far off the deadline for completion is.</p>
http://stackoverflow.com/questions/1353096/cross-thread-reading-of-a-variable/1353371#13533710Answer by Scott Langham for Cross thread reading of a variableScott Langham2009-08-30T07:46:58Z2009-08-30T07:46:58Z<p><strong>Use .Net types that are natively atomic</strong><br />
It depends what type of variable you're using. Some variables act atomically. Atomic writes means the cpu writes the entire variable in one go, or you can at least consider it as doing so. This means no other thread sees a partially updated variable - which would clearly be bad! Variables that behave atomically would behave as you ask with no locking required.</p>
<p>Assignments to reference types, bool, char, byte, sbyte, short, ushort, uint, int and float are atomic.</p>
<p>I got the list of atomic types here:
<a href="http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/a5a3c1b4-9f76-43d7-90a6-6572c59491fe" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/a5a3c1b4-9f76-43d7-90a6-6572c59491fe</a></p>
<p>See section 5.5 of the C# specification here:
<a href="http://download.microsoft.com/download/3/8/8/388e7205-bc10-4226-b2a8-75351c669b09/CSharp%20Language%20Specification.doc" rel="nofollow">http://download.microsoft.com/download/3/8/8/388e7205-bc10-4226-b2a8-75351c669b09/CSharp%20Language%20Specification.doc</a></p>
http://stackoverflow.com/questions/1347649/how-to-send-email-via-exchange-server-without-using-smtp0How to send email via exchange server without using smtp?Scott Langham2009-08-28T15:13:43Z2009-08-28T16:06:15Z
<p>Hi,</p>
<p>I'm trying to send an email from c# code via our company's exchange server. </p>
<pre><code>System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient("exchangebox1.mycompany.com");
System.Net.Mail.MailMessage msg = new System.Net.Mail.MailMessage("Me@myCompany.com",
"Them@mycompany.com",
"title here",
"body here");
client.Send(msg);
</code></pre>
<p>When I run this I get SmptException saying "Service not available, closing transmission channel. The server response was 4.3.2 Service not available, closing transmission channel".</p>
<p>I'm interpreting this to mean SMTP is not enabled on our exchange box and that I need to use native Exchange Server commands to send the mail. Is this right, or should SMTP always work?</p>
<p>Additionally, is it possible the exchange server could have been configured to only allow certain computers/users to send main via SMTP?</p>
<p>How can I send mail via the Exchange Server without using SMTP?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/115319/how-can-the-error-client-found-response-content-type-of-text-html-be-interpr1How can the error 'Client found response content type of 'text/html'.. be interpreted.Scott Langham2008-09-22T14:59:32Z2009-08-04T14:52:30Z
<p>I'm using C# and connecting to a WebService via an auto-generated C# proxy object. The method I'm calling can be long running, and sometimes times out. I get different errors back, sometimes I get a System.Net.WebException or a System.Web.Services.Protocols.SoapException. These exceptions have properties I can interrogate to find the specific type of error from which I can display a human-friendly version of to the user.</p>
<p>But sometimes I just get an InvalidOperationException, and it has the following Message. Is there any way I can interpret what this is without digging through the string for things I recognize, that feels very dirty, and isn't internationalization agnostic, the error message might come back in a different language.</p>
<pre><code>Client found response content type of 'text/html; charset=utf-8', but expected 'text/xml'.
The request failed with the error message:
--
<html>
<head>
<title>Request timed out.</title>
<style>
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
pre {font-family:"Lucida Console";font-size: .9em}
.marker {font-weight: bold; color: black;text-decoration: none;}
.version {color: gray;}
.error {margin-bottom: 10px;}
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
</style>
</head>
<body bgcolor="white">
<span><H1>Server Error in '/PerformanceManager' Application.<hr width=100% size=1 color=silver></H1>
<h2> <i>Request timed out.</i> </h2></span>
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
<b> Description: </b>An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
<br><br>
<b> Exception Details: </b>System.Web.HttpException: Request timed out.<br><br>
<b>Source Error:</b> <br><br>
<table width=100% bgcolor="#ffffcc">
<tr>
<td>
<code>
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.</code>
</td>
</tr>
</table>
<br>
<b>Stack Trace:</b> <br><br>
<table width=100% bgcolor="#ffffcc">
<tr>
<td>
<code><pre>
[HttpException (0x80004005): Request timed out.]
</pre></code>
</td>
</tr>
</table>
<br>
<hr width=100% size=1 color=silver>
<b>Version Information:</b> Microsoft .NET Framework Version:2.0.50727.312; ASP.NET Version:2.0.50727.833
</font>
</body>
</html>
<!--
[HttpException]: Request timed out.
-->
--.
</code></pre>
<p>Edit:
I have a try-catch around the method on the web-server. I have debugged it, and the web-server method returns (after a minute or so) without any exception. I also added an unhandled exception handler in the web service and a breakpoint there wasn't hit. As soon as the web-service returns, I get this error in the client instead of the result I expected.</p>
http://stackoverflow.com/questions/1194527/how-to-see-windows-messages-of-a-dialog-shown-with-a-second-thread4How to see windows messages of a dialog shown with a second thread?Scott Langham2009-07-28T14:33:44Z2009-07-31T17:58:54Z
<p>I've registered a message filter using</p>
<pre><code>Application.AddMessageFilter(m_messageFilter);
</code></pre>
<p>using this I can log all of the mouse clicks a user makes in the application's user interface.</p>
<p>However, one dialog is run on a separate thread, with code something like:</p>
<pre><code>void Run()
{
using( MyDialog dialog = new MyDialog() )
{
dialog.ShowDialog();
}
}
Thread thread = new Thread(Run);
</code></pre>
<p>The message filter I set up doesn't get to see messages that go to this window. How can I get them (ideally without being too intrusive)?</p>
<p>I tried to override MyDialog.PreProcessMessage, but I'm confused that this never seems to get called.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1171060/where-to-put-break-in-switch-case-statement-with-blocks/1171134#11711341Answer by Scott Langham for where to put break in switch/case statement with blocksScott Langham2009-07-23T11:27:51Z2009-07-23T11:27:51Z<p>It doesn't really matter as long as you and your team do the same thing consistently. Even then, it's not a big issue if different team members do it differently.</p>
<p>I personally prefer after. The reasoning is that it gives some separation between the machinery of the switch statement (jumping to, executing stuff and getting out), and the code within the braces which is purely involved with the 'doing' of the case.</p>
<p>eg:</p>
<pre><code>switch( value )
{
case 0:
{
// code here
}
break;
default:
{
assert(!"unhandled value in switch");
}
break;
}
</code></pre>
<p>I only use {} for a case if it needs local variables, but if I use {} for any case, I put them on all cases.</p>
<p>I usually always define a default case to assert if there is any unexpected value. It's amazing how often one of these asserts fires to remind you of a missing case.</p>
http://stackoverflow.com/questions/353161/how-to-test-whether-a-service-is-running-from-the-command-line0How to test whether a service is running from the command lineScott Langham2008-12-09T15:37:37Z2009-07-20T20:48:57Z
<p>I would like to be able to query whether or not a service is running from a windows batch file. I know I can use: </p>
<blockquote>
<p>sc query "ServiceName" </p>
</blockquote>
<p>but, this dumps out some text. What I really want is for it to set the <code>errorlevel</code> environment variable so that I can take action on that.</p>
<p>Do you know a simple way I can do this?</p>
<p><strong>UPDATE</strong><br />
Thanks for the answers so far. I'm worried the solutions that parse the text may not work on non English operating systems. Does anybody know a way around this, or am I going to have to bite the bullet and write a console program to get this right.</p>
http://stackoverflow.com/questions/1134705/when-a-potential-employer-wants-code-samples-what-do-they-really-want/1134711#11347113Answer by Scott Langham for When a potential employer wants "code samples", what do they REALLY want?Scott Langham2009-07-15T23:51:58Z2009-07-15T23:51:58Z<p>Some error handling. Comments that explain what's going on without explaining what is obvious from the code. Well named variables + method names that clearly identify what they're purpose is.</p>
http://stackoverflow.com/questions/1113321/preferred-way-to-build-gui-components-tree/1113605#11136050Answer by Scott Langham for Preferred way to build gui components treeScott Langham2009-07-11T12:20:34Z2009-07-11T12:20:34Z<p>Sorry, I don't know much about JavaFX.</p>
<p>But, I would suggest option 2. If you instantiate everything at the start, you're going to use up a whole load of memory when you only actually need to use memory for the gui components that are currently visible.</p>
<p>Create all of the components for the current screen, and show/hide/disable/enable them. But don't create components that don't live on the current screen/window/form/dialog.</p>
http://stackoverflow.com/questions/1113563/iphone-application/1113588#11135882Answer by Scott Langham for iPhone ApplicationScott Langham2009-07-11T12:10:06Z2009-07-11T12:10:06Z<p>Start here:</p>
<p><a href="http://developers.facebook.com/" rel="nofollow">http://developers.facebook.com/</a></p>
<p>If the answer's anywhere, you'll find it there.</p>
http://stackoverflow.com/questions/1113472/should-i-store-my-systems-notifications-in-a-db-or-filesystem/1113587#11135871Answer by Scott Langham for Should I store my system's notifications in a db or filesystem?Scott Langham2009-07-11T12:08:00Z2009-07-11T12:08:00Z<p>It sounds like you're already considering it! :)</p>
<p>Well, doing that will add complexity won't it, because information will have to be looked up. You'll have to look in the database anyway to find where the file is, so what's the point. It'll probably go wonky over time, unless you're very careful, you'll end up with URI's in the database where the file is missing, or files without a URI in the database.</p>
<p>I'm assuming your richer editor works on files, and that's why you're considering switching to file based?</p>
<p>How about, when you get the record out of the db, just extract the data to temporary file then. Then edit it in the rich editor, then when you've finished and saved it, write it back to the db.</p>
<p>To be honest, I don't really know enough to answer this. What editor are you considering using?</p>
http://stackoverflow.com/questions/1780410/store-a-string-in-an-intComment by Scott Langham on store a string in an intScott Langham2009-11-22T23:35:30Z2009-11-22T23:35:30Zwhy do you want it in a array of ints? wouldn't an array of char be more straightforward?http://stackoverflow.com/questions/1749617/how-to-instantiate-a-variable-to-call-a-methodComment by Scott Langham on How to instantiate a variable to call a method. Scott Langham2009-11-17T15:27:41Z2009-11-17T15:27:41ZPlease give us an example of what you mean with a switch, and we'll tell you if there's an alternative without the switch.http://stackoverflow.com/questions/134086/what-strategies-and-tools-are-useful-for-finding-memory-leaks-in-net/134141#134141Comment by Scott Langham on What strategies and tools are useful for finding memory leaks in .net?Scott Langham2009-11-08T18:22:19Z2009-11-08T18:22:19ZOk, the new version 5.1, is a heck of a lot better. It's better at helping you find the cause of the leak (although - there are still a couple of problems with it that ANTS have told me they'll fix in the next version). Still doesn't do unmanaged code though, but if you're not bothered about unmanaged code, this is now a pretty good tool.http://stackoverflow.com/questions/727918/what-happens-when-gettickcount-wraps/1589720#1589720Comment by Scott Langham on What happens when GetTickCount() wraps?Scott Langham2009-10-20T11:29:47Z2009-10-20T11:29:47ZOr have you tried the simpler equivalent: TICKS_DIFF(prev,cur) ((cur)-(prev)) It works even with wrap around.http://stackoverflow.com/questions/1470530/does-c-c-have-a-delay-functionComment by Scott Langham on Does c/c++ have a delay function?Scott Langham2009-09-24T09:36:09Z2009-09-24T09:36:09Zare you on windows / unix / something else?http://stackoverflow.com/questions/1466587/is-there-a-way-of-making-c-binding-work-staticallyComment by Scott Langham on Is there a way of making C# binding work statically?Scott Langham2009-09-23T15:26:45Z2009-09-23T15:26:45ZTrue. This kind of language feature might come in handy though even if you're not using WinForms.http://stackoverflow.com/questions/1455189/c-ref-modifier-for-reference-typesComment by Scott Langham on c# - ref modifier for ...reference typesScott Langham2009-09-21T15:56:49Z2009-09-21T15:56:49ZSee also: <a href="http://stackoverflow.com/questions/186891/why-use-ref-keyword-when-passing-an-object" rel="nofollow" title="why use ref keyword when passing an object">stackoverflow.com/questions/186891/…</a>http://stackoverflow.com/questions/1444492/treenode-right-click-option/1444539#1444539Comment by Scott Langham on TreeNode Right Click OptionScott Langham2009-09-20T19:51:36Z2009-09-20T19:51:36ZNice work. I'm happy that you solved it.http://stackoverflow.com/questions/1405256/how-to-find-plain-character-code-of-a-key-pressComment by Scott Langham on How to find plain character code of a key press?Scott Langham2009-09-10T15:52:30Z2009-09-10T15:52:30Zwell, i've ended up looking for WM_KEYDOWN instead and converting from virtual keys to the characters I want. seems to kinda work.http://stackoverflow.com/questions/1392998/how-to-copy-file-to-cross-domain-network-shareComment by Scott Langham on How to copy file to cross domain network share?Scott Langham2009-09-08T09:51:41Z2009-09-08T09:51:41ZMy guess is that LogonUser (used by class Impersonator) fails because it can't authenticate a user from a domain different to the computer. So, I'm wondering if impersonation isn't the wrong approach. Obviously this has to be possible somehow because explorer can get access when challenged with credentials from the server.http://stackoverflow.com/questions/1392998/how-to-copy-file-to-cross-domain-network-shareComment by Scott Langham on How to copy file to cross domain network share?Scott Langham2009-09-08T09:49:46Z2009-09-08T09:49:46Zcode added to questionhttp://stackoverflow.com/questions/1347649/how-to-send-email-via-exchange-server-without-using-smtpComment by Scott Langham on How to send email via exchange server without using smtp?Scott Langham2009-08-28T16:02:53Z2009-08-28T16:02:53ZThanks, I'll try and find out.http://stackoverflow.com/questions/1347649/how-to-send-email-via-exchange-server-without-using-smtp/1347677#1347677Comment by Scott Langham on How to send email via exchange server without using smtp?Scott Langham2009-08-28T15:22:31Z2009-08-28T15:22:31ZThanks for the help. I'm afraid I get the same exception.http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1231889#1231889Comment by Scott Langham on What are common UI misconceptions and annoyances?Scott Langham2009-08-05T09:21:52Z2009-08-05T09:21:52ZWell, yes. But.. my parents and other people have trouble dealing with 'Save As', so they are not going to be able to deal with any source control system as they exist today. Some kind of document control is required, but this stuff needs to be baked into the OS to avoid these kind of headaches.http://stackoverflow.com/questions/1229313/how-do-i-conserve-program-functionality-and-code-after-moving-all-controls-into-aComment by Scott Langham on How do I conserve program functionality and code after moving all controls into a tab control?Scott Langham2009-08-04T19:05:44Z2009-08-04T19:05:44ZPlease tell us why it doesn't work. Do you get an error message, if so what is it. Or what do you/don't you see that you expect or got before?