User Timothy Khouri - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T18:21:30Zhttp://stackoverflow.com/feeds/user/11917http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1900450/wpf-how-to-prevent-a-control-from-stealing-a-key-gesture/1900486#19004860Answer by Timothy Khouri for WPF: How to prevent a control from stealing a key gesture?Timothy Khouri2009-12-14T11:55:02Z2009-12-14T11:55:02Z<p>Using <strong>PreviewKeyDown</strong> is exactly what you <em>should</em> do... the "PreviewXYZ" events are fired from the bottom up (so the Window gets it first, then the control)... that lets you do whatever you wanted to do globaly on the "Window" level.</p>
<p>Then, you can choose to say "IsHandled = true" which would prevent it from going to the next control (as far as you are concerned), but you don't have to do this. If you want the event to bubble, then just add your code and leave "IsHandled" to false.</p>
http://stackoverflow.com/questions/1900299/linq-to-sql-order-by-aggregate/1900341#19003411Answer by Timothy Khouri for Linq to SQL order by aggregateTimothy Khouri2009-12-14T11:22:17Z2009-12-14T11:22:17Z<pre><code>return dataContext.Customers.OrderBy(cust => cust.Orders.Count)
.ThenBy(cust => cust.Orders.Sum(order => order.Amount))
.ToList();
</code></pre>
http://stackoverflow.com/questions/1900213/c-fire-and-forget-call-inside-a-webmethod/1900300#19003003Answer by Timothy Khouri for C# Fire and Forget call inside a WebMethodTimothy Khouri2009-12-14T11:15:11Z2009-12-14T11:15:11Z<p>Do you try to use the "HttpContext" in your method? If so, you should store it in a local variable first... also, I'd <strong>just use ThreadPool.QueueUserWorkItem</strong>.</p>
<p>Example:</p>
<pre><code>[WebMethod]
public string NewBusiness(string myParam)
{
if (InDisasterMode())
{
// Only if you actually need this...
HttpContext context = HttpContext.Current;
// Thread the standard method call
ThreadPool.QueueUserWorkItem(delegate
{
HttpContext.Current = context;
ProcessNewBusiness(myParam);
});
return 'ok';
}
else
{
// Call standard method synchronously to get result
return ProcessNewBusiness(myParam);
}
}
</code></pre>
http://stackoverflow.com/questions/1743259/how-do-i-get-download-retreive-email-using-c-net0How do I GET/Download/Retreive email using C# (.net) [closed]Timothy Khouri2009-11-16T16:27:10Z2009-11-16T16:30:59Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/44383/reading-email-using-pop3-in-c">Reading Email using Pop3 in C#</a> </p>
</blockquote>
<p>It's easy to create a new SmtpClient and "Send" a "MailMessage" in C#... but is there a way to 'Get' MailMessages from a server in .Net?</p>
<p>To be more specific, is there a 'native' class in the .Net Framework that handles this (I realize I can open a Socket connection and go to town myself, but I'm asking for an existing solution).</p>
<p>If there is not one, do you know of an opensource (or otherwise free) .NET DLL that has this capability?</p>
http://stackoverflow.com/questions/1743259/how-do-i-get-download-retreive-email-using-c-net/1743275#17432750Answer by Timothy Khouri for How do I GET/Download/Retreive email using C# (.net)Timothy Khouri2009-11-16T16:29:36Z2009-11-16T16:29:36Z<p>Hmm, a little more searching and I found that this is a duplicate: <a href="http://stackoverflow.com/questions/44383/reading-email-using-pop3-in-c">http://stackoverflow.com/questions/44383/reading-email-using-pop3-in-c</a></p>
http://stackoverflow.com/questions/257250/what-is-the-simplest-jquery-way-to-have-a-positionfixed-always-at-top-div7What is the simplest jQuery way to have a 'position:fixed' (always at top) div?Timothy Khouri2008-11-02T19:34:30Z2009-11-13T09:11:42Z
<p>I'm relatively new to jQuery, but so far what I've seen I like. What I want is for a div (or any element) to be across the top of the page as if "position: fixed" worked in every browser.</p>
<p>I do not want something complicated. I do not want giant CSS hacks. I would prefer if just using jQuery (version 1.2.6) is good enough, but if I need jQuery-UI-core, then that's fine too.</p>
<p>I've tried $("#topBar").scrollFollow(); <-- but that goes slow... I want something to appear really fixed.</p>
http://stackoverflow.com/questions/285649/can-you-assign-the-pagecount-property-of-an-asp-net-gridview0Can You "Assign" the PageCount Property of an ASP.NET GridView?Timothy Khouri2008-11-12T22:37:46Z2009-11-13T07:31:31Z
<p>I have a web application that is using a data store that has it's own built in paging. The PagedResult class tells me the number of total pages. What I would like to do it (after binding my ASP.NET GridView) do this:</p>
<pre><code>MyGridView.PageCount = thePageCount;
</code></pre>
<p>And then have the GridView magically build the pagination links as it normally would if it was doing things itself.</p>
<p>The problem is that "PageCount" is a read-only property... so, how can I do this simply?</p>
http://stackoverflow.com/questions/1626426/try-finally-mystery/1626474#16264742Answer by Timothy Khouri for try finally mysteryTimothy Khouri2009-10-26T18:26:12Z2009-10-26T18:26:12Z<p>When you said "return i"... C# puts that return value in a temporary holding area (memory) and then runs your 'finally' code... if the finally block was able to modify that value, it would defeat the safety/finalism of the finally block.</p>
<p>It's like a using statement with a return inside... the "Dispose" is still going to happen, AFTER the return (so to speak).</p>
http://stackoverflow.com/questions/1588718/in-wpf-how-do-i-prevent-my-style-from-being-overriden1In WPF, how do I prevent my style from being overriden?Timothy Khouri2009-10-19T13:38:54Z2009-10-19T13:55:05Z
<p>Please don't get caught up in my example, just bear with me for the sake of the question:</p>
<p>In my WPF application, if I wanted all TextBoxes to have a "green" background, I would easily set it as such in my Application.Resources.</p>
<pre><code><Style TargetType="TextBox">
<Setter Property="Background" Value="Green" />
</Style>
</code></pre>
<p>This works <strong>PERFECTLY</strong>... (thank you WPF). However, if I had a TextBox somewhere in my application that I wanted to <strong>append a little more styling</strong> to... I <strong>LOSE</strong> my green background.</p>
<p>Example:</p>
<pre><code><TextBox>
<TextBox.Style>
<Style>
<Style.Triggers>
<Trigger Property="TextBox.IsMouseOver" Value="True">
<Setter Property="TextBox.Foreground" Value="Red" />
</Trigger>
</Style.Triggers>
</Style>
</TextBox.Style>
</TextBox>
</code></pre>
<p>That TextBox will correctly have the red Foreground when the mouse is over, but the green Background is completely lost.</p>
<p>So, the question is: How do I tell WPF NOT to completely wipe out all styling that came from above just because I have a simple, non-conflicting, oh so tiny style added to a control somewhere?</p>
http://stackoverflow.com/questions/356194/wpf-datatrigger-where-value-is-not-null7WPF DataTrigger Where Value IS ***NOT*** Null?Timothy Khouri2008-12-10T14:19:17Z2009-10-16T13:02:38Z
<p>I know that I can make a setter that checks to see if a value is NULL and do something. Example:</p>
<pre><code><TextBlock>
<TextBlock.Style>
<Style>
<Style.Triggers>
<DataTrigger Binding="{Binding SomeField}" Value="{x:Null}">
<Setter Property="TextBlock.Text" Value="It's NULL Baby!" />
</DataTrigger>
</Style.Triggers>
</Style>
</TextBlock.Style>
</TextBlock>
</code></pre>
<p>But how can I check for a "not" value... as in "NOT NULL", or "NOT = 3"? Is that possible in XAML?</p>
<p>Thanks!</p>
<p><strong>RESULTS:</strong> Thanks for your answers... I knew I could do a value converter (which means I would have to go in code, and that would not be pure XAML as I hoped for). However, that does answer the question that effectively "no" you can't do it in pure XAML. The answer selected, however, shows probably the best way to <em>create</em> that kind of functionality. Good find.</p>
<p>Thanks again,
-Timothy</p>
http://stackoverflow.com/questions/1389995/clickonce-how-do-i-pass-a-querystring-value-to-my-app-through-the-installer0ClickOnce: How do I pass a querystring value to my app *through the installer*?Timothy Khouri2009-09-07T16:00:27Z2009-09-28T11:09:50Z
<p>My company currently builds separate MSI's for all of our clients, even though the app is 100% the same across the board (with a single exception, an ID in the app.config).</p>
<p>I would like to show them that we can publish in once place with ClickOnce, and simply add a query string parameter for each client's installer.</p>
<p>Example: <strong><a href="http://mysite.com/setup.exe?ID=1234-56-7890" rel="nofollow">http://mysite.com/setup.exe?ID=1234-56-7890</a></strong></p>
<p>The issue that I'm having is that the above ("ID=1234...") is not being passed along to the "myapplication.application". What is happening instead is, the app is being installed successfully, and it is running the first time with an activation context, but the "ActivationUri" does not contain any query string values.</p>
<p>Is there a way to pass query string values <em>FROM THE INSTALLER URL</em> to the application's launch URL? If so, how?</p>
http://stackoverflow.com/questions/1389995/clickonce-how-do-i-pass-a-querystring-value-to-my-app-through-the-installer/1486508#14865080Answer by Timothy Khouri for ClickOnce: How do I pass a querystring value to my app *through the installer*?Timothy Khouri2009-09-28T11:09:50Z2009-09-28T11:09:50Z<p>After much searching (and discussing), the answer is simply that the current version of ClickOnce doesn't work that way. The installer does not pass the URL onto the application up it's first run.</p>
<p><strong>Here is what I have done for a workaround (and it works great).</strong></p>
<ul>
<li><p>Change my setup package to have all of the required files uncompressed and loose (as apposed to using a CAB file, or embedding them in the installer).</p></li>
<li><p>Make an ASP.NET application (using Routing for URL handling) that listens for a request to "mysite.com/Installer/00123/Setup.exe"</p>
<ul>
<li>Note: the route should listen for "/Installer/{ID}/*" where {ID} is 5 digits.</li>
<li>There is actually no directory called "00123", but rather, I'm using ASP.NET Routing to pickup those requests and then I map it to my actual directory that has the installer file in it.</li>
</ul></li>
<li><p>I then hijack the request (parse the setup.exe to find the embedded URL that tells the installer program where to find the rest of the files... I then replace "/00000/" with the request URL that the user went to - in this case "00123".</p>
<ul>
<li>As each file is being requested, I know which "version" of the file to send, because the ClickOnce Installer will be looking for "mysite.com/Installer/00123/SomeFile.dll" (or whatever).</li>
</ul></li>
</ul>
<p>Instead of using a 5-digit ID, you could use a GUID... it's up to you.</p>
<p>This solution works great for our organization... we currently have 37 clients who require unique customizations to their installer package, but we only have to actually build and publish <strong>ONE</strong> installer package and simply use the hijack method above.</p>
<p>At this point we have placeholders that we swap out so that it's easy to customize installers for as many clients as we want.</p>
<p>Example: in the app.config file we have displayName="{OrgName}" which is automatically replaced by one of the values in the database.</p>
http://stackoverflow.com/questions/1454331/anchors-and-regular-links-styling/1454432#14544321Answer by Timothy Khouri for anchors and regular links - stylingTimothy Khouri2009-09-21T13:08:12Z2009-09-21T13:08:12Z<p>Drop the "anchor" class... I think what you want is this:</p>
<pre><code>.text
{
color: #000;
}
.text a
{
color: #ea2026; /*red*/
}
.text h3 a, .text h3 a:hover
{
color: #a9a18c; /*gray*/
text-decoration: none;
}
</code></pre>
http://stackoverflow.com/questions/1432431/adding-meta-tag-programatically-in-c/1432482#14324823Answer by Timothy Khouri for Adding Meta Tag Programatically in c#Timothy Khouri2009-09-16T11:49:46Z2009-09-16T11:49:46Z<p>Or you could just put your meta-tag in the header, with an ID and a runat="server"... then in the code behind say</p>
<pre><code>myMetaTag.Content = "noindex,follow";
</code></pre>
<p>or</p>
<pre><code>myMetaTag.Visible = false;
</code></pre>
<p>or whatever you'd like.</p>
http://stackoverflow.com/questions/1413058/tricky-sql-statement-over-3-tables/1413076#14130760Answer by Timothy Khouri for Tricky SQL statement over 3 tablesTimothy Khouri2009-09-11T20:23:55Z2009-09-11T20:23:55Z<p>What is the result schema going to look like? - If you only want the minimal columns that are in all 3 tables, then it's easy, you would just UNION the results:</p>
<pre><code>SELECT Date, User, Amount from t1 where user = 'me'
UNION
SELECT Date, User, Amount from t2 where user = 'me'
UNION
SELECT Date, User, Amount from t3 where user = 'me'
</code></pre>
http://stackoverflow.com/questions/1166246/jquery-how-do-i-simulate-drag-and-drop-in-code0jQuery: How Do I simulate Drag and Drop in Code?Timothy Khouri2009-07-22T15:47:55Z2009-09-06T23:00:01Z
<p>EDIT: Here's a link to show you my sample code: <a href="http://www.singingeels.com/jqtest/" rel="nofollow">http://www.singingeels.com/jqtest/</a></p>
<p>I have a very simple page that references jquery-1.3.2.js, ui.core.js (latest version) and ui.draggable.js (also latest version).</p>
<p>I have a div that I can drag around very easily (using the mouse of course):</p>
<pre><code><div id="myDiv">hello</div>
</code></pre>
<p>and then in JavaScript:</p>
<pre><code>$("#myDiv").draggable();
</code></pre>
<p>This is works perfectly. But, I need to be able to simulate a 'drag and drop' using code alone. <strong>I have it mostly working, but the problem is that the events that are firing are the placeholder events</strong>.</p>
<p>If you open "ui.core.js" and scroll to the bottom... you'll see this:</p>
<pre><code>// These are placeholder methods, to be overriden by extending plugin
_mouseStart: function(event) { },
_mouseDrag: function(event) { },
_mouseStop: function(event) { },
_mouseCapture: function(event) { return true; }
</code></pre>
<p>Why aren't the events being extended properly in my simulation, but when you click down with the mouse, they are? - Any ideas on how to force the _mouseDrag: property to obey the overriding extension in "ui.draggable.js"?</p>
<p>Solving this would be huge - and I plan to show the major benefits later.</p>
<p>Thanks,
-Timothy</p>
<p>EDIT: Here's a link to show you my sample code: <a href="http://www.singingeels.com/jqtest/" rel="nofollow">http://www.singingeels.com/jqtest/</a></p>
<p>EDIT 2: Click that link above and view-source... you'll see what I'm trying to do. Here's a snippet:</p>
<pre><code>$(document).ready(function() {
var myDiv = $("#myDiv");
myDiv.draggable();
// This will set enough properties to simulate valid mouse options.
$.ui.mouse.options = $.ui.mouse.defaults;
var divOffset = myDiv.offset();
// This will simulate clicking down on the div - works mostly.
$.ui.mouse._mouseDown({
target: myDiv,
pageX: divOffset.left,
pageY: divOffset.top,
which: 1,
preventDefault: function() { }
});
});
</code></pre>
http://stackoverflow.com/questions/492339/can-i-set-parameters-per-stored-procedure-higher-than-2100-in-sql-server-2005-01Can I set "Parameters per stored procedure" higher than 2100 in SQL Server 2005/08?Timothy Khouri2009-01-29T16:25:06Z2009-07-23T12:06:42Z
<p>There is a hard limit of the number of parameters any single SQL statement can have, and that is 2100 (for SQL Server 2005), or 1024 (for SQL Server 2000).</p>
<p>Does anyone know of a way to increase that number?</p>
<p>If you'd like to know "why" (as I would be dying of curiosity myself), the ansewr is in this:</p>
<pre><code>MyL2SDataContext.Accounts.Where(acct=> selectedAccountIDs.Contains(acct.ID))...
</code></pre>
<p>Thanks,</p>
http://stackoverflow.com/questions/326514/is-mef-microsofts-version-of-lua/326593#3265933Answer by Timothy Khouri for Is MEF Microsoft's version of Lua?Timothy Khouri2008-11-28T20:26:16Z2009-07-06T22:56:53Z<p>MEF has nothing to do with Lua, and is nothing like Lua.</p>
<p>MEF is a framework for extending (basically, an awesome plugin framework).</p>
<p>Lua is a very cool scripting language.</p>
<p>"Both allow you to register methods and deploy as you need." That sentence applies to C, C++, C#, VB, SQL, DI Frameworks, JavaScript, General Motors, Ford, Hospitals...</p>
http://stackoverflow.com/questions/824641/can-someone-explain-how-a-daylightsavingsrule-can-have-a-startmonth-after-its0Can someone explain how a DaylightSavingsRule can have a "StartMonth" after it's "EndMonth"?Timothy Khouri2009-05-05T12:28:41Z2009-06-25T23:15:52Z
<p>Using C# (the .NET framework), I'm looping through all the TimeZones and their AdjustmentRules... and for "Mauritius Standard Time" {(GMT+04:00) Port Louis)} - the adjustment rule is as follows:</p>
<pre><code>IsFixed = false;
DaylightTransitionStart.Month = 10;
DaylightTransitionEnd.Month = 1;
</code></pre>
<p>From what I understand, 'IsFixed=false' means that I do <em>not</em> use the "StartDate" and "EndDate" fields... but rather, I need to use the DaylightTransitionStart and End to dynamically determine if the time is in daylight time or not.</p>
<p><strong>THE PROBLEM here is that, for about 30 transition rules, the "StartMonth" is AFTER the "EndMonth"</strong></p>
<p>How can DaylightSavingsTime <em>start</em> in 'October 2008' and end in 'January 2008'?</p>
<p>Please help me to understand this... once I get past this hurdle, I should have a complete "convert any time to and from UTC with any time zone for all history" SQL function written.</p>
http://stackoverflow.com/questions/371435/printing-previewing-wpf-richtextbox-applicationcommands-printpreview0Printing/Previewing WPF RichTextBox - ApplicationCommands.PrintPreview?Timothy Khouri2008-12-16T14:19:36Z2009-06-16T21:00:01Z
<p>I'm really loving the WPF RichTextBox, and all of the out-of-the-box functionality it comes with... but printing is something that I'm having trouble with. I <em>can</em> print (from code) using a PrintDialog and passing in my RichTextBox as a Visual (or by using the "Document")...</p>
<p>But my question is, is there a simple way to use the application commands:</p>
<ul>
<li>ApplicationCommands.Print</li>
<li>ApplicationCommands.PrintPreview</li>
</ul>
<p>With a WPF RichTextBox? Also, how would I go about letting the user change the page layout and such?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/965409/how-do-i-reference-a-subset-or-cells-in-an-excel-named-range0How do I reference a "subset" or cells in an Excel Named Range?Timothy Khouri2009-06-08T15:19:15Z2009-06-09T01:46:42Z
<p>I have a named range in Excel (that was created do to making a Web Query in Excel)... how do I get the sum of just the "Amount" column?</p>
<p>Example: This works: =SUM(MyRange)</p>
<p>The problem is, that sums EVERY numeric looking field (so "Amount" and "UserID" are BOTH being included in the SUM function).</p>
<p>What I need is this: =SUM(MyRange["Amount"]) ... but I can't seem to find how to do something like that.</p>
<p>Thoughts?</p>
http://stackoverflow.com/questions/956681/how-do-i-save-an-excel-2007-file-in-ooxml-xml-text-so-that-i-can-modify-it-in0How do I save an Excel 2007 file in "OOXML" (xml text) so that I can modify it in code?Timothy Khouri2009-06-05T15:57:38Z2009-06-05T17:10:15Z
<p>I made an Excel file with data on tab 2, and a chart on tab 1. This is for a web-portal where investors can download the excel document with ubber graphics and the like, but with <strong>their</strong> data.</p>
<p>So, the 'simple' fix in my mind is to save the Excel document as "OOXML" and just replace the data items. However, it seems that the document is encrypted (at least... not readable in notepad).</p>
<p>How do I get to where I need to go here?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/956681/how-do-i-save-an-excel-2007-file-in-ooxml-xml-text-so-that-i-can-modify-it-in/957024#9570240Answer by Timothy Khouri for How do I save an Excel 2007 file in "OOXML" (xml text) so that I can modify it in code?Timothy Khouri2009-06-05T17:10:15Z2009-06-05T17:10:15Z<p>Found my solution... using the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c6e744e5-36e9-45f5-8d8c-331df206e0d0&DisplayLang=en" rel="nofollow">Office Open XML SDK</a> and googling / playing with it for a while.</p>
http://stackoverflow.com/questions/558054/how-to-know-if-a-field-is-numeric-in-linq-to-sql/950162#9501621Answer by Timothy Khouri for How to know if a field is numeric in Linq To SQLTimothy Khouri2009-06-04T12:17:45Z2009-06-04T12:17:45Z<p>Open up your DBML (LINQ-to-SQL) file in an XML editor, go down to the end of the file and paste this just before the '</Database>' node:</p>
<pre><code><Function Name="ISNUMERIC" IsComposable="true">
<Parameter Name="Expression" Parameter="Expression" Type="System.String" DbType="NVarChar(4000)" />
<Return Type="System.Boolean" DbType="BIT NOT NULL"/>
</Function>
</code></pre>
<p>Now, you can use the <em>already-in-SQL</em> function called "ISNUMERIC". Here's how:</p>
<pre><code>var blah = myDataContext.Accounts.Where(account=>
myDataContext.ISNUMERIC(account.ID) == true);
</code></pre>
<p>There you go :)</p>
<p>You may also find these functions useful to copy:</p>
<pre><code><Function Name="RAND" IsComposable="true">
<Return Type="System.Double" DbType="Float NOT NULL" />
</Function>
<Function Name="NEWID" IsComposable="true">
<Return Type="System.Guid" DbType="UniqueIdentifier NOT NULL" />
</Function>
</code></pre>
http://stackoverflow.com/questions/934497/how-can-i-get-cpu-usage-and-or-ram-usage-of-a-thread-in-c-managed-code3How can I get CPU usage and/or RAM usage of a *THREAD* in C# (managed code)?Timothy Khouri2009-06-01T11:45:15Z2009-06-01T12:34:34Z
<p>I know how to get CPU usage and memory usage for a process, but I was wondering how to get it on a per-thread level. If the best solution is to do some P-Invoking, then that's fine too.</p>
<p>Example of what I need:</p>
<pre><code>Thread myThread = Thread.CurrentThread;
// some time later in some other function...
Console.WriteLine(GetThreadSpecificCpuUsage(myThread));
</code></pre>
http://stackoverflow.com/questions/858897/what-is-the-best-way-to-replace-text-in-a-file-using-c-net4What is the BEST way to replace text in a File using C# / .NET?Timothy Khouri2009-05-13T16:14:42Z2009-05-22T18:33:08Z
<p>I have a text file that is being written to as part of a very large data extract. The first line of the text file is the number of "accounts" extracted.</p>
<p>Because of the nature of this extract, that number is not known until the very end of the process, but the file can be large (a few hundred megs).</p>
<p>What is the BEST way in C# / .NET to open a file (in this case a simple text file), and replace the data that is in the first "line" of text?</p>
<p><strong>IMPORTANT NOTE</strong>: - I do not need to replace a "fixed amount of bytes" - that would be easy. The problem here is that the data that needs to be inserted at the top of the file is variable.</p>
<p><strong>IMPORTANT NOTE 2</strong>: - A few people have asked about / mentioned simply keeping the data in memory and then replacing it... however that's completely out of the question. The reason why this process is being updated is because of the fact that sometimes it crashes when loading a few gigs into memory.</p>
http://stackoverflow.com/questions/372383/wcf-service-in-asp-net-compat-mode-what-is-the-simplest-way-to-pass-username-pa2WCF Service in ASP.NET Compat Mode - What is the Simplest Way to Pass Username/PasswordTimothy Khouri2008-12-16T19:27:26Z2009-05-22T11:51:44Z
<p>I have a web service (WCF or ASMX doesn't matter)... I have made a Console application, right-clicked, added service referrence. So far, so good.</p>
<p>However, I cannot for the life of me pass "security" credentials across to my service. This is my client code:</p>
<pre><code>var client = new MyClient();
client.ClientCredentials.UserName.UserName = "bob";
client.ClientCredentials.UserName.Password = "123!!";
client.HelloWorld();
client.Close();
</code></pre>
<p>But on the server, no matter what I do (aspnetcompant mode on and off, wcf service, asmx service, custom http handlers, etc)... I can't find 'bob:123!!' anywhere. Not in headers, not in HttpContext.Current.User.Identiy.Name, not in Thread.CurrentPrincipal... nothing.</p>
<p>What am I missing here?</p>
http://stackoverflow.com/questions/253431/is-it-appropriate-to-use-wingdings-fonts-in-a-windows-forms-or-wpf-app2Is it appropriate to use "Wingdings" fonts in a Windows Forms or WPF app?Timothy Khouri2008-10-31T13:20:41Z2009-05-12T12:20:32Z
<p>I have a WPF control, that has a list of "Investors", and in the right column of the list, a "Delete" button.</p>
<p>I could either waste some time making an image of an "x" in photoshop. Or, I could just use Wingdings font and set the content to "Õ" (which makes a cool looking delete button).</p>
<p>Is this appropriate? My thinking is... while not every font family is on every computer, I'm pretty sure that it's safe to say that if you're running my WPF Windows Forms program, then you have Wingdings.</p>
<p>What do you think? Please try to give statistics (not just feelings) on the matter. Should I worry about font size? etc.</p>
http://stackoverflow.com/questions/824694/linq-what-is-the-type-of-a-result/824702#8247020Answer by Timothy Khouri for LINQ: what is the type of a result?Timothy Khouri2009-05-05T12:45:36Z2009-05-05T12:45:36Z<p>In your first example... mouse-over the word "var" in Visual studio, and it will display the "Type".</p>
<p>If it's something like 'anonymouse{blahblah}'... then you'll likely have to create a class that you want to convert it to so that you can use it as a function parameter.</p>
http://stackoverflow.com/questions/787354/how-to-detect-exact-length-in-regex/787378#7873784Answer by Timothy Khouri for How to detect exact length in regexTimothy Khouri2009-04-24T20:08:50Z2009-04-24T20:08:50Z<p>EDIT: I'm putting my original answer a bit lower down... I think I read you too exact. I think what you're trying to say is that you don't want to allow any more than 10 digits. So, just add a "$" at the end to specify the end of the regex.</p>
<p>Example: @"^\s*(?[0-9]{10})$"</p>
<p>ORIGINAL ANSWER BELOW:</p>
<p>string myRegexString = @"(?!(^\d{11}$) ... youre regex here ... )";</p>
<p>That reads "while ahead is not, start, 11 digits, end"</p>
http://stackoverflow.com/questions/1900450/wpf-how-to-prevent-a-control-from-stealing-a-key-gesture/1900486#1900486Comment by Timothy Khouri on WPF: How to prevent a control from stealing a key gesture?Timothy Khouri2009-12-14T16:52:00Z2009-12-14T16:52:00ZTo be honest, I'm not very good with InputGestures myself (used them maybe once and I'm not that strong). My point was just that you can do it with the PreviewKeyDown. I do know that you can absolutely come up with your own commands and use the gestures... I've done it, but only in a demo and a long time ago. - Maybe someone smarter than me will comment soon :)http://stackoverflow.com/questions/1900299/linq-to-sql-order-by-aggregateComment by Timothy Khouri on Linq to SQL order by aggregateTimothy Khouri2009-12-14T11:37:50Z2009-12-14T11:37:50ZWow... some of these answers are highly over complicated. You can do this in one line by chaining a couple of simple methods if you want.http://stackoverflow.com/questions/1900213/c-fire-and-forget-call-inside-a-webmethodComment by Timothy Khouri on C# Fire and Forget call inside a WebMethodTimothy Khouri2009-12-14T11:19:46Z2009-12-14T11:19:46ZBy the way... in your example as it is now, you are NEVER calling the ProcessNewBusiness method in the "InDisasterMode" case. (try to find that method name between lines 5 to 11).http://stackoverflow.com/questions/1900213/c-fire-and-forget-call-inside-a-webmethod/1900284#1900284Comment by Timothy Khouri on C# Fire and Forget call inside a WebMethodTimothy Khouri2009-12-14T11:17:09Z2009-12-14T11:17:09ZYou don't really need to build your own "AsyncHelper" class... just use ThreadPool.QueueUserWorkItemhttp://stackoverflow.com/questions/1626426/try-finally-mystery/1626444#1626444Comment by Timothy Khouri on try finally mysteryTimothy Khouri2009-10-26T18:32:49Z2009-10-26T18:32:49ZI get what you're saying... it was just misleading as to the reason "Why?".http://stackoverflow.com/questions/1626426/try-finally-mystery/1626444#1626444Comment by Timothy Khouri on try finally mysteryTimothy Khouri2009-10-26T18:27:06Z2009-10-26T18:27:06ZThis is incorrect... you're making it seem that the finally code isn't firing (especially now that you've posted sample code making it look like that's true).http://stackoverflow.com/questions/1588718/in-wpf-how-do-i-prevent-my-style-from-being-overriden/1588815#1588815Comment by Timothy Khouri on In WPF, how do I prevent my style from being overriden?Timothy Khouri2009-10-19T17:50:44Z2009-10-19T17:50:44Z@Akash - Your reasoning sounds good, but the bottom line comes down to this. Do I have to tell all 15 developers on my development team to make sure to add "ooh, please don't forget to inhert!" to every control that they add functional styling to? - That's horrible and is more work than it's worth.http://stackoverflow.com/questions/1588718/in-wpf-how-do-i-prevent-my-style-from-being-overriden/1588815#1588815Comment by Timothy Khouri on In WPF, how do I prevent my style from being overriden?Timothy Khouri2009-10-19T17:48:56Z2009-10-19T17:48:56Z@Guy - I'd like it if it was cascading... but it's not. Trying to add more styles 100% OVERRIDES THE PREVIOUS STYLES. So, to recap, they don't cascade (aka append), they override (aka replace).http://stackoverflow.com/questions/1588718/in-wpf-how-do-i-prevent-my-style-from-being-overriden/1588815#1588815Comment by Timothy Khouri on In WPF, how do I prevent my style from being overriden?Timothy Khouri2009-10-19T14:13:02Z2009-10-19T14:13:02ZTrue, but is basically like saying "you have to re-add styles to everything you want to override". :( - Good answer, but I hate that solution.http://stackoverflow.com/questions/1389995/clickonce-how-do-i-pass-a-querystring-value-to-my-app-through-the-installer/1474163#1474163Comment by Timothy Khouri on ClickOnce: How do I pass a querystring value to my app *through the installer*?Timothy Khouri2009-09-28T10:53:33Z2009-09-28T10:53:33ZIt's true that the URL will be sent to the application, but not to the installer.http://stackoverflow.com/questions/1454331/anchors-and-regular-links-styling/1454435#1454435Comment by Timothy Khouri on anchors and regular links - stylingTimothy Khouri2009-09-21T14:57:48Z2009-09-21T14:57:48ZI would like to go on record as to eating my words :)http://stackoverflow.com/questions/1454331/anchors-and-regular-links-styling/1454435#1454435Comment by Timothy Khouri on anchors and regular links - stylingTimothy Khouri2009-09-21T13:11:02Z2009-09-21T13:11:02ZI think you missed the point 100%... he wants anchors in the page so as to allow navigation... how would taking out the "a" tag help?http://stackoverflow.com/questions/1454331/anchors-and-regular-links-stylingComment by Timothy Khouri on anchors and regular links - stylingTimothy Khouri2009-09-21T13:10:20Z2009-09-21T13:10:20ZThanks for the clarification... it's what I figured. See my response below (and don't add arbitrary classes when you don't need to :P)http://stackoverflow.com/questions/1454331/anchors-and-regular-links-stylingComment by Timothy Khouri on anchors and regular links - stylingTimothy Khouri2009-09-21T12:58:43Z2009-09-21T12:58:43ZUsing [href] instead of re-classing your anchors is good (and clear to me), but I just want to know what you want as an end result for colors and style... then we can write the any-browser, best CSS for the job.http://stackoverflow.com/questions/1454331/anchors-and-regular-links-stylingComment by Timothy Khouri on anchors and regular links - stylingTimothy Khouri2009-09-21T12:51:02Z2009-09-21T12:51:02ZWhat exactly do you want? - If you could sum up your color / effect needs in one or two sentences, that would help. example: "Ultimately, I want all anchors red, but if they don't have a href I want them purple" - or whatever :)