User Ryan Farley - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T11:50:51Zhttp://stackoverflow.com/feeds/user/1627http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/965817/work-flow-for-authentication-and-api-use-with-twitter-on-oauth/965881#9658811Answer by Ryan Farley for Work flow for authentication and API use with Twitter on OAuthRyan Farley2009-06-08T16:53:00Z2009-06-08T16:53:00Z<p>Not sure which language you're using, but the .NET library for Twitter called Tweetsharp has a post on using Tweetsharp from a desktop app and authenticating via OAuth. See <a href="http://tweetsharp.com/?p=68" rel="nofollow">http://tweetsharp.com/?p=68</a>. If you're not using .NET then perhaps it will inspire something you can do? </p>
<p>Basically, what tweetsharp does is launch the browser to the authentication URL and then waits for the user to return. I don't know of any way to do this other than something like that (Or include a WebBrowser control of some kind to launch the authentication URL in your own window).</p>
http://stackoverflow.com/questions/873207/force-download-of-a-file-on-web-server-asp-net-c/873347#8733472Answer by Ryan Farley for Force download of a file on web server - ASP .NET C#Ryan Farley2009-05-16T21:23:37Z2009-05-16T21:41:50Z<p><strong>The problem is that you're using the code on the same page as is currently loaded in the browser. You are attempting to modify the response stream and disposition of the current loaded page.</strong> Instead, create a separate HttpHandler, as suggested by Mehrdad. Then on the click of the button, you will invoke the URL to the handler. The button could even be a simple hyperlink that had the following as the source URL:</p>
<pre><code><a href="DownloadSqlFile.ashx">Download SQL</a>
</code></pre>
<p>Make sense? The point being, <strong>you cannot modify the response of the already loaded page</strong>. Launch a new request using a handler to do the work.</p>
http://stackoverflow.com/questions/873317/change-asp-net-2-web-service-adress/873326#8733261Answer by Ryan Farley for change asp.net 2 web service adressRyan Farley2009-05-16T21:14:51Z2009-05-16T21:14:51Z<p>You can set the service URL usign the Url property:</p>
<pre><code>MyWebService.Service1 service = new MyWebService.Service1();
service.Url = NEWSERVICEURL;
</code></pre>
http://stackoverflow.com/questions/641464/net-control-like-outlooks-e-mail-address-text-control5.NET Control like Outlook's E-mail Address Text ControlRyan Farley2009-03-13T04:28:09Z2009-05-08T16:51:27Z
<p>I am looking for a control (or suggestions on building my own) for a .NET 2.0 (windows) app that works like the address box in the Outlook mail window (bee below)</p>
<p><img src="http://content.screencast.com/users/Ryan%5FFarley/folders/Jing/media/a511142b-dd04-4885-ad1e-f2582c201723/2009-03-12%5F2116.png" alt="Outlook Address Control" /></p>
<p>The control basically works where each e-mail address is like an item in the text area. I don't care so much about letting the user also type into this area like you can in Outlook. I just want to be able to add these complete strings (e-mail addresses) to the text area, or list, and the user can select them (but not edit) and can delete or backspace through the list to delete entire items (e-mail addresses).</p>
<p>Anyone know of a control out there that does this? Any suggestions for building my own? (or anyone know what you even call this control so I know what to google?)</p>
http://stackoverflow.com/questions/783074/asmx-page-unable-to-see-available-operations-remotely/783100#7831001Answer by Ryan Farley for ASMX Page: Unable to see available operations remotelyRyan Farley2009-04-23T19:05:38Z2009-04-23T19:05:38Z<p>Are you talking about the formatted page that .NET shows you to see the service definition? That will only show you the test page with the method definitions if you are local. From other machines it does not show that (for security reasons). However, you can still call those methods (and see them listed in the WSDL, just not the formatted test page).</p>
<p>Did I miss what you are asking? If that doesn't answer the question please explain more.</p>
http://stackoverflow.com/questions/456063/adding-button-into-a-listview-in-winforms/628471#6284710Answer by Ryan Farley for Adding button into a Listview in WinFormsRyan Farley2009-03-09T23:46:20Z2009-03-09T23:46:20Z<p>The ListView itself (or ListViewItem) does not function as a container of any kind so no way to add controls directly, however it is doable. I have used this extended ListView with a lot of success: <a href="http://www.codeproject.com/KB/list/ListViewEmbeddedControls.aspx" rel="nofollow">Embedding Controls in a ListView</a>.</p>
http://stackoverflow.com/questions/568157/copy-sql-server-data-from-one-server-to-another-on-a-schedule/568204#5682041Answer by Ryan Farley for Copy SQL Server data from one server to another on a scheduleRyan Farley2009-02-20T03:45:05Z2009-02-20T03:45:05Z<p>This is a primary purpose of SSIS/DTS. I do exactly this with SSIS quite often. If you've not used SSIS before then <a href="http://www.sqlis.com/" rel="nofollow">sqlis.com</a> is a great place to start (unless you're on SQL2000 then you'll use DTS, in that case start with <a href="http://www.sqldts.com/" rel="nofollow">sqldts.com</a>). There are many great books on the subject as well.</p>
<p>But it is definitely worth your time to look into learning SSIS. Reading your question, SSIS is IMO the best route by far. You won't need to write a line of code, it has all the tools built in to do the job. You can also schedule it to run on an interval as well.</p>
http://stackoverflow.com/questions/12685/what-is-needed-to-get-delphi-back-on-top/21847#218470Answer by Ryan Farley for What is needed to get Delphi back on top?Ryan Farley2008-08-22T05:36:42Z2008-10-23T06:48:24Z<p>I loved Delphi years ago. When what seemed to be the most "mainstream" choices were C++, VB, or Delphi (not that it was really ever mainstream), Delphi was the cat's meow. </p>
<p>However, I do not miss Delphi for a second. At all. There was something about it that never seemed <em>quite right</em>. Weirdness with windowing on Windows (hehe) and seemed to wreak of an ocean of badly-designed apps. </p>
<p>As much as I loved Delphi back in the day, I couldn't care less what happens to it now that I have my beloved C#.</p>
http://stackoverflow.com/questions/140468/what-is-the-maximum-possible-length-of-a-net-string/140492#14049212Answer by Ryan Farley for What is the maximum possible length of a .NET string?Ryan Farley2008-09-26T16:17:54Z2008-09-26T16:17:54Z<p>Since the Length property of System.String is an Int32, I would guess that that the maximum length would be 2,147,483,647 chars (max Int32 size). If it allowed longer you couldn't check the Length since that would fail.</p>
http://stackoverflow.com/questions/138115/change-order-of-images-in-icon-file/138148#1381482Answer by Ryan Farley for Change order of images in icon fileRyan Farley2008-09-26T07:28:59Z2008-09-26T07:28:59Z<p>What you'll need to do that is a resource editor. A <a href="http://www.google.com/search?q=resource+editor&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a" rel="nofollow">google search</a> will reveal many free ones out there. The <a href="http://www.bome.com/Restorator/" rel="nofollow">restorator</a> is a great one, but not free and over-priced IMO. </p>
<p>Any decent resource editor will allow you to see icons in the exe or dll and save them or replace them. I don't know of any that will allow you to reorder them, but just about any out there would allow you to save the icons out and then replace them back in the exe/dll in whatever order you'd like.</p>
http://stackoverflow.com/questions/138117/how-to-send-rich-text-message-in-system-net-mail/138134#1381341Answer by Ryan Farley for how to send rich text message in system.net.mailRyan Farley2008-09-26T07:23:39Z2008-09-26T07:23:39Z<pre><code>//create the mail message
MailMessage mail = new MailMessage();
//set the addresses
mail.From = new MailAddress("me@mycompany.com");
mail.To.Add("you@yourcompany.com");
//set the content
mail.Subject = "This is an email";
mail.Body = "<b>This is bold</b> <font color=#336699>This is blue</font>";
mail.IsBodyHtml = true;
//send the message
SmtpClient smtp = new SmtpClient("127.0.0.1");
smtp.Send(mail);
</code></pre>
http://stackoverflow.com/questions/134520/integrate-stackoverflow-into-ides/134551#1345513Answer by Ryan Farley for Integrate StackOverflow into IDEs?Ryan Farley2008-09-25T17:03:25Z2008-09-25T17:03:25Z<p>I don't know about Eclipse, but for Visual Studio, if someone really wanted this they could easily add the SO RSS feed for the "Start Page News Channel" so the SO question list appeared in the start page, or even better, narrow it down with a tag (<a href="http://stackoverflow.com/feeds/tag/c%23">like for C#</a>). It's not exactly "integration", but it would provide a quick look at recent things with extremely little effort. However, not sure how "useful" it would be.</p>
http://stackoverflow.com/questions/128282/how-do-you-call-an-asynchronous-web-request-in-vb-net/128322#1283223Answer by Ryan Farley for How do you call an Asynchronous Web Request in VB.NET?Ryan Farley2008-09-24T16:51:24Z2008-09-24T16:53:26Z<p>You'll use BeginGetResponse to add a AsyncCallback, which basically points to some other method in your code that will be called when the WebRequest returns. There is a good <a href="http://www.sitepoint.com/forums/showpost.php?p=3753215" rel="nofollow">sample here</a>.</p>
<p><a href="http://www.sitepoint.com/forums/showpost.php?p=3753215" rel="nofollow">http://www.sitepoint.com/forums/showpost.php?p=3753215</a></p>
http://stackoverflow.com/questions/118288/sql-coding-style-guide/118344#1183441Answer by Ryan Farley for SQL coding style guideRyan Farley2008-09-23T00:07:58Z2008-09-23T00:15:09Z<p>I believe certain ANSI and ISO standards require the use of upper case to conform to the standard. Technically, the SQL keywords/commands really are in upper-case, although they are allowed to be used in any case if you don't need to conform to a standard. So, it is not really always a matter of style and personal choice. </p>
<p>Also, as far as database object names go, if the database is using a case-sensitive collation then those are required to match the case of the database object (meaning if they are in upper case then you're queries must also include those names in upper case. </p>
http://stackoverflow.com/questions/107383/what-is-the-best-windows-program-launcher/107423#1074233Answer by Ryan Farley for What is the best (Windows) program launcher?Ryan Farley2008-09-20T06:43:45Z2008-09-20T06:43:45Z<p>Scott Hanselman (who is a big fan of app launchers) has <a href="http://www.hanselman.com/blog/ReplacingStartRunTheQuestContinues.aspx" rel="nofollow">a good review of some of the best ones out there</a>. Well worth the time to take a look, the post is a year+ old and some of them have changed s little since, but still would serve as a good place to see some of the better ones out there. He even did <a href="http://www.hanselminutes.com/default.aspx?showID=23" rel="nofollow">a podcast of the subject</a> as well where he reviews the good and bad of the best ones out there. </p>
<p>My preference is launchy. Love it.</p>
http://stackoverflow.com/questions/106941/should-i-use-internal-or-public-visibility-by-default/106962#1069620Answer by Ryan Farley for Should I use internal or public visibility by default?Ryan Farley2008-09-20T03:28:22Z2008-09-20T03:28:22Z<p>Do not choose a "default" pick what best fits the visibility needs for that particular class. When you choose a new class in Visual Studio, the template is created as: </p>
<pre><code>class Class1
{
}
</code></pre>
<p>Which is private (since no scope is specified). It is up to you to specify scope for the class (or leave as private). There should be a reason to expose the class.</p>
http://stackoverflow.com/questions/97165/looking-for-a-tutorial-on-sql-server-reporting-services-ssrs/97226#972260Answer by Ryan Farley for Looking for a tutorial on SQL Server Reporting Services (SSRS)Ryan Farley2008-09-18T21:34:01Z2008-09-18T21:34:01Z<p><a href="http://stackoverflow.com/questions/8383/reading-recommendations-for-sql-server-2005-reporting-services">This thread mentioned some SSRS books (I have a few of those) </p>
<p>There the official starting spot: http://msdn.microsoft.com/en-us/library/ms159106.aspx">SQL Server Reporting Services</a><br />
<a href="http://blogs.msdn.com/bobmeyers/" rel="nofollow">Bob Meyers has a blog</a> on SSRS which has some good tips (not realy tutorials though) </p>
<p>SSRS is pretty easy once you dig in. I would suggest to get a book and then just start jumping in. The great thing about SSRS is that it just makes a lot of sense. Far easiler to learn than Crystal IMO.</p>
http://stackoverflow.com/questions/97097/what-is-the-c-version-of-vb-nets-inputdialog/97135#971352Answer by Ryan Farley for What is the C# version of VB.net's InputDialog?Ryan Farley2008-09-18T21:23:57Z2008-09-18T21:23:57Z<p>There isn't one. If you really wanted to use the VB InputBox in C# you can. Just add reference to Microsoft.VisualBasic.dll and you'll find it there. </p>
<p>But I would suggest to <em>not</em> use it. It is ugly and outdated IMO.</p>
http://stackoverflow.com/questions/96501/perks-for-new-programmers/96533#96533110Answer by Ryan Farley for Perks for new programmersRyan Farley2008-09-18T20:26:39Z2008-09-18T20:26:39Z<p>I always love <strong>going to conferences and training</strong> and consider that a perk. Not all companies pay to have their devs continue to learn. There's always more to learn. You benefit because they are learning more. They benefit from that too, but also have fun and get away from things for a couple of days and get to mingle with other devs.</p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/95951#959510Answer by Ryan Farley for Is there any place a developer can go besides Google to learn what it is they need to learn?Ryan Farley2008-09-18T19:19:45Z2008-09-18T19:19:45Z<p>There is an infinite number of things one could learn. Maybe a better approach would be to think of a project that interests you, or join an open source one, and then learn what you need to know to accomplish what is needed in that project. When you're done, pick a new project that might include new things not learned in the last project. </p>
http://stackoverflow.com/questions/95510/how-to-detect-whether-vista-uac-is-enabled/95538#955382Answer by Ryan Farley for How to detect whether Vista UAC is enabled? Ryan Farley2008-09-18T18:43:33Z2008-09-18T19:02:45Z<p><a href="http://www.itwriting.com/blog/198-c-code-to-detect-uac-elevation-on-vista.html" rel="nofollow">This post</a> has sample code in C# to test if UAC is on and if the current app has been given elevated rights. You can download the code and interpret as needed. Also linked there is a sample that shows the same in C++ </p>
<p><a href="http://www.itwriting.com/blog/198-c-code-to-detect-uac-elevation-on-vista.html" rel="nofollow">http://www.itwriting.com/blog/198-c-code-to-detect-uac-elevation-on-vista.html</a> </p>
<p>The code in that post does not just read from the registry. If UAC is enabled, chances are you may not have rights to read that from the registry. </p>
http://stackoverflow.com/questions/95504/how-do-i-remind-myself-to-take-breaks-while-coding/95579#955792Answer by Ryan Farley for How do I remind myself to take breaks while coding?Ryan Farley2008-09-18T18:47:33Z2008-09-18T18:47:33Z<p>Take a look at <a href="http://www.dejal.com/timeout/" rel="nofollow">http://www.dejal.com/timeout/</a>. Timeout is for Mac, sort of a cool tool to get yourself in the habit of breaking during work.</p>
http://stackoverflow.com/questions/87735/how-do-you-transfer-or-export-sql-server-2005-data-to-excel/87772#877724Answer by Ryan Farley for How do you transfer or export SQL Server 2005 data to Excel.Ryan Farley2008-09-17T21:17:59Z2008-09-17T21:17:59Z<p>SSIS is a no-brainer for doing stuff like this and is very straight forward (and this is just the kind of thing it is for). </p>
<ol>
<li>Right-click the database in SQL Management Studio </li>
<li>Go to Tasks and then Export data, you'll then see an easy to use wizard.</li>
<li>Your database will be the source, you can enter your SQL query </li>
<li>Choose Excel as the target </li>
<li>Run it at end of wizard</li>
</ol>
<p>If you wanted, you could save the SSIS package as well (there's an option at the end of the wizard) so that you can do it on a schedule or something (and even open and modify to add more functionality if needed).</p>
http://stackoverflow.com/questions/79764/wildcard-subdomains/79811#798112Answer by Ryan Farley for Wildcard SubdomainsRyan Farley2008-09-17T03:55:11Z2008-09-17T16:53:47Z<p>As far as how to set up the DNS subdomain wildcard, that would be a function of your DNS hosting provider. This would be different steps depending on which hosting provider you have and would be a better question for them. </p>
<p>Once you've set that up with the DNS host, from your web app you really are just URL rewriting, which can be done with some sort of module for the web server itself, such as isapi rewrite if you're on IIS (this would be the prefered route if possible). You could also handle rewriting at the application level as well (like using routing if on ASP.NET). </p>
<p>You'd rewrite the URL so <a href="http://myname.domain.com" rel="nofollow">http://myname.domain.com</a> would become <a href="http://domain.com/something.aspx?name=myname" rel="nofollow">http://domain.com/something.aspx?name=myname</a> or something. From there on out, you just handle it as if the myname value was in the query string as normal. Does that make sense? Hope I didn't misunderstand what you're after.</p>
<p><strong>Edit:</strong> </p>
<p>I am not suggesting that you create a subdomain for each user, but instead create a wildcard subdomain for the domain itself, so <em>anything</em>.domain.com (basically *.domain.com) goes to your site. I have several domains setup with <a href="http://www.mydomain.com/" rel="nofollow">mydomain</a>. Their instructions for setting this up is like this: </p>
<blockquote>
<p>Yes, you can configure a wild card but
it will only work if you set it up as
an A Record. Wildcards do not work
with a C Name. To use a wildcard, you
use the astericks character '*'. For
example, if you create and A Record
using a wild card, <em>.domain.com,
anything that is entered in the place
where the '</em>' is located, will resolve
to the specified IP address. So if you
enter 'www', 'ftp', 'site', or
anything else before the domain name,
it will always resolve to the IP
address</p>
</blockquote>
<p>I have some that are setup in just this way, having *.domain.com go to my site. I then can read the base URL in my web app to see that ryan.domain.com is what was currently accessed, or that bill.domain.com is what was used. I can then either: </p>
<ol>
<li>Use URL rewriting so that the subdomain becomes a part of the query string OR </li>
<li>Simply read the host value from the accessed URL and perform some logic based on that value. </li>
</ol>
<p>Does that make sense? I have several sites set up in just this exact way: create the wildcard for the domain with the DNS host and then simply read the host, or base domain from the URL to decide what to display based on the subdomain (which was actually a username) </p>
<p><strong>Edit 2:</strong> </p>
<p>There is no way to do this without a DNS entry. The "online world" needs to know that name1.domain.com, name2.domain.com,...,nameN.domain.com all go to the IP address for your server. The only way to do this is with the appropriate DNS entry. You have to add the wildcard DNS entry for your domain with your DNS host. Then it's just a matter of you reading the subdomain from the URL and taking the appropriate action in your code. </p>
http://stackoverflow.com/questions/79693/getting-all-types-in-a-namespace-via-reflection/79706#797061Answer by Ryan Farley for Getting all types in a namespace via reflectionRyan Farley2008-09-17T03:38:33Z2008-09-17T03:57:55Z<pre><code>using System.Reflection;
using System.Collections.Generic;
//...
static List<string> GetClasses(string nameSpace)
{
Assembly asm = asm.GetExecutingAssembly();
List<string> namespacelist = new List<string>();
List<string> classlist = new List<string>();
foreach (Type type in asm.GetTypes())
{
if (type.Namespace == nameSpace)
namespacelist.Add(type.Name);
}
foreach (string classname in namespacelist)
classlist.Add(classname);
return classlist;
}
</code></pre>
http://stackoverflow.com/questions/26897/recommendations-for-javascript-editor-on-windows2Recommendations for Javascript Editor on Windows?Ryan Farley2008-08-25T21:06:49Z2008-09-17T02:46:39Z
<p>Are there any good recommendations anyone can provide for a good Javascript editor on Windows? </p>
<p>I currently use combinations of FireBug and TextPad but would hate to miss out on the party if there are better options out there. </p>
<p>Thanks.</p>
http://stackoverflow.com/questions/74019/specifying-filename-for-dynamic-pdf-in-asp-net/74049#740492Answer by Ryan Farley for Specifying filename for dynamic PDF in asp.netRyan Farley2008-09-16T16:10:34Z2008-09-16T16:10:34Z<p>Add a content-disposition to the header: </p>
<pre><code>Response.AddHeader("content-disposition", "attachment;filename=MyFile.pdf");
</code></pre>
http://stackoverflow.com/questions/61733/c-casting-vs-parse/61768#617680Answer by Ryan Farley for C# Casting vs. ParseRyan Farley2008-09-15T00:50:58Z2008-09-15T00:50:58Z<p>Parse requires a string for input, casting requires an object, so in the second example you provide above, then you are required to perform two casts: one from an object to a string, then from a string to a DateTime. The first does not. </p>
<p>However, if there is a risk of an exception when you perform the cast, then you might want to go the second route so you can TryParse and avoid an expensive exception to be thrown. Otherwise, go the most efficient route and just cast once (from object to DateTime) rather than twice (from object to string to DateTime).</p>
http://stackoverflow.com/questions/60919/is-sqlcommand-dispose-enough/60934#6093411Answer by Ryan Farley for Is SqlCommand.Dispose enough?Ryan Farley2008-09-13T22:20:59Z2008-09-13T22:27:29Z<p>No, Disposing of the Command will not effect the Connection. A better approach would be to also wrap the SqlCommand in a using block as well </p>
<pre><code>using (SqlConnection conn = new SqlConnection(connstring))
{
conn.Open();
using (SqlCommand cmd = new SqlCommand(cmdstring, conn))
{
cmd.ExecuteNonQuery();
}
}
</code></pre>
<p>Otherwise, the Connection is unchanged by the fact that a Command that was using it was disposed (maybe that is what you want?). But keep in mind, that a Connection should
be disposed of as well, and likely more important to dispose of than a command. </p>
<p><strong>EDIT:</strong> </p>
<p>I just tested this: </p>
<pre><code>SqlConnection conn = new SqlConnection(connstring);
conn.Open();
using (SqlCommand cmd = new SqlCommand("select field from table where fieldid = 1", conn))
{
Console.WriteLine(cmd.ExecuteScalar().ToString());
}
using (SqlCommand cmd = new SqlCommand("select field from table where fieldid = 2", conn))
{
Console.WriteLine(cmd.ExecuteScalar().ToString());
}
conn.Dispose();
</code></pre>
<p>The first command was disposed when the using block was exited. The connection was still open and good for the second command. </p>
<p><strong><em>So, disposing of the command definitely does not dispose of the connection it was using.</em></strong></p>
http://stackoverflow.com/questions/60816/whats-a-good-blogging-system-to-setup-with-a-domain/60900#609001Answer by Ryan Farley for Whats a good blogging system to setup with a domain.Ryan Farley2008-09-13T21:44:11Z2008-09-13T21:44:11Z<p>Personally, I like to use a blogging engine that is built on technologies I know. I am a .NET developer and so I use <a href="http://subtextproject.com/" rel="nofollow">Subtext</a> or <a href="http://www.dotnetblogengine.net/" rel="nofollow">BlogEngine.NET</a> because they are open source and also because they are built on .NET so I can tweak them as I'd like. Anyway, something to consider. </p>
<p>BTW, regardless, I do highly recommend Subtext or BlogEngine.NET if you plan to self host and want to go an ASP.NET route.</p>
http://stackoverflow.com/questions/40969/linked-in-api/41015#41015Comment by Ryan Farley on Linked in APIRyan Farley2009-11-23T17:17:40Z2009-11-23T17:17:40ZYou are correct, my answer is dated, posted 14 months ago. LinkedIn has (finally) launched a public API <a href="http://developer.linkedin.com" rel="nofollow">developer.linkedin.com</a>http://stackoverflow.com/questions/21857/when-do-you-know-its-time-to-rewrite-an-application/21860#21860Comment by Ryan Farley on When do you know it's time to rewrite an applicationRyan Farley2009-11-17T23:22:29Z2009-11-17T23:22:29ZWhen have you ever built an application that you didn't think you could have done better if you could do it all over again? Getting rid of technical debt, moving to an easier to use or more up to date architecture, or just using all the "lessons learned" the first time around. Fact is, the time and cost involved in rewriting it is the only reason not to. So, if that isn't a factor, why wouldn't you? This is the only way things move forward and we're not all using ancient technologies anymore. All comes back to "when" client is ready to pay.http://stackoverflow.com/questions/965817/work-flow-for-authentication-and-api-use-with-twitter-on-oauth/965881#965881Comment by Ryan Farley on Work flow for authentication and API use with Twitter on OAuthRyan Farley2009-06-08T22:40:30Z2009-06-08T22:40:30ZYeah, I understand. However, for OAuth in a desktop app, there is no other option. The whole point of OAuth is to <i>not</i> have your app ask for credentials.http://stackoverflow.com/questions/60919/is-sqlcommand-dispose-enough/60934#60934Comment by Ryan Farley on Is SqlCommand.Dispose enough?Ryan Farley2009-05-16T17:16:22Z2009-05-16T17:16:22ZThe point of the example is not to show a simpler syntax, but to demonstrate that both SqlCommands can be used with the same connection and then disposed without disposing of the connection. The connection needs to be opened and then used twice in order to demonstrate this (see original question).http://stackoverflow.com/questions/641464/net-control-like-outlooks-e-mail-address-text-control/840799#840799Comment by Ryan Farley on .NET Control like Outlook's E-mail Address Text ControlRyan Farley2009-05-08T21:41:51Z2009-05-08T21:41:51ZI ended up going a similar route. Thanks for the comment.http://stackoverflow.com/questions/762920/school-locator-by-address-api/762925#762925Comment by Ryan Farley on School Locator by Address API ?Ryan Farley2009-04-18T05:04:21Z2009-04-18T05:04:21ZZillow shows more than just homes listed for sale. Mines not for sale but I can query my address on zillow and see my home and it current estimated value, sq footage, etc along with nearby schools. So it does have the info - whether or not it exposed this via an API, I don't know (probably not).http://stackoverflow.com/questions/26857/how-do-you-programmatically-fill-in-a-form-and-post-a-web-page/26881#26881Comment by Ryan Farley on How do you programmatically fill in a form and 'POST' a web page?Ryan Farley2009-03-28T02:39:13Z2009-03-28T02:39:13ZIn the sample above, the returnvalue contains the data returned from the request.http://stackoverflow.com/questions/641464/net-control-like-outlooks-e-mail-address-text-control/641562#641562Comment by Ryan Farley on .NET Control like Outlook's E-mail Address Text ControlRyan Farley2009-03-13T05:36:54Z2009-03-13T05:36:54ZI used the words "text area" to describe what this control is in Outlook. The screenshot shows a list of addresses and the question describes a list of e-mail addresses, each one being a complete "item" of sorts in this list of addresses, which in Outlook is a text area, the user can also type therehttp://stackoverflow.com/questions/641464/net-control-like-outlooks-e-mail-address-text-control/641562#641562Comment by Ryan Farley on .NET Control like Outlook's E-mail Address Text ControlRyan Farley2009-03-13T05:29:02Z2009-03-13T05:29:02ZThat is completely not the same thing. I'm not seeing how you would use a MaskedTextBox to provide that sort of functionality. It would need to be something like an owner-drawn ListView of sorts.http://stackoverflow.com/questions/79693/getting-all-types-in-a-namespace-via-reflection/79706#79706Comment by Ryan Farley on Getting all types in a namespace via reflectionRyan Farley2008-10-03T16:53:54Z2008-10-03T16:53:54ZI vote an answer down if it is not helpful to the question that was asked. The hint you see as you hover over the up/down vote button says "This was helpful". The decision to up/down vote an answer, for me, is whether or not it was helpful in answering the question asked.http://stackoverflow.com/questions/44421/outlook-email-via-a-webpage/44464#44464Comment by Ryan Farley on Outlook Email via a WebpageRyan Farley2008-09-23T14:19:06Z2008-09-23T14:19:06Z@Oliver Giesen, it's not that mailto "takes up too much space". Mailto has certain length limitations, if your message is too long it will be truncated.http://stackoverflow.com/questions/107383/what-is-the-best-windows-program-launcher/107423#107423Comment by Ryan Farley on What is the best (Windows) program launcher?Ryan Farley2008-09-20T23:01:32Z2008-09-20T23:01:32Z@Nikhil, both links work for me. Just tried them again and got to the correct pages.http://stackoverflow.com/questions/106887/know-any-great-blogging-tools-for-programming-blogs/106894#106894Comment by Ryan Farley on Know Any Great Blogging Tools for Programming Blogs?Ryan Farley2008-09-20T03:17:47Z2008-09-20T03:17:47ZWow, that looks completely too complicated for a single blog post if you ask me. I'd say he needs better tools.http://stackoverflow.com/questions/79693/getting-all-types-in-a-namespace-via-reflection/79706#79706Comment by Ryan Farley on Getting all types in a namespace via reflectionRyan Farley2008-09-19T21:56:42Z2008-09-19T21:56:42ZThe problem with SO is that people will downmod an answer simply because they didn't like <i>how</i> it was answered, even though it is a completely valid and correct answer. My answer got a downmod likely because someone didn't like my use of lists, even though it is a correct answer to what was asked.http://stackoverflow.com/questions/79693/getting-all-types-in-a-namespace-via-reflection/79706#79706Comment by Ryan Farley on Getting all types in a namespace via reflectionRyan Farley2008-09-19T21:53:17Z2008-09-19T21:53:17ZA prime example of this is aku's example using LINQ to get the results. His code is great (I loved it) but it obfuscated what Chethan was wanting to really know. Chethan is responsible for implementing this however he sees fit. Our responsibility was to show him how to get the classnames.