User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T07:09:56Zhttp://stackoverflow.com/feeds/user/5592http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1784045/connection-pooling-and-multiple-connection-strings0Connection Pooling and Multiple Connection Stringstroylar2009-11-23T15:55:18Z2009-11-23T16:00:28Z
<p>An ASP.NET 3.5 application has two connection strings:</p>
<pre><code>Data Source=RedDB;Initial Catalog=Red;User Id=myuser;Password=pas;Max Pool Size=50;Min Pool Size=1
Data Source=BlueDB;Initial Catalog=Blue; User Id=myuser;Password=pas;Max Pool Size=375;Min Pool Size=2
</code></pre>
<p>Suppose the RedDB connection has a stored procedure that is hanging indefinitely due to a bad index. </p>
<ol>
<li><p>If the application does not close the RedDB connection properly (viz., with a try/finally block), how quickly do the pool connections get recycled as users are hitting the site?</p></li>
<li><p>If the RedDB connection pool is maxed out because of users getting the SQL timeout, does that have ANY impact on the BlueDB, or is that a completely isolated connection pool?</p></li>
</ol>
http://stackoverflow.com/questions/922648/response-redirect-not-always-redirecting1Response.Redirect not always redirectingtroylar2009-05-28T19:08:18Z2009-11-10T04:00:02Z
<p>We have a simple Response.Redirect on a page that is working inconsistently (IIS 6.0). Most of the time it redirects correctly, but we're getting some users that are complaining that instead of redirecting, they are getting the "302 Object moved to here" page. The page displays the header information with the correct location. If you click "here," it redirects to the correct page.</p>
<p>Any ideas why it would display the 302 message sporadically?</p>
http://stackoverflow.com/questions/1167306/deleting-files-via-sftp0Deleting files via SFTPtroylar2009-07-22T18:40:45Z2009-10-27T13:10:19Z
<p>Are there any C# open-source components that allow me to delete files via SFTP?</p>
http://stackoverflow.com/questions/1613477/what-is-the-best-html-javascript-framework-for-a-flex-application0What is the best HTML/JavaScript Framework for a Flex Application?troylar2009-10-23T13:35:17Z2009-10-23T17:00:03Z
<p>We're currently building a Flex application using the PureMVC framework with a shell.swf which loads/unloads modules dynamically. We're experiencing issues with memory and we're looking to replace the shell.swf with a JavaScript-based loader.</p>
<p>Two questions:</p>
<ol>
<li><p>What would be a good framework to dynamically load the Flex components and allow the modules to communicate between each other?</p></li>
<li><p>Would dynamically loading/unloading the modules via JavaScript take care of the typical memory problems associated with Flex/Flash applications?</p></li>
</ol>
http://stackoverflow.com/questions/1410509/online-developer-testing-for-pre-screening-candidates7Online Developer Testing for Pre-Screening Candidatestroylar2009-09-11T12:12:05Z2009-09-14T23:20:24Z
<p>Are there are any good online developer testing sites for pre-screening candidates? I know the freelance site ELance has a "certification" system where candidates can take tests on various technologies. It won't be 100% accurate, but it at least might expose the less experienced candidates.</p>
http://stackoverflow.com/questions/58807/can-a-programmer-become-a-decent-graphic-designer14Can a Programmer Become a Decent Graphic Designer?troylar2008-09-12T12:23:33Z2009-09-12T20:56:11Z
<p>As a developer completely void of artistic skills, it's frustrating building applications from scratch. I know there are several open-source template web sites to draw from, but are there any good books/tutorials/web sites that can turn a poor, artistically-challenged developer into a moderately-capable graphic designer?</p>
http://stackoverflow.com/questions/1383498/binding-a-flex-component-to-a-class-function0Binding a Flex component to a class functiontroylar2009-09-05T14:49:05Z2009-09-05T15:07:28Z
<p>I have several components where I want to enable buttons based on passing a username to a function. I want to dynamically bind the "enabled" property on a button so that if the "somethingChanged" event fires, a button may become enabled or disabled.</p>
<p>But, I'm not sure where to fire the "somethingChanged" event. It's possible that I may need to fire the "somethingChanged" event from several places in the application. Is this possible with a bound static function?</p>
<p>Am I going about this the right way or is there a better solution?</p>
<p><strong>EventManager.as</strong></p>
<pre><code>public class EventManager():void
{
[Bindable(event="somethingChanged")]
public static function hasAccess(myVal:String):Boolean
{
}
}
</code></pre>
<p><strong>testform1.mxml</strong></p>
<pre><code><s:Button id="testButton1" enabled="{EventFunction.hasAccess("john")}" />
<s:Button id="testButton2" enabled="{EventFunction.hasAccess("mary")}" />
<s:Button id="testButton3" enabled="{EventFunction.hasAccess("beth")}" />
</code></pre>
<p><strong>testform2.mxml</strong></p>
<pre><code><s:Button id="testButton4" enabled="{EventFunction.hasAccess("tom")}" />
<s:Button id="testButton5" enabled="{EventFunction.hasAccess("bill")}" />
<s:Button id="testButton6" enabled="{EventFunction.hasAccess("jerry")}" />
</code></pre>
http://stackoverflow.com/questions/1281835/how-can-i-prevent-an-error-in-my-perl-script-from-terminating-the-script0How can I prevent an error in my Perl script from terminating the script?troylar2009-08-15T12:44:28Z2009-08-15T19:09:28Z
<p>I have a simple Perl script which runs as a Linux daemon using an infinite loop. It connects to a database every 10 seconds to execute a process.</p>
<pre><code>while (1)
{
# THIS LINE WILL KILL THE SCRIPT IF IT FAILS
my $DB=DBI->connect("dbi:Sybase:server=myserver","user","password");
. . . do something . . .
sleep (10);
}
</code></pre>
<p>I have two questions:</p>
<ul>
<li>If the DB is unavailable, how I can keep the script running?</li>
<li>Can I add an exception handler to send me an email or log an error?</li>
</ul>
http://stackoverflow.com/questions/1278271/can-i-iterate-through-each-of-my-sharedobjects-in-actionscript-30Can I iterate through each of my SharedObjects in ActionScript 3?troylar2009-08-14T14:43:20Z2009-08-15T10:55:59Z
<p>Is it possible to execute a "foreach" through each of my SharedObjects?</p>
<p>Something like this . . .</p>
<pre><code>_so = SharedObject.getLocal("test","/");
foreach (var item:Object in _so)
{
// print key name and value
}
</code></pre>
http://stackoverflow.com/questions/509435/flex-net-web-service-and-numeric-enums0Flex, .NET Web Service and Numeric Enumstroylar2009-02-03T23:19:41Z2009-08-14T23:49:54Z
<p>We're using Flex 3 to consume a .NET Web Service. The web service uses an enum and we use Flex Builder to automatically generate the web service objects. Here is the .NET web service enum definition:</p>
<pre><code> /// <summary>
/// User type
/// </summary>
public enum UserTypeEnum
{
Admin = 1,
User = 3,
Manager = 4
}
</code></pre>
<p>When Flex generates the web service objects, it treats them as strings instead of integer values.</p>
<pre><code>[Inspectable(category="Generated values", enumeration="Admin, User, Manager", type="String")]
public var _UserTypeEnum:String;public function toString():String
{
return _UserTypeEnum.toString();
}
</code></pre>
<p>When we get data from the web service, any property that uses this enumeration is Null instead of 'admin' or '1'. Is there any way to make this work?</p>
http://stackoverflow.com/questions/1133408/continue-in-nested-while-loops3Continue in nested while loopstroylar2009-07-15T19:20:26Z2009-07-23T15:37:08Z
<p>In this code sample, is there any way to continue on the outer loop from the catch block?</p>
<pre><code>while
{
// outer loop
while
{
// inner loop
try
{
throw;
}
catch
{
// how do I continue on the outer loop from here?
continue;
}
}
}
</code></pre>
http://stackoverflow.com/questions/618901/why-does-my-tfs-workspace-path-keep-remapping-itself0Why does my TFS workspace path keep remapping itself?troylar2009-03-06T13:44:53Z2009-07-03T17:37:43Z
<p>We're using Visual Studio 2008/TFS 2008.</p>
<p>We have a small team of developers and for some reason, periodically, when any of us "Get Latest," one of our paths remaps to a different path on it's own. This causes the "Get Latest" to start deleting files, because the path has changed. It's the same path every time that gets remapped to the wrong path.</p>
<ol>
<li>Where are workspace definitions stored?</li>
<li>Is there something we may have checked into TFS that's causing this?</li>
</ol>
http://stackoverflow.com/questions/1070760/javascript-function-in-href-vs-onclick3JavaScript Function in HREF vs OnClick()troylar2009-07-01T18:59:35Z2009-07-02T02:29:08Z
<p>I want to run a simple JavaScript function on a click, that is NOT a redirect. Is there any difference or benefit between putting the JavaScript call in <code><A HREF="javascript:my_function();window.print()" ></A></code> vs. putting it in the onclick event?</p>
http://stackoverflow.com/questions/58107/how-to-find-that-rock-star-junior-developer27How to Find that Rock Star Junior Developer?troylar2008-09-12T01:29:38Z2009-06-23T06:18:33Z
<p>It's a fairly straight-forward process to interview a veteran programmer with 10+ years of programming experience. On the other hand, sometimes you just need a really talented junior developer. What do you look for--and how do you interview to find that "diamond in the rough," especially when the applicant is fresh out of college with a very light resume?</p>
http://stackoverflow.com/questions/575253/do-i-have-to-use-a-solution-file-with-a-team-build-definition1Do I have to use a solution file with a Team Build definition?troylar2009-02-22T17:05:34Z2009-05-29T11:21:27Z
<p>Our application uses a combination of ASP.NET and Flex platforms.</p>
<p>I am able to successfully use the build service to build and deploy the .NET web site. That works fine. However, we also have our ActionScript files in TFS and I've created a batch file to successfully compile the ActionScript from the command-line.</p>
<p>I want to create two separate build definitions for the ASP.NET and Flex compilation. Flex obviously doesn't have an SLN file--can I create a build definition file from scratch to support the Flex compile batch file without a solution file? The tasks are fairly simple to create (see below), but I've never built a customized Team Build script without using the Create wizard--and the Create wizard expects you to supply a solution file, which I don't have.</p>
<p>My build script would be very straight-forward:</p>
<ol>
<li>Get the latest version of the ActionScript files</li>
<li>Run the ActionScript compile batch file</li>
<li>Copy the ActionScript files to the deploy folder</li>
</ol>
http://stackoverflow.com/questions/608449/why-does-my-tab-character-convert-to-a-space-in-cookie0Why does my tab character convert to a space in cookie?troylar2009-03-03T22:16:51Z2009-05-11T23:59:46Z
<p>I'm using the Context.Request.Cookies object to read/write cookies.</p>
<p>I'm simply writing a single line of text that is delimited by tabs ('\t'). Immediately when I read back in the cookie through the Visual Studio 2008 debugger, the cookie object contains the string value, but all the tab characters are converted to spaces.</p>
<p>When I publish to production, it doesn't seem to convert the tabs. What would cause this in VS? Could this be happening on certain machines in production?</p>
http://stackoverflow.com/questions/842121/how-to-improve-browser-detection-with-request-context-browser-object0How To Improve Browser Detection with Request.Context.Browser Object?troylar2009-05-08T22:41:25Z2009-05-09T15:04:55Z
<p>I'm using an HTTP handler in .NET 2.0 and need to detect browser and version. How do I implement <a href="http://owenbrady.net/browsercaps/" rel="nofollow">Ocean's Browsercaps</a> in .NET 2.0?</p>
http://stackoverflow.com/questions/348688/how-to-automate-sql-backup-on-a-shared-hosted-server0How to automate SQL backup on a shared hosted server?troylar2008-12-08T05:02:18Z2009-05-09T05:12:32Z
<p>I'm using a hosting service which allows me to backup my SQL 2008 database and download the BAK file via a web interface only--and I have access to the database via Management Studio. I can execute the backup command from Management Studio,but I don't have rights to the path where the backups are located. Is there any way via SQL or script to pull down a full copy of the database--can I generate the script required to recreate the database using code? It's only a few thousand records.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/344024/how-to-use-app-config-with-visual-studio-add-in1How to use app.config with Visual Studio add-in?troylar2008-12-05T14:43:55Z2009-05-07T04:22:03Z
<p>I'm building a simple VS2008 add-in. What is the best practice for storing custom run-time settings? Where do you store the app.config and how do you access it from the add-in?</p>
http://stackoverflow.com/questions/813904/problem-setting-cookie-expiration-to-datetime-max-december-31-99991Problem setting cookie expiration to DateTime.Max (December 31, 9999)?troylar2009-05-02T01:16:51Z2009-05-02T01:46:14Z
<p>We're supporting legacy code that is dropping a cookie and setting the expiration to DateTime.MaxValue:</p>
<pre><code>HttpCookie cookie = new HttpCookie(cookieName, value);
cookie.Expires = DateTime.MaxValue;
</code></pre>
<p>It seems that on some browsers (which we are not logging), this cookie expires immediately--or may not even be getting dropped. According to MSDN, DateTime.MaxValue is December 31, 9999. Are there any browser-related issues with setting a cookie expiration to this date?</p>
<p>The correct answer would be to change the expiration date, but at this point, we can't change production code.</p>
http://stackoverflow.com/questions/513364/how-do-i-find-changesets-between-two-tfs-branches0How do I find changesets between two TFS branches?troylar2009-02-04T21:10:32Z2009-03-18T09:44:35Z
<p>Is it possible to get a list of all changesets that are different between two different TFS branches? I'm not talking about file differences.</p>
<p>I have a main code base (MAIN). I create a new branch from that called (MAIN-BRANCH). I create another branch called (RELEASE). I check-in five times to MAIN-BRANCH, then merge to MAIN.</p>
<p>I want to pull all the changeset comments that have occurred between RELEASE and MAIN.</p>
http://stackoverflow.com/questions/509854/whats-the-best-way-to-trace-log-a-net-http-handler1What's the best way to trace log a .NET HTTP handler?troylar2009-02-04T02:20:19Z2009-02-04T05:05:58Z
<p>We have a very high-performance multi-threaded .NET HTTP handler application and want to enable trace logging for debugging. I have a few questions about this:</p>
<ul>
<li>Is tracelevel the best way to toggle on/off logging?</li>
<li>If tracelevel is "off," will the tracelevel statements have any impact on performance?</li>
<li>When using an HTTP handler, how can I view the trace log real-time?</li>
<li>Is the Enterprise Library overkill for this? Does it provide any overhead?</li>
</ul>
http://stackoverflow.com/questions/59667/why-would-i-ever-pick-char-over-varchar-in-sql22Why would I ever pick CHAR over VARCHAR in SQL?troylar2008-09-12T18:15:28Z2009-01-21T00:07:14Z
<p>I realize that CHAR is recommended if all my values are fixed-width. But, so what? Why not just pick VARCHAR for all text fields just to be safe.</p>
http://stackoverflow.com/questions/447034/weird-itemrenderer-behavior0Weird ItemRenderer behaviortroylar2009-01-15T14:52:40Z2009-01-15T17:24:58Z
<p>I have a really odd issue with an ItemRenderer. I have a main.mxml container with a ViewStack. When a user logs in, the initial view contains an AdvancedDataGrid--containing some data and the ItemRenderer below--which simply displays a Delete button. When the user logs in, this AdvancedDataGrid is automatically refreshed from the database. The Delete button should be enabled or disabled based on the user's role membership.</p>
<p><strong>Scenario 1 (Logging in as an admin):</strong></p>
<ol>
<li>Admin user logs in -- datagrid view is immediately displayed and Delete button is properly <em>enabled</em> for every row</li>
<li>Logout</li>
<li>Login as a non-admin user -- Data is refreshed and all of the rows are still enabled <strong>except for one</strong>. It could be the first, second or third rows--it's completely random. It's really wierd . . .</li>
</ol>
<p>I restart my browser and follow scenario 2 . . .</p>
<p><strong>Scenario 2 (Logging in as an non-admin):</strong></p>
<ul>
<li>Non-admin user logs in -- datagrid view is immediately displayed and Delete button is properly <em>disabled</em> for every row</li>
<li>Logout</li>
<li>Login as a admin user -- All of the rows are still disabled <strong>except for one</strong>. It could be the first, second or third rows--it's completely random. Just the reverse of the first scenario.</li>
</ul>
<p><strong>INTERESTING FACT-- If I put a breakpoint in checkDeleteSecurity, it reaches it ONLY WHEN THE FIRST USER LOGS IN AND THE DATAGRID IS FIRST REFRESHED. When I logout and the next user logs in, the data grid is refreshed, but the checkDeleteSecurity breakpoint is never caught.</strong></p>
<pre><code>[Bindable]
private function checkDeleteSecurity ():Boolean
{
return (SecurityProxy.CheckSecurity(SecurityProxy.UserName));
}
<mx:LinkButton label="Delete" click="onDeleteClick()" id="lbDelete" enabled="{checkDeleteSecurity()}"/>
</code></pre>
http://stackoverflow.com/questions/445313/can-i-bind-a-flex-component-property-to-a-function0Can I bind a Flex component property to a function?troylar2009-01-15T01:18:10Z2009-01-15T15:17:28Z
<p>I want to set the <strong><em>enabled</em></strong> property on a button based on the return value of a function that has one or more parameters. How can I do this?</p>
<pre><code>private function isUserAllowed (userName:Boolean):Boolean {
if (userName == 'Tom')
return true;
if (userName == 'Bill')
return false;
}
<mx:Button label="Create PO" id="createPOButton"
enabled="<I want to call isUserAllowed ('Bill') or isUserAllowed ('Tom') here>"
click="createPOButton_Click()" />
</code></pre>
http://stackoverflow.com/questions/20910/silverlight-vs-flex/447075#4470751Answer by troylar for Silverlight vs Flextroylar2009-01-15T15:05:33Z2009-01-15T15:05:33Z<p>We went through this same issue and Flex won hands down. Our .NET developers were concerned at first, but after working so long in the pain of Ajax and JavaScript, they now LOVE and really enjoy working in Flex.</p>
<p>Here's a simple test for you . . . try to find at least 3 examples of real-world Silverlight applications (that aren't games, video players or gadgets). Then do the same for Flex.</p>
http://stackoverflow.com/questions/435527/what-does-the-flex-bindable-tag-do2What does the Flex [Bindable] tag do?troylar2009-01-12T14:14:38Z2009-01-14T05:18:26Z
<p>Meaning . . . I've seen cases where I've bound components to a [Bindable] dataProvider. When I updated the data in the dataProvider, the component doesn't reflect the change immediately. Do I need to do something to refresh the data? What event causes a component to refresh its dataProvider data?</p>
http://stackoverflow.com/questions/405073/flash-flex-error-1063-when-retrieving-sharedobject0Flash/Flex Error #1063 When Retrieving SharedObjecttroylar2009-01-01T15:47:07Z2009-01-01T20:06:03Z
<p>I have a parts application that is built on Flex 3 and I having a problem with the parts list. The parts list uses two objects:</p>
<ul>
<li>Part</li>
<li>ArrayOfPart</li>
</ul>
<p>I cache the parts list locally in a SharedObject. <strong>This has been working fine for a couple months</strong>. I added a new Boolean property to the Part class and re-imported web services (which shouldn't have affected anything) and now, <strong>I can save the ArrayOfPart SharedObject fine, but when I try to retrieve the SharedObject, I get "ArgumentError: Error #1063: Argument count mismatch on ArrayOfPart. Expected 1, got 0. AND then it DELETES my SOL file completely.</strong></p>
<p><em>(I used RegisterClass on Part and ArrayOfPart, so they both are serializable to SharedObjects)</em></p>
<p><strong>Here's the steps I followed to get the error:</strong></p>
<p><strong>Save the shared object:</strong></p>
<pre><code>so = SharedObject.getLocal("PartsList");
so.data.AllParts = AllParts;
so.flush();
</code></pre>
<p><strong>Verify the SharedObject:</strong></p>
<ul>
<li>The SharedObject <strong>PartsList.sol</strong> exists where it should</li>
<li>I opened the SharedObject file and the ArrayOfPart data looks valid</li>
</ul>
<p><strong>Restart the application and it retrieves the parts list from the SharedObject. This is the line that throws the Error #1063 and causes the sol file to be deleted:</strong></p>
<pre><code>so = SharedObject.getLocal("PartsList");
</code></pre>
<p>It looks like the data may not be well-formed when it's saved in the SharedObject? Is this possible?</p>
http://stackoverflow.com/questions/405073/flash-flex-error-1063-when-retrieving-sharedobject/405405#4054051Answer by troylar for Flash/Flex Error #1063 When Retrieving SharedObjecttroylar2009-01-01T20:06:03Z2009-01-01T20:06:03Z<p>I solved my own problem.</p>
<p>The ArrayOfPart had a constructor with a parameter. When I removed the constructor, the error went away.</p>
<p>By the way, this was Flash 9.</p>
http://stackoverflow.com/questions/377942/how-to-warn-user-of-caps-lock-enabled-in-flex-air3How to warn user of CAPS LOCK enabled in Flex/AIR?troylar2008-12-18T14:07:54Z2008-12-18T19:20:58Z
<p>Similar to the XP login screen, in Flex 3, how can I display a warning to the user in a textbox that the CAPS LOCK key is enabled?</p>
http://stackoverflow.com/questions/1410509/online-developer-testing-for-pre-screening-candidates/1410526#1410526Comment by on Online Developer Testing for Pre-Screening Candidates2009-09-11T12:31:07Z2009-09-11T12:31:07ZOddly, it seems that their test catalog doesn't show anything newer than "Office 2003" or "Windows 2000."http://stackoverflow.com/questions/1281835/how-can-i-prevent-an-error-in-my-perl-script-from-terminating-the-scriptComment by on How can I prevent an error in my Perl script from terminating the script?2009-08-15T13:38:26Z2009-08-15T13:38:26ZI won't tell if you don't. :)http://stackoverflow.com/questions/922648/response-redirect-not-always-redirectingComment by on Response.Redirect not always redirecting2009-05-29T13:38:19Z2009-05-29T13:38:19ZIt doesn't appear to be.http://stackoverflow.com/questions/922648/response-redirect-not-always-redirecting/922705#922705Comment by on Response.Redirect not always redirecting2009-05-28T20:04:42Z2009-05-28T20:04:42ZThe specific example I know for sure was Firefox 3.0.10. But, I don't know if it's affecting other browsers.http://stackoverflow.com/questions/618901/why-does-my-tfs-workspace-path-keep-remapping-itself/619027#619027Comment by on Why does my TFS workspace path keep remapping itself?2009-03-06T14:29:42Z2009-03-06T14:29:42ZYea, I can modify my workspaces. But, when I look at my workspace after the get operation, the path is changed.http://stackoverflow.com/questions/608449/why-does-my-tab-character-convert-to-a-space-in-cookieComment by on Why does my tab character convert to a space in cookie?2009-03-03T22:19:07Z2009-03-03T22:19:07ZVia QuickWatch, but when I do a split('\t'), it doesn't see the tabs either . . .http://stackoverflow.com/questions/447034/weird-itemrenderer-behavior/447553#447553Comment by on Weird ItemRenderer behavior2009-01-15T19:45:07Z2009-01-15T19:45:07ZOverriding set data did it!http://stackoverflow.com/questions/447034/weird-itemrenderer-behavior/447553#447553Comment by on Weird ItemRenderer behavior2009-01-15T18:26:55Z2009-01-15T18:26:55ZThe data property setter will be called every time the item row is bound? That's interesting. So, if I have 10 rows of data in datagrid with a Delete button in an ItemRenderer. I pull new data and only get 3 rows. Even though rows 4-10 look empty, you're saying the Delete button is still rendered?http://stackoverflow.com/questions/447034/weird-itemrenderer-behavior/447553#447553Comment by on Weird ItemRenderer behavior2009-01-15T18:20:13Z2009-01-15T18:20:13ZThat was my question . . . This was part 2 ;)http://stackoverflow.com/questions/20910/silverlight-vs-flex/21035#21035Comment by on Silverlight vs Flex2009-01-15T15:01:03Z2009-01-15T15:01:03ZActually, Jon, in all due respect, you're comparing Silverlight to Flash, not Flex, which is a typical point of confusion by Silverlight proponents. I've written an enterprise-level application in Flex (which compiled to SWF), but wouldn't even know where to begin to write a Flash app.http://stackoverflow.com/questions/445313/can-i-bind-a-flex-component-property-to-a-function/445368#445368Comment by on Can I bind a Flex component property to a function?2009-01-15T01:50:34Z2009-01-15T01:50:34ZBut where do I pass in the parameter to the function isUserAllowed? I want to call the function dynamically when it tries to set the enabled property.http://stackoverflow.com/questions/377942/how-to-warn-user-of-caps-lock-enabled-in-flex-air/377959#377959Comment by on How to warn user of CAPS LOCK enabled in Flex/AIR?2008-12-18T15:08:54Z2008-12-18T15:08:54ZI created a blank form and dropped it on the form. It doesn't work, even if CAPS LOCK is on when I start the app. Do I need a keyboard handler?http://stackoverflow.com/questions/368664/can-i-re-assign-tfs-work-items-to-checked-in-code/368718#368718Comment by on Can I Re-Assign TFS Work Items to Checked-In Code?2008-12-15T15:56:04Z2008-12-15T15:56:04ZThanks. That was not obvious (at least not to me).http://stackoverflow.com/questions/59667/why-would-i-ever-pick-char-over-varchar-in-sql/59676#59676Comment by on Why would I ever pick CHAR over VARCHAR in SQL?2008-09-12T18:19:27Z2008-09-12T18:19:27ZBut, HOW does it optimize my code to pick CHAR over VARCHAR?http://stackoverflow.com/questions/54694/what-can-i-do-to-get-better-at-estimating-how-long-projects-are-going-to-take/54727#54727Comment by on What can I do to get better at estimating how long projects are going to take?2008-09-10T17:31:20Z2008-09-10T17:31:20ZWe call that the "Scotty Principle."