User Daniel A. White - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T13:15:16Zhttp://stackoverflow.com/feeds/user/23528http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/664462/classic-asp-twitter-libraries1Classic ASP Twitter LibrariesDaniel A. White2009-03-19T23:35:59Z2009-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#17851561Answer by Daniel A. White for If / else order sequence issueDaniel A. White2009-11-23T18:47:57Z2009-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#17530350Answer by Daniel A. White for How to disable buffer overflow checking in the Visual C++ Runtime?Daniel A. White2009-11-18T01:26:41Z2009-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#17771590Answer by Daniel A. White for Is it possible to have a C# Winform with in-built Anti-Keylogger?Daniel A. White2009-11-21T23:38:44Z2009-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#17769412Answer by Daniel A. White for connection string in web configDaniel A. White2009-11-21T22:06:45Z2009-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#17726200Answer 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. White2009-11-20T19:07:01Z2009-11-20T19:29:24Z<pre><code>foreach (var item in myList)
DoStuffWithInterface(item);
</code></pre>
<p>or</p>
<pre><code>public void DoStuffWithInterface(IList<IConcrete> concrete) { }
</code></pre>
<p>or</p>
<pre><code>var myNewList = myList.Cast<IConcrete>();
</code></pre>
http://stackoverflow.com/questions/1770942/why-it-returns-null-password/1770963#17709630Answer by Daniel A. White for why it returns null password???Daniel A. White2009-11-20T14:56:55Z2009-11-20T14:56:55Z<pre><code> StringBuffer password1 = new StringBuffer();
for (int i = 0; i < 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#17674577Answer by Daniel A. White for C++ HTTP / HTML Socket QuestionDaniel A. White2009-11-19T23:54:20Z2009-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#17659111Answer by Daniel A. White for Linq select different columnsDaniel A. White2009-11-19T19:28:28Z2009-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#17628563Answer by Daniel A. White for Is the iTextSharp DLL free to use and redistribute with my web application project?Daniel A. White2009-11-19T12:09:04Z2009-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#17594821Answer by Daniel A. White for Linq with arrayDaniel A. White2009-11-18T22:07:31Z2009-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#17594410Answer by Daniel A. White for add dynamic (no matter image size) shadow effect on images?Daniel A. White2009-11-18T22:03:06Z2009-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#17518510Answer by Daniel A. White for Navigator patternDaniel A. White2009-11-17T21:16:07Z2009-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#17459954Answer by Daniel A. White for C#-Events of interface practical useDaniel A. White2009-11-17T01:13:29Z2009-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<ReceivedDataEventArgs> 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#17399461Answer by Daniel A. White for Icons on TitlebarDaniel A. White2009-11-16T03:48:36Z2009-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#17345400Answer by Daniel A. White for How can I set Regular Expression on TextBox?Daniel A. White2009-11-14T15:21:20Z2009-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#17345331Answer by Daniel A. White for Showing the browser’s ‘select file’ dialog when focusing input[type=file] through keyboard navigationDaniel A. White2009-11-14T15:18:41Z2009-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#17243714Answer by Daniel A. White for Something in my coding is stretching my page horizontally.Daniel A. White2009-11-12T18:32:07Z2009-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#172404118Answer by Daniel A. White for In C#, what's the best way to store a group of constants that my program uses?Daniel A. White2009-11-12T17:40:40Z2009-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#17234952Answer by Daniel A. White for Relation between USB and PCIDaniel A. White2009-11-12T16:26:22Z2009-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#17226571Answer by Daniel A. White for Get checked values from arrayDaniel A. White2009-11-12T14:43:53Z2009-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 => 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 => i == false))
{
....
}
</code></pre>
http://stackoverflow.com/questions/1715209/write-access-to-program-files-folder/1715300#17153002Answer by Daniel A. White for Write Access to Program Files folderDaniel A. White2009-11-11T13:53:27Z2009-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#17149812Answer by Daniel A. White for Is it something wrong with this build or it is ok ?Daniel A. White2009-11-11T12:47:14Z2009-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#17130552Answer by Daniel A. White for How many columns can you have (maximum) in a MySQL table?Daniel A. White2009-11-11T04:41:36Z2009-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-relationships0Assistance with CakePHP model relationshipsDaniel A. White2009-11-10T21:31:01Z2009-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#17088712Answer by Daniel A. White for A different take on FirstOrDefaultDaniel A. White2009-11-10T15:39:13Z2009-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<T>(this IEnumerable<T> source, Func<T, bool> 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#17034080Answer by Daniel A. White for What's the best way to implement a search?Daniel A. White2009-11-09T20:04:56Z2009-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#17027493Answer by Daniel A. White for Windows 7 Progress BarDaniel A. White2009-11-09T18:14:56Z2009-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#17026652Answer by Daniel A. White for Identifying idle state on a windows machineDaniel A. White2009-11-09T17:55:46Z2009-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#17024958Answer by Daniel A. White for Does 'proper' Javascript API Documentation exist?Daniel A. White2009-11-09T17:27:15Z2009-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-unixComment by Daniel A. White on Seriously: What left of unix ?Daniel A. White2009-11-22T00:56:22Z2009-11-22T00:56:22ZUNIX 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#1777159Comment by Daniel A. White on Is it possible to have a C# Winform with in-built Anti-Keylogger?Daniel A. White2009-11-22T00:27:54Z2009-11-22T00:27:54ZIt is harder to track those things.http://stackoverflow.com/questions/1776224/server-command-via-ajax-interfaceComment by Daniel A. White on Server command via AJAX interfaceDaniel A. White2009-11-21T18:02:50Z2009-11-21T18:02:50ZSECURITY! Please make sure you sanitize all your inputs!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!http://stackoverflow.com/questions/1776020/c-interesting-params-of-ref-feature-any-workarounds/1776067#1776067Comment by Daniel A. White on [C#] Interesting "params of ref" feature, any workarounds?Daniel A. White2009-11-21T17:24:47Z2009-11-21T17:24:47ZHe could do this but with the nullable-versions - <code>bool?</code> or <code>Nullable<bool></code>.http://stackoverflow.com/questions/1772606/why-can-i-not-assign-a-list-of-concrete-types-to-a-list-of-that-concretes-interf/1772620#1772620Comment 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. White2009-11-20T19:28:53Z2009-11-20T19:28:53ZOh yea it might not work....http://stackoverflow.com/questions/1770937/how-can-i-give-alert-message-with-ok-and-cancel-button-within-a-dataset-functionComment by Daniel A. White on How can I give alert message with Ok and Cancel button within a dataset function?Daniel A. White2009-11-20T14:52:49Z2009-11-20T14:52:49ZDon't you mean javascript?http://stackoverflow.com/questions/1765186/how-to-create-one-model-table-for-each-user-on-djangoComment by Daniel A. White on How to create one Model (table) for each user on django ?Daniel A. White2009-11-19T17:47:05Z2009-11-19T17:47:05ZOne question- why?!?!?!?!http://stackoverflow.com/questions/1763107/installing-english-language-package-on-windows-vista-german-editionComment by Daniel A. White on Installing English language package on Windows Vista German EditionDaniel A. White2009-11-19T12:59:57Z2009-11-19T12:59:57Z@Aarron - leave the tag - its removed at migration.http://stackoverflow.com/questions/1759281/unable-to-open-serial-port-in-netComment by Daniel A. White on Unable to open serial port in .NETDaniel A. White2009-11-18T21:45:23Z2009-11-18T21:45:23ZI 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#1756019Comment by Daniel A. White on Can two different strings generate the same MD5 hash code?Daniel A. White2009-11-18T13:52:29Z2009-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#1756019Comment by Daniel A. White on Can two different strings generate the same MD5 hash code?Daniel A. White2009-11-18T13:51:54Z2009-11-18T13:51:54ZI've known this as the pigeon-hole problem.http://stackoverflow.com/questions/1753315/what-does-the-operator-do-in-c-when-declaring-a-variableComment by Daniel A. White on What does the ^ operator do in C++ (when declaring a variable)?Daniel A. White2009-11-18T02:49:11Z2009-11-18T02:49:11ZAre you doing C++/CLI?http://stackoverflow.com/questions/1751315/iphonecan-my-program-access-camera-using-imagepicker-apiComment by Daniel A. White on iPhone:Can my program access Camera using imagepicker API?Daniel A. White2009-11-17T19:53:26Z2009-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/…</a>
http://stackoverflow.com/questions/1750901/dynamically-loading-a-dll-in-cComment by Daniel A. White on Dynamically loading a dll in C#Daniel A. White2009-11-17T18:41:54Z2009-11-17T18:41:54Zhow is the dll compiled - is it clr or native?http://stackoverflow.com/questions/1742909/why-is-the-control-inaccessible-due-to-its-protection-levelComment by Daniel A. White on Why is the control inaccessible due to its protection level?Daniel A. White2009-11-16T15:31:26Z2009-11-16T15:31:26ZWhat are you trying to accomplish?