User jhunter - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T17:38:02Z http://stackoverflow.com/feeds/user/51709 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1670004/webservice-with-security-headers 1 Webservice with security headers jhunter 2009-11-03T20:39:28Z 2009-11-04T03:51:34Z <p>I'm trying to consume a third party webservice (from the Component Interface in Peoplesoft), but in order to authenticate I have to have a header that looks like this:</p> <pre><code>&lt;soapenv:Header xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;wsse:Security soap:mustUnderstand="1" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"&gt; &lt;wsse:UsernameToken&gt; &lt;wsse:Username&gt;X&lt;/wsse:Username&gt; &lt;wsse:Password&gt;X&lt;/wsse:Password&gt; &lt;/wsse:UsernameToken&gt; &lt;/wsse:Security&gt; &lt;/soapenv:Header&gt; </code></pre> <p>I added a block to the web.config file in my app that's trying to use the webservice as follows:</p> <pre><code>&lt;system.serviceModel&gt; &lt;client&gt; &lt;header&gt; &lt;endpoint&gt; &lt;wsse:Security soap:mustUnderstand="1" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"&gt; &lt;wsse:UsernameToken&gt; &lt;wsse:Username&gt;X&lt;/wsse:Username&gt; &lt;wsse:Password&gt;X&lt;/wsse:Password&gt; &lt;/wsse:UsernameToken&gt; &lt;/wsse:Security&gt; &lt;/endpoint&gt; &lt;/header&gt; &lt;/client&gt; &lt;/system.serviceModel&gt; </code></pre> <p>But the header still doesn't appear in the XML request to the webservice.</p> <p>Am I even on the right track?</p> http://stackoverflow.com/questions/1369323/webservice-returning-text-plain-whern-text-xml-is-expected 0 Webservice returning text/plain whern text/xml is expected? jhunter 2009-09-02T18:17:59Z 2009-09-02T19:12:02Z <p>I need to use People Soft's component interface in order to communicate with People Soft. I can't find any sort of documentation for this so I'm having to go off an old version of software in house that interfaces with an old version of People Soft to learn it.</p> <p>The People Soft people I work with also don't know anything about the Component Interface, but but they have evidently set up some web services with and given me the wsdl files. I've got it set up in VS2k8 and wrote a little application to try calling a webservice to see if it works. I get this message:</p> <blockquote> <p>Client found response content type of 'text/plain; charset=UTF-8', but expected 'text/xml'.</p> </blockquote> <p>Googling it hasn't given me much help. I asked the PS guys to look through the settings and see if there is a way to change the output, but they say they don't see anything like that in there.</p> <p>The address I got from the WSDL for the webservice is http:///PeopleSoftServiceListeningConnector when I just put that address in a web browser I get what looks like SOAP xml with "IBRequest:getInfoXMLString(). ExternalOperationName is a required field." in faultstring tags.</p> <p>Any insight into this problem would be great. I don't know if I'm just doing it wrong or PS isn't configured properly and I'm really just fumbling in the dark. Hell even if you just know where there is PS Component Interface documentation hidden somewhere that would be great.</p> <p>EDIT: After following Jon Skeet's advice to use fiddler I have this as the response from the webservice:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;IBInfo&gt; &lt;Status&gt; &lt;StatusCode&gt;20&lt;/StatusCode&gt; &lt;MsgSet&gt;158&lt;/MsgSet&gt; &lt;MsgID&gt;10409&lt;/MsgID&gt; &lt;DefaultTitle&gt;Integration Gateway Error&lt;/DefaultTitle&gt; &lt;/Status&gt; &lt;/IBInfo&gt; </code></pre> http://stackoverflow.com/questions/1015115/web-config-override-doesnt-affect-user-controls 1 Web.config override doesn't affect user controls. jhunter 2009-06-18T20:47:08Z 2009-06-19T23:06:22Z <p>I have a sub folder that has an aspx page and a web.config file that overrides a connection string in the web.config in the root directory. The problem is if the aspx page contains any user controls the user controls still get the connection string from the web.config in the root directory. Is there anyway to force them to use the web.config that the parent aspx page uses?</p> http://stackoverflow.com/questions/926481/form-tag-on-asp-net-page 2 Form tag on ASP.net page jhunter 2009-05-29T15:07:00Z 2009-06-16T18:38:48Z <p>I have a web application that has a page that loads the content from the database. I want to be able to put a form in the dynamic content, but .net doesn't let the inside form perform it's action. Is there a way to allow this or some other way I can get a form on a dynamic content page?</p> <p>Thanks.</p> <p>--EDIT--</p> <p>I think I need to clarify something. This is an aspx page that loads content from the database. As far as I know, the text I pull from the db and stick in the Label is never compiled or processed by the .net wp, thus I can't use the code behind to fix this issue.</p> http://stackoverflow.com/questions/916711/webmethod-receives-null-in-parameters 0 WebMethod receives null in parameters jhunter 2009-05-27T16:23:42Z 2009-05-27T18:22:44Z <p>I have a webservice with a method that has two string parameters. When I'm debugging I can see in my calling method where it passes two string values into the method, but the actualy WebMethod just gets null for both values. Here is some code:</p> <p>WebMethod</p> <pre><code>[WebMethod(Description = "Set username and password for validation purposes.")] public void Login(string uname, string pword) { username = uname; password = pword; } </code></pre> <p>Calling Method</p> <pre><code>NewsletterEmailSubscribers nes = new NewsletterEmailSubscribers(); nes.Login("Username", "Password"); </code></pre> <p>What am I doing wrong here?</p> <p>--EDIT--</p> <p>Adding more code.</p> <p>The web service:</p> <pre><code>[WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [ToolboxItem(false)] public class NewsletterEmailSubscribers : WebService { private static string username, password; public NewsletterEmailSubscribers() { } /// &lt;summary&gt; /// Logins the specified username. /// &lt;/summary&gt; /// &lt;param name="username"&gt;The username.&lt;/param&gt; /// &lt;param name="password"&gt;The password.&lt;/param&gt; [WebMethod(Description = "Set username and password for validation purposes.")] public void Login(string uname, string pword) { username = uname; password = pword; } /// &lt;summary&gt; /// Adds subscriber email account. /// &lt;/summary&gt; /// &lt;param name="emailAddress"&gt;The email address&lt;/param&gt; /// &lt;param name="newsletterType"&gt;The newsletter they have signed up to receive&lt;/param&gt; /// &lt;param name="validationCode"&gt;The validation code&lt;/param&gt; [WebMethod(Description = "Initial add of subscriber email address and newsletter signing up for.")] public void AddSubscriber( string emailAddress, string newsletterType, string validationCode) { // Check some values //Authenticate user, will throw exception if the user is invalid using (SOAValidation validation = new SOAValidation()) { validation.ValidateConnection(validationCode, username, password, "Full"); } OracleParameterCollection parameters = new OracleParameterCollection(); parameters.AddWithValue("subscriber_email", emailAddress); parameters.AddWithValue("newsletter_type", newsletterType); Database.ExecuteQuery("dw.newsletter_pkg.newsletter_subscriber_add", parameters); } } </code></pre> <p>Webpage using the service (NewsletterEmailSubscribers)</p> <pre><code>private void SubmitEmail(string email) { if (ValidateEmail(email)) { try { NewsletterEmailSubscribers nes = new NewsletterEmailSubscribers(); nes.Login("Username", "Password"); string validationCode; using (Cokesbury.RemoteValidation.Validator validator = new Cokesbury.RemoteValidation.Validator()) { validationCode = validator.ValidationCode(System.Configuration.ConfigurationManager.AppSettings["PasswordSalt"].ToString()); } // submit to db nes.AddSubscriber(email, "FICT", validationCode); // Switch to confirm message mvPage.SetActiveView(vwThankYou); } catch (Exception ex) { mvPage.SetActiveView(vwFail); bool rethrow = ExceptionPolicy.HandleException(ex, "Presentation Services Exception Policy"); if (rethrow) { throw (ex); } } } else lblEmailError.Visible = true; } </code></pre> http://stackoverflow.com/questions/848679/reading-a-binary-file-and-using-response-binarywrite 2 Reading a binary file and using Response.BinaryWrite() jhunter 2009-05-11T15:35:11Z 2009-05-11T18:15:44Z <p>I have an app that needs to read a PDF file from the file system and then write it out to the user. The PDF is 183KB and seems to work perfectly. When I use the code at the bottom the browser gets a file 224KB and I get a message from Acrobat Reader saying the file is damaged and cannot be repaired.</p> <p>Here is my code (I've also tried using File.ReadAllBytes(), but I get the same thing):</p> <pre><code>using (FileStream fs = File.OpenRead(path)) { int length = (int)fs.Length; byte[] buffer; using (BinaryReader br = new BinaryReader(fs)) { buffer = br.ReadBytes(length); } Response.Clear(); Response.Buffer = true; Response.AddHeader("content-disposition", String.Format("attachment;filename={0}", Path.GetFileName(path))); Response.ContentType = "application/" + Path.GetExtension(path).Substring(1); Response.BinaryWrite(buffer); } </code></pre> http://stackoverflow.com/questions/774761/writing-out-a-zip-file-doesnt-work-in-ie7 1 Writing out a zip file doesn't work in IE7 jhunter 2009-04-21T21:42:47Z 2009-04-21T21:51:57Z <p>I have inherited an old application that stores a zip file in a database and needs to retrieve this file. In Firefox is works fine, I can open the zip and each file inside it is fine. When I run it in IE7 I get the following error.</p> <blockquote> <p>Internet Explorer cannot download ProductContentFormImage.aspx from localhost.</p> <p>Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later.</p> </blockquote> <p>I am using the code below.</p> <pre><code>byte[] content = (byte[])Session["contentBinary"]; Response.ClearContent(); Response.ClearHeaders(); Response.Clear(); Response.Buffer = true; Response.Expires = 0; Response.ContentType = "application/zip"; Response.AddHeader("Content-Length", content.Length.ToString()); Response.AddHeader("Content-Disposition", "attachment; filename=content.zip"); Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.BinaryWrite(content); Response.End(); </code></pre> http://stackoverflow.com/questions/630682/aspx-page-response-binarywrite-image-on-ie7/723090#723090 0 Answer by jhunter for .aspx page Response.BinaryWrite image on IE7 jhunter 2009-04-06T20:30:47Z 2009-04-06T20:30:47Z <p>The image was corrupted in a way that IE7 could not display it, but Firefox could. The image was large it wouldn't fit on the screen and I didn't see where it was cut off.</p> <p>Thanks for all your suggestions.</p> http://stackoverflow.com/questions/630682/aspx-page-response-binarywrite-image-on-ie7 0 .aspx page Response.BinaryWrite image on IE7 jhunter 2009-03-10T15:04:43Z 2009-04-06T20:30:47Z <p>I maintain an application that has a .aspx page that loads on image from the database and uses Response.BinaryWrite() to write it back to the client. This worked perfectly not long ago. Two things have changed, we upgraded the application to .NET 3.5 and they upgraded all the computers at work to IE7.</p> <p>Everything works fine on Firefox, but all I get in IE7 is a red X. So I assume this issue is related to IE7? Is there a security setting somewhere that would stop it from loading images from a .aspx form? It's already set to display based on the content type and not the extension.</p> <p>Here is some of the code. Like I said, I just maintain this app and didn't write it. I know using Session is not a great way of doing it, but it's what I have and the switch statement is just a "wtf?".</p> <pre><code>&lt;asp:image id="imgContent" runat="server" Visible="true" ImageUrl="ProductContentFormImage.aspx"&gt;&lt;/asp:image&gt; protected void Page_Load(object sender, System.EventArgs e) { Hashtable hshContentBinary = (Hashtable)Session["hshContentBinary"]; byte[] content = (byte[]) hshContentBinary["content"]; string extension = (string) hshContentBinary["extension"]; string contentTypePrefix = "application"; switch(extension.ToLower()) { case "gif": case "jpg": case "bmp": contentTypePrefix = "image"; break; case "tif": contentTypePrefix = "image"; break; case "tiff": contentTypePrefix = "image"; break; case "eps": contentTypePrefix = "image"; break; default: Response.AppendHeader( "Content-disposition", "attachment; filename=content." + extension ); break; } Response.ContentType = contentTypePrefix + "/" + extension; Response.BinaryWrite(content); } </code></pre> <p>EDIT:</p> <p>OK, I followed your suggestions and through a little more research I have changed the method to the following, but it still doesn't work.</p> <pre><code>protected void Page_Load(object sender, System.EventArgs e) { Hashtable hshContentBinary = (Hashtable)Session["hshContentBinary"]; byte[] content = (byte[]) hshContentBinary["content"]; string extension = (string) hshContentBinary["extension"]; string contentType; string contentDisposition = "inline; filename=content." + extension; Response.ClearContent(); Response.ClearHeaders(); Response.Clear(); switch(extension.ToLower()) { case "gif": contentType = "image/gif"; break; case "jpg": case "jpe": case "jpeg": contentType = "image/jpeg"; break; case "bmp": contentType = "image/bmp"; break; case "tif": case "tiff": contentType = "image/tiff"; break; case "eps": contentType = "application/postscript"; break; default: contentDisposition = "attachment; filename=content." + extension; contentType = "application/" + extension.ToLower(); break; } Response.Buffer = true; Response.Expires = 0; Response.ContentType = contentType; Response.AddHeader("Content-Length", content.Length.ToString()); Response.AddHeader("Content-disposition", contentDisposition); Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.BinaryWrite(content); Response.End(); } </code></pre> http://stackoverflow.com/questions/558592/ajax-net-and-listboxes 0 AJAX.NET and ListBoxes jhunter 2009-02-17T20:32:05Z 2009-02-17T20:47:20Z <p>I have an UpdatePanel with two ListBoxes in them. What I want to happen is that when the page loads the first ListBox fills with some data. When the user selects and item the second ListBox should be populated with the pertinent data.</p> <p>Here is what happens, the first ListBox is filled with data, the user selects an item and the SelectedIndexChanged event fires, but the selection gets cleared before method can see which item was selected?</p> <pre><code>&lt;asp:UpdatePanel ID="UpdatePanel2" runat="server"&gt; &lt;ContentTemplate&gt; &lt;table class="listBoxTable"&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt; Please select a magazine to add articles to.&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tr&gt; &lt;td&gt; &lt;asp:ListBox ID="lbMagazines" runat="server" Height="300px" Width="250px" onselectedindexchanged="lbMagazines_SelectedIndexChanged" DataTextField="Title" DataValueField="Id" AutoPostBack="True"&gt; &lt;/asp:ListBox&gt; &lt;/td&gt; &lt;td&gt; &lt;asp:ListBox ID="lbIssues" runat="server" Height="300px" Width="250px" Enabled="False" DataTextField="Title" DataValueField="Id"&gt; &lt;/asp:ListBox&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> http://stackoverflow.com/questions/547457/when-i-add-an-option-to-a-select-the-select-gets-narrower/554219#554219 0 Answer by jhunter for When I add an option to a select the select gets narrower. jhunter 2009-02-16T19:08:00Z 2009-02-16T19:08:00Z <p>The issue was where the Option was being added to the Select I changed it to the following and it works perfectly:</p> <pre><code>function addValueClick() { var newValue = prompt("Please enter a new value.",""); if (newValue != null &amp;&amp; newValue != "") { var lst = document.getElementById("lstValues"); var opt = document.createElement("option"); opt.text = newValue; opt.value = newValue; try { lst.add(opt, null); // real browsers } catch (ex) { lst.add(opt); // IE } updateBtns(); copyValues(); } } </code></pre> http://stackoverflow.com/questions/547457/when-i-add-an-option-to-a-select-the-select-gets-narrower 1 When I add an option to a select the select gets narrower. jhunter 2009-02-13T20:03:16Z 2009-02-16T19:08:00Z <p>Inherited an app with a page that has a link that calls the javascript function addValueClick(), when I do this a dialog box pops up, I type in some text, and then the text gets put in the select box. Every time a new option is added to the select it gets about 5 pixels narrower. I can't figure out why this is happening, but it only happens in IE7</p> <p>Here is the javascript:</p> <pre><code>function addValueClick() { var newValue = prompt("Please enter a new value.",""); if (newValue != null &amp;&amp; newValue != "") { var lst = document.getElementById("lstValues"); var opt = document.createElement("option"); opt.setAttribute("selected", "true"); opt.appendChild(document.createTextNode(newValue)); lst.appendChild(opt); updateBtns(); copyValues(); } } function copyValues() { var frm = document.forms[0]; var lst = frm.elements["lstValues"]; var hid = frm.elements["hidValues"]; var xml = "&lt;root&gt;"; for (var i = 0; i &lt; lst.options.length; i++) { xml += "&lt;value seq_num=\"" + (i + 1) + "\"&gt;" + lst.options[i].text + "&lt;/value&gt;"; } xml += "&lt;/root&gt;"; hid.value = xml; } function updateBtns() { var lst = document.getElementById("lstValues"); var iSelected = lst.selectedIndex; var lnkEdit = document.getElementById("lnkEditValue"); var lnkDelete = document.getElementById("lnkDeleteValue"); var lnkUp = document.getElementById("lnkValueUp"); var lnkDown = document.getElementById("lnkValueDown"); if (iSelected == -1) { lnkEdit.style.visibility = "hidden"; lnkDelete.style.visibility = "hidden"; lnkUp.style.visibility = "hidden"; lnkDown.style.visibility = "hidden"; } else { lnkEdit.style.visibility = "visible"; lnkDelete.style.visibility = "visible"; if (iSelected == 0) lnkUp.style.visibility = "hidden"; else lnkUp.style.visibility = "visible"; if (iSelected == lst.options.length - 1) lnkDown.style.visibility = "hidden"; else lnkDown.style.visibility = "visible"; } } </code></pre> <p>EDIT: The HTML, it's actually ASP.NET. All the listValueChanged() method does is call updateButtons() above.</p> <pre><code>&lt;tr&gt; &lt;TD class=body vAlign=top noWrap align=right&gt;&lt;b&gt;Values:&lt;/TD&gt; &lt;TD class=body vAlign=top noWrap align=left&gt;&lt;asp:ListBox id="lstValues" runat="server" onchange="lstValuesChange();" Rows="9" onselectedindexchanged="lstValues_SelectedIndexChanged"&gt;&lt;/asp:ListBox&gt;&lt;/TD&gt; &lt;TD class=body vAlign=top noWrap align=left&gt; &lt;TABLE id="Table2" cellSpacing="2" cellPadding="2" border="0"&gt; &lt;TR&gt; &lt;TD noWrap&gt; &lt;asp:HyperLink id="lnkAddValue" runat="server" NavigateUrl="javascript:addValueClick();"&gt;Add&lt;/asp:HyperLink&gt;&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt; &lt;TD noWrap&gt; &lt;asp:HyperLink id="lnkEditValue" runat="server" NavigateUrl="javascript:editValueClick();"&gt;Edit&lt;/asp:HyperLink&gt;&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt; &lt;TD noWrap&gt; &lt;asp:HyperLink id="lnkDeleteValue" runat="server" NavigateUrl="javascript:deleteValueClick();"&gt;Delete&lt;/asp:HyperLink&gt;&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt; &lt;TD noWrap&gt;&amp;nbsp;&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt; &lt;TD noWrap&gt; &lt;asp:HyperLink id="lnkValueUp" runat="server" NavigateUrl="javascript:valueUpClick();"&gt;Up&lt;/asp:HyperLink&gt;&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt; &lt;TD noWrap&gt; &lt;asp:HyperLink id="lnkValueDown" runat="server" NavigateUrl="javascript:valueDownClick();"&gt;Down&lt;/asp:HyperLink&gt;&lt;/TD&gt; &lt;/TR&gt; &lt;/TABLE&gt; &lt;/TD&gt; &lt;/TR&gt; </code></pre> http://stackoverflow.com/questions/547430/c-string-wont-concatenate/547435#547435 5 Answer by jhunter for C# string won't concatenate jhunter 2009-02-13T19:56:03Z 2009-02-13T19:56:03Z <p>Are you assigning it to a string or back to itself?</p> <pre><code>returndata = string.Concat(returndata, "test"); returndata += "test"; </code></pre> http://stackoverflow.com/questions/503651/object-architecture-design-question/503701#503701 -1 Answer by jhunter for Object Architecture Design Question jhunter 2009-02-02T15:58:07Z 2009-02-02T15:58:07Z <p>I would make group a property of Section. Then you can add properties for group1, group2, etc on Parent using LINQ to query the collection an return only those in each group (if you need to be able to do that).</p> http://stackoverflow.com/questions/482381/why-c-get-so-related-with-net-framework/482386#482386 3 Answer by jhunter for Why C# get so related with .NET framework? jhunter 2009-01-27T05:21:08Z 2009-01-27T05:21:08Z <p>It's the most popular language used with .NET.</p> http://stackoverflow.com/questions/448293/just-out-of-school-plenty-of-opportunities-but-no-actual-bites/448385#448385 0 Answer by jhunter for Just out of school, plenty of opportunities but no actual bites jhunter 2009-01-15T20:42:02Z 2009-01-15T20:42:02Z <p>It took me over a year to get a real computer job. The first one is tough, but after that it is usually pretty easy to get a new job in the field.</p> http://stackoverflow.com/questions/429202/why-are-children-of-my-custom-user-control-not-being-initialized/429311#429311 0 Answer by jhunter for Why are children of my custom user-control not being initialized? jhunter 2009-01-09T19:13:46Z 2009-01-09T19:13:46Z <p>Are you setting the HRef on the Page's OnInit method? If so try moving the assignment out to Page_Load.</p> <p>The controls Init from the outermost to the inner most. This means if you do assign the value on the Page's OnInit the controls haven't initialized yet.</p> <p>Here is a decent document on page lifecycle: <a href="http://www.codeproject.com/KB/aspnet/lifecycle.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/lifecycle.aspx</a></p> http://stackoverflow.com/questions/428924/winforms-unceremoniously-quits-with-unhandled-exception 0 Winforms unceremoniously quits with "unhandled exception" jhunter 2009-01-09T17:22:15Z 2009-01-09T17:34:34Z <p>The program spits up one of those boxes saying an unhandled exception has occurred and the application must quit. The only clue I get to solve the problem is this in the event log:</p> <blockquote> <p>Event Type: Error Event Source: .NET Runtime 2.0 Error Reporting Event Category: None Event ID: 5000 Date: 1/9/2009 Time: 8:47:44 AM User: N/A Computer: DADIEHL Description: EventType clr20r3, P1 crm.client.exe, P2 1.0.1.0, P3 49667f61, P4 mscorlib, P5 2.0.0.0, P6 471ebc5b, P7 c35, P8 59, P9 system.formatexception, P10 NIL.</p> </blockquote> <p>So I added the following code to program.cs:</p> <pre><code>try { Application.Run(new WindowContainer()); } catch (Exception exc) { new DialogException(exc).ShowDialog(); } </code></pre> <p>Just so I could catch any exception, but the users are still getting the same message that says the app has to quit. I cannot reproduce this on my computer and thus can't use the debugger to narrow it down. Does anyone know of a way to collect more information or have any ideas what the issue is?</p> http://stackoverflow.com/questions/419774/how-can-you-stop-a-winforms-panel-from-scrolling/421094#421094 1 Answer by jhunter for How can you stop a Winforms Panel from scrolling? jhunter 2009-01-07T16:54:26Z 2009-01-07T16:54:26Z <p>I understand your pain, this has gotten me more than once.</p> <p>If your DataGridView is the only thing in the panel, just set the Dock to Fill and let the DGV handle scrolling on it's own. I don't think it will do the jumping thing anymore. Otherwise, I guess you could just size it so it's less than the panel and let it do the scrolling on it's own.</p> http://stackoverflow.com/questions/417677/capitalizing-word-in-a-string/417686#417686 0 Answer by jhunter for Capitalizing word in a string jhunter 2009-01-06T18:49:50Z 2009-01-06T18:49:50Z <p>Use string.Split(' ') to break up the sentence into a bunch of words than use the code you have to capitalize each word... then put it all back together.</p> http://stackoverflow.com/questions/417087/c-how-do-i-run-some-code-for-the-selected-item-in-a-listbox/417120#417120 1 Answer by jhunter for C# How do I run some code for the selected item in a listbox? jhunter 2009-01-06T16:09:13Z 2009-01-06T16:09:13Z <p>The listbox isn't very intuitive because it contains objects instead of something like ListItem, but if you just want the text you can do this:</p> <pre><code>string selectedText = listbox1.SelectedItem.ToString(); </code></pre> http://stackoverflow.com/questions/414109/should-a-net-generic-dictionary-be-initialised-with-a-capacity-equal-to-the-numb/414155#414155 4 Answer by jhunter for Should a .NET generic dictionary be initialised with a capacity equal to the number of items it will contain? jhunter 2009-01-05T19:10:21Z 2009-01-05T19:10:21Z <p>I did a quick test, probably not scientific, but if I set the size it took 1.2207780 seconds to add one million items and it took 1.5024960 seconds to add if I didn't give the Dictionary a size... this seems negligible to me.</p> <p>Here is my test code, maybe someone can do a more rigorous test but I doubt it matters.</p> <pre><code>static void Main(string[] args) { DateTime start1 = DateTime.Now; var dict1 = new Dictionary&lt;string, string&gt;(1000000); for (int i = 0; i &lt; 1000000; i++) dict1.Add(i.ToString(), i.ToString()); DateTime stop1 = DateTime.Now; DateTime start2 = DateTime.Now; var dict2 = new Dictionary&lt;string, string&gt;(); for (int i = 0; i &lt; 1000000; i++) dict2.Add(i.ToString(), i.ToString()); DateTime stop2 = DateTime.Now; Console.WriteLine("Time with size initialized: " + (stop1.Subtract(start1)) + "\nTime without size initialized: " + (stop2.Subtract(start2))); Console.ReadLine(); } </code></pre> http://stackoverflow.com/questions/413653/why-does-150-150-not-equal-300-in-browsers/413660#413660 21 Answer by jhunter for Why does 150 + 150 not equal 300 in browsers? jhunter 2009-01-05T16:23:49Z 2009-01-05T16:23:49Z <p>There is a border on a textbox that isn't included in the width.</p> http://stackoverflow.com/questions/413623/is-possible-to-obtain-the-csv-separator-from-thread-currentthread-currentculture/413634#413634 7 Answer by jhunter for Is possible to obtain the CSV separator from Thread.CurrentThread.CurrentCulture? (.NET) jhunter 2009-01-05T16:15:16Z 2009-01-05T16:15:16Z <p>System.Globalization.CultureInfo.CurrentCulture.TextInfo.ListSeparator</p> <p>Is the only way I know how.</p> http://stackoverflow.com/questions/1670004/webservice-with-security-headers/1670021#1670021 Comment by jhunter on Webservice with security headers jhunter 2009-11-03T20:56:31Z 2009-11-03T20:56:31Z None of the above as far as I know. I added a web reference in Visual Studio 2008 (.NET 3.5). http://stackoverflow.com/questions/1369323/webservice-returning-text-plain-whern-text-xml-is-expected/1369406#1369406 Comment by jhunter on Webservice returning text/plain whern text/xml is expected? jhunter 2009-09-02T19:12:51Z 2009-09-02T19:12:51Z Thanks for the suggestion, Fiddler will definitely be useful here (and in the future). I have updated question text with what fiddler has shown me. http://stackoverflow.com/questions/1074958/wrong-type-returned-by-peoplesoft-component-interface/1075587#1075587 Comment by jhunter on Wrong type returned by Peoplesoft Component Interface jhunter 2009-07-21T18:18:40Z 2009-07-21T18:18:40Z How do I set .NET to use Http-Get?t I just clicked on add webrefernce to add it to the project then used the objects like normal. http://stackoverflow.com/questions/916711/webmethod-receives-null-in-parameters/917272#917272 Comment by jhunter on WebMethod receives null in parameters jhunter 2009-05-27T19:32:56Z 2009-05-27T19:32:56Z That was it, thanks a bunch. http://stackoverflow.com/questions/848679/reading-a-binary-file-and-using-response-binarywrite Comment by jhunter on Reading a binary file and using Response.BinaryWrite() jhunter 2009-05-12T19:35:18Z 2009-05-12T19:35:18Z After I get the file back I checked the size, I was forgetting to put a Response.End() on there as pointed out by BarneyHDog. http://stackoverflow.com/questions/558592/ajax-net-and-listboxes/558633#558633 Comment by jhunter on AJAX.NET and ListBoxes jhunter 2009-02-17T20:55:06Z 2009-02-17T20:55:06Z Wow, what a newbie mistake. I didn't think the Page_load event would fire on AJAX call backs. Thanks a bunch. http://stackoverflow.com/questions/547457/when-i-add-an-option-to-a-select-the-select-gets-narrower Comment by jhunter on When I add an option to a select the select gets narrower. jhunter 2009-02-13T21:31:18Z 2009-02-13T21:31:18Z No, this is an old application written by someone else, there is very little in the way of CSS. http://stackoverflow.com/questions/547457/when-i-add-an-option-to-a-select-the-select-gets-narrower/547578#547578 Comment by jhunter on When I add an option to a select the select gets narrower. jhunter 2009-02-13T21:30:05Z 2009-02-13T21:30:05Z It's in a table, I included it above.