User Daniel A. White - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T13:15:16Z http://stackoverflow.com/feeds/user/23528 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/664462/classic-asp-twitter-libraries 1 Classic ASP Twitter Libraries Daniel A. White 2009-03-19T23:35:59Z 2009-11-24T16:42:36Z <p>Does of anyone know of any Classic ASP (VBScript) Twitter libraries? Thanks.</p> http://stackoverflow.com/questions/1785143/if-else-order-sequence-issue/1785156#1785156 1 Answer by Daniel A. White for If / else order sequence issue Daniel A. White 2009-11-23T18:47:57Z 2009-11-23T18:47:57Z <pre><code>else { cp.ControlID = "lbRadMiss"; cp.PropertyName = "Text"; lbRadMiss.Text = "Please check appropriate radio button before you attempt a search"; ///Include this line return; } </code></pre> http://stackoverflow.com/questions/1752998/how-to-disable-buffer-overflow-checking-in-the-visual-c-runtime/1753035#1753035 0 Answer by Daniel A. White for How to disable buffer overflow checking in the Visual C++ Runtime? Daniel A. White 2009-11-18T01:26:41Z 2009-11-23T16:20:57Z <p>There is an option here. Set it to no.</p> <p>Project Properties -> Configuration Properties -> C/C++ -> Code Generation -> Buffer Security Check.</p> <p><img src="http://i49.tinypic.com/f23ask.jpg" alt="alt text"></p> <p>This corresponds to the <a href="http://msdn.microsoft.com/en-us/library/8dbf701c.aspx" rel="nofollow">/GS (Buffer Security Check) </a> compiler option:</p> <blockquote> <p>Detects some buffer overruns that overwrite the return address, a common technique for exploiting code that does not enforce buffer size restrictions. This is achieved by injecting security checks into the compiled code.</p> </blockquote> <p><a href="http://twitpic.com/pxlrx" rel="nofollow">http://twitpic.com/pxlrx</a></p> http://stackoverflow.com/questions/1777153/is-it-possible-to-have-a-c-winform-with-in-built-anti-keylogger/1777159#1777159 0 Answer by Daniel A. White for Is it possible to have a C# Winform with in-built Anti-Keylogger? Daniel A. White 2009-11-21T23:38:44Z 2009-11-21T23:38:44Z <p>It is possible, but the heuristics to detect one would not be worth the time. It would be appropriate to allow the PC to have a good anti-virus/malware. If you are really paranoid, you could code an on-screen keyboard that inputs through the mouse for your application, very similar to what <a href="http://www.ingdirect.com/" rel="nofollow">ING Direct</a> has for PIN input.</p> http://stackoverflow.com/questions/1776930/connection-string-in-web-config/1776941#1776941 2 Answer by Daniel A. White for connection string in web config Daniel A. White 2009-11-21T22:06:45Z 2009-11-21T22:06:45Z <p>Try replacing <code>XYX-PC</code> with <code>localhost</code> provided the instance name is the same.</p> http://stackoverflow.com/questions/1772606/why-can-i-not-assign-a-list-of-concrete-types-to-a-list-of-that-concretes-interf/1772620#1772620 0 Answer by Daniel A. White for Why can I not assign a List of concrete types to a List of that concrete's interface? Daniel A. White 2009-11-20T19:07:01Z 2009-11-20T19:29:24Z <pre><code>foreach (var item in myList) DoStuffWithInterface(item); </code></pre> <p>or</p> <pre><code>public void DoStuffWithInterface(IList&lt;IConcrete&gt; concrete) { } </code></pre> <p>or</p> <pre><code>var myNewList = myList.Cast&lt;IConcrete&gt;(); </code></pre> http://stackoverflow.com/questions/1770942/why-it-returns-null-password/1770963#1770963 0 Answer by Daniel A. White for why it returns null password??? Daniel A. White 2009-11-20T14:56:55Z 2009-11-20T14:56:55Z <pre><code> StringBuffer password1 = new StringBuffer(); for (int i = 0; i &lt; password1.length(); i++) { </code></pre> <p>I would imagine that that would be <code>0</code> for the <code>length</code> of the string buffer.</p> http://stackoverflow.com/questions/1767449/c-http-html-socket-question/1767457#1767457 7 Answer by Daniel A. White for C++ HTTP / HTML Socket Question Daniel A. White 2009-11-19T23:54:20Z 2009-11-19T23:54:20Z <p>Check out <a href="http://curl.haxx.se/libcurl/" rel="nofollow">libCurl</a>.</p> http://stackoverflow.com/questions/1765898/linq-select-different-columns/1765911#1765911 1 Answer by Daniel A. White for Linq select different columns Daniel A. White 2009-11-19T19:28:28Z 2009-11-19T19:28:28Z <p>Why don't you select the whole Model and use the fields when you need them?</p> http://stackoverflow.com/questions/1762842/is-the-itextsharp-dll-free-to-use-and-redistribute-with-my-web-application-projec/1762856#1762856 3 Answer by Daniel A. White for Is the iTextSharp DLL free to use and redistribute with my web application project? Daniel A. White 2009-11-19T12:09:04Z 2009-11-19T12:09:04Z <p>Yes, as long as you are just dynamically linking it under the LGPL.</p> http://stackoverflow.com/questions/1759070/linq-with-array/1759482#1759482 1 Answer by Daniel A. White for Linq with array Daniel A. White 2009-11-18T22:07:31Z 2009-11-18T22:07:31Z <p>I think you are declaring and utilizing the same variable in the same line</p> <p><code>Dim Empresas = (From E In Empresas _</code></p> http://stackoverflow.com/questions/1759416/add-dynamic-no-matter-image-size-shadow-effect-on-images/1759441#1759441 0 Answer by Daniel A. White for add dynamic (no matter image size) shadow effect on images? Daniel A. White 2009-11-18T22:03:06Z 2009-11-18T22:03:06Z <p>Here is a method for doing it in CSS.</p> <p><a href="http://www.wubbleyew.com/tests/dropshadows.htm" rel="nofollow">http://www.wubbleyew.com/tests/dropshadows.htm</a></p> http://stackoverflow.com/questions/1751835/navigator-pattern/1751851#1751851 0 Answer by Daniel A. White for Navigator pattern Daniel A. White 2009-11-17T21:16:07Z 2009-11-17T21:16:07Z <p>He is talking about wizard-like steps.</p> <p><a href="http://www.adaptavist.com/display/USERGUIDE/Linear+Navigation+Pattern" rel="nofollow">http://www.adaptavist.com/display/USERGUIDE/Linear+Navigation+Pattern</a></p> http://stackoverflow.com/questions/1745990/c-events-of-interface-practical-use/1745995#1745995 4 Answer by Daniel A. White for C#-Events of interface practical use Daniel A. White 2009-11-17T01:13:29Z 2009-11-17T01:13:29Z <p>I used events to signal when a serial port received data.</p> <p>Here is my interface.</p> <pre><code>public interface ISerialPortWatcher { event EventHandler&lt;ReceivedDataEventArgs&gt; ReceivedData; event EventHandler StartedListening; event EventHandler StoppedListening; SerialPortSettings PortOptions { set; } bool Listening { get; set; } void Stop(); void Start(); } public class ReceivedDataEventArgs : EventArgs { public ReceivedDataEventArgs(string data) { Data = data; } public string Data { get; private set; } } </code></pre> http://stackoverflow.com/questions/1739930/icons-on-titlebar/1739946#1739946 1 Answer by Daniel A. White for Icons on Titlebar Daniel A. White 2009-11-16T03:48:36Z 2009-11-16T03:48:36Z <p>It is part of the Ribbon ui. Here is some code from the code project.</p> <p><a href="http://www.codeproject.com/KB/toolbars/WinFormsRibbon.aspx" rel="nofollow">http://www.codeproject.com/KB/toolbars/WinFormsRibbon.aspx</a></p> http://stackoverflow.com/questions/1734511/how-can-i-set-regular-expression-on-textbox/1734540#1734540 0 Answer by Daniel A. White for How can I set Regular Expression on TextBox? Daniel A. White 2009-11-14T15:21:20Z 2009-11-14T15:46:34Z <p>Either you can check at the changed event or you could use what's called a masked textbox.</p> http://stackoverflow.com/questions/1734478/showing-the-browsers-select-file-dialog-when-focusing-inputtypefile-through/1734533#1734533 1 Answer by Daniel A. White for Showing the browser’s ‘select file’ dialog when focusing input[type=file] through keyboard navigation Daniel A. White 2009-11-14T15:18:41Z 2009-11-14T15:18:41Z <p>I doubt you would be able to do activate the dialog for security reasons. A real click event has to happen, depending on the browser.</p> <p>I know Flash/Flex have this requirement.</p> http://stackoverflow.com/questions/1724354/something-in-my-coding-is-stretching-my-page-horizontally/1724371#1724371 4 Answer by Daniel A. White for Something in my coding is stretching my page horizontally. Daniel A. White 2009-11-12T18:32:07Z 2009-11-12T18:32:07Z <p>It be the padding (left and right, 6px) on your top header (id is "top").</p> http://stackoverflow.com/questions/1724025/in-c-whats-the-best-way-to-store-a-group-of-constants-that-my-program-uses/1724041#1724041 18 Answer by Daniel A. White for In C#, what's the best way to store a group of constants that my program uses? Daniel A. White 2009-11-12T17:40:40Z 2009-11-12T17:40:40Z <p>You probably could have them in a static class, with static read-only properties.</p> <pre><code>public static class Constants { public static string SomeConstant { get { return "Some value"; } } } </code></pre> http://stackoverflow.com/questions/1723481/relation-between-usb-and-pci/1723495#1723495 2 Answer by Daniel A. White for Relation between USB and PCI Daniel A. White 2009-11-12T16:26:22Z 2009-11-12T16:26:22Z <p>The USB controller communicates both USB and PCI. USB does not directly talk to the CPU, but rather across the PCI bus first.</p> http://stackoverflow.com/questions/1722645/get-checked-values-from-array/1722657#1722657 1 Answer by Daniel A. White for Get checked values from array Daniel A. White 2009-11-12T14:43:53Z 2009-11-12T14:43:53Z <p>Since you are doing it with MVC - you could make <code>TimeRange1</code> a <code>bool[]</code>.</p> <p>Then, you could always do this with linq</p> <pre><code>var newItems = TimeRange1.Select(i =&gt; i == false); foreach(var item in newItems) { .... } </code></pre> <p>or you could simplify it</p> <pre><code>foreach(var item in TimeRange1.Select(i =&gt; i == false)) { .... } </code></pre> http://stackoverflow.com/questions/1715209/write-access-to-program-files-folder/1715300#1715300 2 Answer by Daniel A. White for Write Access to Program Files folder Daniel A. White 2009-11-11T13:53:27Z 2009-11-11T13:53:27Z <p>The best way to write an auto updater is to have a secondary application. The first program calls the second with elevated privileges, prompting UAC. Then the second application can install the patches.</p> http://stackoverflow.com/questions/1714799/is-it-something-wrong-with-this-build-or-it-is-ok/1714981#1714981 2 Answer by Daniel A. White for Is it something wrong with this build or it is ok ? Daniel A. White 2009-11-11T12:47:14Z 2009-11-11T12:47:14Z <p>That <code>no</code> symbol is stating that it cant be run on that platform (i.e. your desktop). I would imagine that its fine.</p> http://stackoverflow.com/questions/1713051/how-many-columns-can-you-have-maximum-in-a-mysql-table/1713055#1713055 2 Answer by Daniel A. White for How many columns can you have (maximum) in a MySQL table? Daniel A. White 2009-11-11T04:41:36Z 2009-11-11T04:41:36Z <p>Here is a resource.</p> <p><a href="http://dev.mysql.com/doc/refman/5.0/en/column-count-limit.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/column-count-limit.html</a></p> http://stackoverflow.com/questions/1711354/assistance-with-cakephp-model-relationships 0 Assistance with CakePHP model relationships Daniel A. White 2009-11-10T21:31:01Z 2009-11-10T22:33:29Z <p>How would I represent the following in a CakePHP model?</p> <pre><code>Product ======= product_id .... Cart ==== cart_id .... Carts_Products ============== cart_id product_id quantity </code></pre> http://stackoverflow.com/questions/1708846/a-different-take-on-firstordefault/1708871#1708871 2 Answer by Daniel A. White for A different take on FirstOrDefault Daniel A. White 2009-11-10T15:39:13Z 2009-11-10T15:39:13Z <p><code>default(T)</code> will return <code>null</code> by default for reference types.</p> <p>I would do this</p> <pre><code>public static T FirstOrValue&lt;T&gt;(this IEnumerable&lt;T&gt; source, Func&lt;T, bool&gt; predicate, T value) { T first = source.FirstOrDefault(predicate); return first ?? value; } </code></pre> http://stackoverflow.com/questions/1703387/whats-the-best-way-to-implement-a-search/1703408#1703408 0 Answer by Daniel A. White for What's the best way to implement a search? Daniel A. White 2009-11-09T20:04:56Z 2009-11-09T20:04:56Z <p>It is called <code>Full-text Search</code>.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms142571.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms142571.aspx</a></p> http://stackoverflow.com/questions/1702746/windows-7-progress-bar/1702749#1702749 3 Answer by Daniel A. White for Windows 7 Progress Bar Daniel A. White 2009-11-09T18:14:56Z 2009-11-09T18:21:17Z <p>Yes. </p> <p><a href="http://code.msdn.microsoft.com/WindowsAPICodePack" rel="nofollow">http://code.msdn.microsoft.com/WindowsAPICodePack</a></p> <p>This has a lot of Windows Vista/7 features for .NET (C#/VB/etc.), including Task Bar Progress Bars.</p> http://stackoverflow.com/questions/1702646/identifying-idle-state-on-a-windows-machine/1702665#1702665 2 Answer by Daniel A. White for Identifying idle state on a windows machine Daniel A. White 2009-11-09T17:55:46Z 2009-11-09T17:55:46Z <p>There is no true definition of "idle". It would be whatever you would want it to be.</p> http://stackoverflow.com/questions/1702486/does-proper-javascript-api-documentation-exist/1702495#1702495 8 Answer by Daniel A. White for Does 'proper' Javascript API Documentation exist? Daniel A. White 2009-11-09T17:27:15Z 2009-11-09T17:27:15Z <p>Mozilla has one of the best.</p> <p><a href="https://developer.mozilla.org/en/JavaScript" rel="nofollow">https://developer.mozilla.org/en/JavaScript</a></p> http://stackoverflow.com/questions/1777374/seriously-what-left-of-unix Comment by Daniel A. White on Seriously: What left of unix ? Daniel A. White 2009-11-22T00:56:22Z 2009-11-22T00:56:22Z UNIX is still viable - look at Mac OS X. http://stackoverflow.com/questions/1777153/is-it-possible-to-have-a-c-winform-with-in-built-anti-keylogger/1777159#1777159 Comment by Daniel A. White on Is it possible to have a C# Winform with in-built Anti-Keylogger? Daniel A. White 2009-11-22T00:27:54Z 2009-11-22T00:27:54Z It is harder to track those things. http://stackoverflow.com/questions/1776224/server-command-via-ajax-interface Comment by Daniel A. White on Server command via AJAX interface Daniel A. White 2009-11-21T18:02:50Z 2009-11-21T18:02:50Z SECURITY! Please make sure you sanitize all your inputs!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! http://stackoverflow.com/questions/1776020/c-interesting-params-of-ref-feature-any-workarounds/1776067#1776067 Comment by Daniel A. White on [C#] Interesting "params of ref" feature, any workarounds? Daniel A. White 2009-11-21T17:24:47Z 2009-11-21T17:24:47Z He could do this but with the nullable-versions - <code>bool?</code> or <code>Nullable&lt;bool&gt;</code>. http://stackoverflow.com/questions/1772606/why-can-i-not-assign-a-list-of-concrete-types-to-a-list-of-that-concretes-interf/1772620#1772620 Comment by Daniel A. White on Why can I not assign a List of concrete types to a List of that concrete's interface? Daniel A. White 2009-11-20T19:28:53Z 2009-11-20T19:28:53Z Oh yea it might not work.... http://stackoverflow.com/questions/1770937/how-can-i-give-alert-message-with-ok-and-cancel-button-within-a-dataset-function Comment by Daniel A. White on How can I give alert message with Ok and Cancel button within a dataset function? Daniel A. White 2009-11-20T14:52:49Z 2009-11-20T14:52:49Z Don't you mean javascript? http://stackoverflow.com/questions/1765186/how-to-create-one-model-table-for-each-user-on-django Comment by Daniel A. White on How to create one Model (table) for each user on django ? Daniel A. White 2009-11-19T17:47:05Z 2009-11-19T17:47:05Z One question- why?!?!?!?! http://stackoverflow.com/questions/1763107/installing-english-language-package-on-windows-vista-german-edition Comment by Daniel A. White on Installing English language package on Windows Vista German Edition Daniel A. White 2009-11-19T12:59:57Z 2009-11-19T12:59:57Z @Aarron - leave the tag - its removed at migration. http://stackoverflow.com/questions/1759281/unable-to-open-serial-port-in-net Comment by Daniel A. White on Unable to open serial port in .NET Daniel A. White 2009-11-18T21:45:23Z 2009-11-18T21:45:23Z I know sometime the <code>GetPortNames()</code> gives wonky characters out of it. http://stackoverflow.com/questions/1756004/can-two-different-strings-generate-the-same-md5-hash-code/1756019#1756019 Comment by Daniel A. White on Can two different strings generate the same MD5 hash code? Daniel A. White 2009-11-18T13:52:29Z 2009-11-18T13:52:29Z <a href="http://en.wikipedia.org/wiki/Pigeonhole_principle" rel="nofollow">en.wikipedia.org/wiki/Pigeonhole_principle</a> http://stackoverflow.com/questions/1756004/can-two-different-strings-generate-the-same-md5-hash-code/1756019#1756019 Comment by Daniel A. White on Can two different strings generate the same MD5 hash code? Daniel A. White 2009-11-18T13:51:54Z 2009-11-18T13:51:54Z I've known this as the pigeon-hole problem. http://stackoverflow.com/questions/1753315/what-does-the-operator-do-in-c-when-declaring-a-variable Comment by Daniel A. White on What does the ^ operator do in C++ (when declaring a variable)? Daniel A. White 2009-11-18T02:49:11Z 2009-11-18T02:49:11Z Are you doing C++/CLI? http://stackoverflow.com/questions/1751315/iphonecan-my-program-access-camera-using-imagepicker-api Comment by Daniel A. White on iPhone:Can my program access Camera using imagepicker API? Daniel A. White 2009-11-17T19:53:26Z 2009-11-17T19:53:26Z <a href="http://stackoverflow.com/questions/74113/access-the-camera-with-iphone-sdk" rel="nofollow" title="access the camera with iphone sdk">stackoverflow.com/questions/74113/&hellip;</a> http://stackoverflow.com/questions/1750901/dynamically-loading-a-dll-in-c Comment by Daniel A. White on Dynamically loading a dll in C# Daniel A. White 2009-11-17T18:41:54Z 2009-11-17T18:41:54Z how is the dll compiled - is it clr or native? http://stackoverflow.com/questions/1742909/why-is-the-control-inaccessible-due-to-its-protection-level Comment by Daniel A. White on Why is the control inaccessible due to its protection level? Daniel A. White 2009-11-16T15:31:26Z 2009-11-16T15:31:26Z What are you trying to accomplish?