active questions tagged c# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-21T05:08:43Z http://stackoverflow.com/feeds/tag/c# http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1772632/aspbutton-created-programmatically-eventhandler-does-not-fire 0 asp:button Created Programmatically: EventHandler does not fire Geo Ego 2009-11-20T19:09:12Z 2009-11-21T05:06:32Z <p>I am writing a SharePoint web part which will have a simple ASP.NET form. I am using HtmlTextWriter to render the controls. The problem I have is that my button does not seem to be triggering the EventHandler I have assigned it.</p> <p>I initially declared the button:</p> <pre><code> { Button submitButton; submitButton = new Button(); submitButton.Text = "Go!"; Controls.Add(submitButton); } </code></pre> <p>I have declared the functionality of the "submitButton_Click" EventHandler:</p> <pre><code> void submitButton_Click(object sender, EventArgs e) { submitButton.Text = "Good!"; } </code></pre> <p>I assign the EventHandler and render the button:</p> <pre><code>protected override void RenderContents(System.Web.UI.HtmlTextWriter output) { submitButton.Click += new EventHandler(submitButton_Click); submitButton.RenderControl(output); } </code></pre> <p>Finally, I deploy the web part. It shows up fine in the catalog and when I add it to a page, the control shows up. However, I would assume that when I click the button, its text should change from "Go!" to "Good!" Instead, it does nothing. I'm pretty new to all of these technologies -- C#, Sharepoint, and ASP.NET -- so I'm pretty sure it's a problem with my understanding, but trying different steps from articles all over the net and previous questions here haven't fixed my problem. Thanks for taking a look.</p> <p>EDIT: I opened the SharePoint page with the web part on it and the button has been created like so:</p> <pre><code>&lt;input type="submit" name="ctl00$PlaceHolderMain$ctl00$ctl04" value="Go!" /&gt; </code></pre> <p>It looks like the OnClick value has not been added at all, which is what I thought adding the EventHandler would do. Am I trying to add OnClick in a completely wrong way?</p> http://stackoverflow.com/questions/473945/starting-a-program-on-a-remote-machine-in-wmi-but-also-opening-the-apps-window 0 starting a program on a remote machine in wmi, but also opening the apps window (in c#) jason baisden 2009-01-23T18:25:29Z 2009-11-21T05:00:02Z <p>I've browsed page after page after page of data on the web and everyone seems to say that you cannot have an executable remotely execute an application on another machine via WMI and have the window of that application display.</p> <p>Does anyone know a way around this?</p> <p>I have tried created 2 executables. 1 executable uses the Process class and simply starts an executable. Here's the code:</p> <pre><code> class Program { static void Main( string[ ] args ) { ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.CreateNoWindow = false; startInfo.UseShellExecute = false; startInfo.FileName = "C:\\folder\\Mexe.exe"; startInfo.WindowStyle = ProcessWindowStyle.Normal; //p.MachineName="server"; //p.Start(startInfo); Process p = Process.Start( startInfo ); } } </code></pre> <p>This executable resides on the remote machine.</p> <p>I have another executable that will be on the client's machine. This exe uses WMI in C# to remotely execute the application on the server via the commandline. I get a return code of 0. Nothing happens on the server.</p> <p>Any ideas what I might be doing wrong?</p> <p>I've also thought about creating a scheduled task in task scheduler on the server, but leaving the task disabled.</p> <p>Anyone have an idea what the C# code would be to have a WMI application kick off this task? Would there be a way to discern whether the task/application started finished?</p> http://stackoverflow.com/questions/1148508/custom-web-server-control-fails-when-calling-a-web-service 0 Custom web server control fails when calling a web service vondip 2009-07-18T20:39:55Z 2009-11-21T05:00:02Z <p>Hello all,</p> <p>I've created a web server control, it works fine. Problems start when I try calling an external web service. I am using a script manager and it's directed to the following location --> http:\localhost\UserNamesData.asmx.</p> <p>My server control creates some html controls as well some javascript code. When the user clicks a submit button The javascript calls the external web service. I am using a script manager to register the service reference.</p> <p>Now this seems to work when I put the web service inside the project in which the server control is later registered in (Meaning in my website) and when <em>inline script</em> is set to true. Though it does not work when my web service is not in the same project as my website.</p> <p>I am using aspnet and c# 3.5</p> <p>I have no idea what might cause it to act this way. Any thoughts?</p> http://stackoverflow.com/questions/1774008/cant-get-jquery-autcomplete-to-work-asp-net-mvc 1 Can't get jQuery autcomplete to work. (ASP.NET MVC) johnnycakes 2009-11-21T00:12:37Z 2009-11-21T04:48:42Z <p>Hi,</p> <p>I'm trying to follow the example in <a href="http://stackoverflow.com/questions/826852/asp-net-mvc-please-help-with-search-in-data-entry-form-thanks">this post</a> by <a href="http://stackoverflow.com/users/12950/tvanfosson">tvanfosson</a>. I just can't get it to work. I think the problem is with my JavaScript (?). I say that because if I navigate in my browser to <a href="http://localhost:49790/Books/GetBooks/?q=" rel="nofollow">http://localhost:49790/Books/GetBooks/?q=</a> then the browser downloads a file with the information that I'd expect in the format I'd expect:</p> <pre><code>[{"BookName":"Book 1","AuthorName":"Author 1","BookID":2},{"BookName":"Book 2","AuthorName":"Author 2","BookID":3}] </code></pre> <p>But back on the view, when I start typing in the SearchBox, nothing happens. No autocomplete.</p> <p>Here is my view:</p> <pre><code>&lt;%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %&gt; &lt;asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server"&gt; jQuerySearch &lt;/asp:Content&gt; &lt;asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server"&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { $('#SearchBox').autocomplete('/Books/GetBooks', { dataType: 'json', max: 25, minChars: 1, cacheLength: 1, mustMatch: true, formatItem: function(data, i, max, value) { return value; }, parse: function(data) { var array = new Array(); for (var i = 0; i &lt; data.length; i++) { var datum = data[i]; var display = datum.AuthorName + ' - ' + datum.BookName; array[array.length] = { data: datum, value: display, result: display }; } } }); $('#SearchBox').result(function(event, data, formatted) { if (data) { $('#BookID').val(data.BookID); } }); $('form').submit(function() { if (!$('#BookID').val()) { alert('You must select a book before clicking submit!'); return false; } }); }); &lt;/script&gt; &lt;h2&gt;jQuerySearch&lt;/h2&gt; &lt;%using (Html.BeginForm()){%&gt; &lt;%=Html.TextBox("SearchBox") %&gt; &lt;input type='hidden' id='BookID' name='BookID' /&gt; &lt;%}; %&gt; &lt;/asp:Content&gt; </code></pre> <p>Here is my controller code:</p> <pre><code> public ActionResult GetBooks(string q) { var query = db.Books.Where(e =&gt; e.Name.Contains(q)) .OrderBy(e =&gt; e.Name) .Select(e =&gt; new { BookName = e.Name, AuthorName = e.Author.Name, BookID = e.BookID }); return Json(query.ToList()); } </code></pre> <p>I'm pretty new to all this. Any help is appreciated.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1774291/how-do-i-parse-a-createpenindirect-metafile-record-out-of-a-byte-array 0 How do I parse a CREATEPENINDIRECT metafile record out of a byte array? GdiHelp 2009-11-21T02:17:08Z 2009-11-21T04:40:32Z <p>I need a little help in defining the following Windows GDI type in C#. I have the data in the form of a <code>byte[]</code> in C#, and I need to somehow marshal or cast it as the following in C#. Please see <a href="http://stackoverflow.com/questions/1773953">my other question</a>, as I got the answer to the Polyline. This is the type:</p> <h3>NAME</h3> <pre><code>META_CREATEPENINDIRECT </code></pre> <h3>NEAREST API CALL</h3> <pre><code>#include &lt;windows.h&gt; HPEN32 CreatePenIndirect(const LOGPEN32 *pen); typedef struct tagLOGPEN { UINT lopnStyle; POINT lopnWidth; COLORREF lopnColor; } LOGPEN; </code></pre> <h3>DESCRIPTION</h3> <pre> U16 Value 0 lopnStyle 1 lopnWidth 2, 3 lopnColor </pre> <blockquote> <p>lopnColor is the color of the pen, lopnWidth is the width of the pen, if the pen's width is &gt; 1 but the lopnStyle is not solid, then lopnStyle is ignored and set to solid anyway.</p> <p>lopnStyle can be one of <code>PS_SOLID</code>, <code>PS_DASH</code>, <code>PS_DOT</code>, <code>PS_DASHDOT</code>, <code>PS_DASHDOTDOT</code>, <code>PS_NULL</code>, <code>PS_INSIDEFRAME</code>, <code>PS_USERSTYLE</code>, <code>PS_ALTERNATE</code>. Check out the source for that they actually mean.</p> <p>Theres also a set of flags and masks that can be found in lopnStyle as well that set the end and join styles of lines drawn with a pen, they are <code>PS_STYLE_MASK</code>, <code>PS_ENDCAP_ROUND</code>, <code>PS_ENDCAP_SQUARE</code>, <code>PS_ENDCAP_FLAT</code>, <code>PS_ENDCAP_MASK</code>, <code>PS_JOIN_ROUND</code>, <code>PS_JOIN_BEVEL</code>, <code>PS_JOIN_MITER</code>, <code>PS_JOIN_MASK</code>, <code>PS_COSMETIC</code>, <code>PS_GEOMETRIC</code>, <code>PS_TYPE_MASK</code>, again check out the source to figure these out.</p> </blockquote> <p><hr></p> <p>Update: This is as close as I can get so far:</p> <pre><code>fixed (byte* b = dataArray) { byte* ptr = (byte*)b; // Get style l_nStyle = (ushort)*(ptr); ++ptr; // Get width l_nWidth = (ushort)*(++ptr); ++ptr; // skip one ushort ++ptr; ++ptr; // Get RGB colors l_nColorR = (ushort)*(++ptr); l_nColorG = (ushort)*(++ptr); l_nColorB = (ushort)*(++ptr); } </code></pre> http://stackoverflow.com/questions/1774446/how-to-get-the-properties-of-a-class-using-reflection-specifying-how-many-levels 0 How to get the properties of a class using reflection (specifying how many levels of heirarchy) in C#.Net? ace 2009-11-21T03:51:24Z 2009-11-21T04:32:19Z <p>So for example:</p> <pre><code>class GrandParent { public int GrandProperty1 { get; set; } public int GrandProperty2 { get; set; } } class Parent : GrandParent { public int ParentProperty1 { get; set; } public int ParentProperty2 { get; set; } protected int ParentPropertyProtected1 { get; set; } } class Child : Parent { public int ChildProperty1 { get; set; } public int ChildProperty2 { get; set; } protected int ChildPropertyProtected1 { get; set; } } </code></pre> <p>but when i do this:</p> <pre><code>public String GetProperties() { String result = ""; Child child = new Child(); Type type = child.GetType(); PropertyInfo[] pi = type.GetProperties(); foreach (PropertyInfo prop in pi) { result += prop.Name + "\n"; } return result; } </code></pre> <p>the function returns</p> <p><code>ChildProperty1</code> <br/> <code>ChildProperty2</code> <br/> <code>ParentProperty1</code> <br/> <code>ParentProperty2</code> <br/> <code>GrandProperty1</code> <br/> <code>GrandProperty2</code></p> <p>but I just need the properties up to the Parent class</p> <p><code>ChildProperty1</code> <br/> <code>ChildProperty2</code> <br/> <code>ParentProperty1</code> <br/> <code>ParentProperty2</code></p> <p>Is there any possible way which we could specify how many levels of heirarchy could be used so the result returned would be as desired? Thanks in advance.</p> http://stackoverflow.com/questions/1772069/best-practices-for-how-to-layer-a-asp-net-c-web-app 0 Best practices for how to Layer a ASP.NET/C# web app corymathews 2009-11-20T17:30:41Z 2009-11-21T04:28:30Z <p>I have been working on an ASP.NET/C# web app for some time and its size has gotten way to large for how it is being programmed. It has become very hard to maintain and getting harder quickly, something that used to take an 1hr to update now takes about 3-4hrs. </p> <p>I believe that reworking the app to use different layers would help solve many of these problems. However the more I read the more it seems that everyone does it differently, but achieve mostly the same goals.</p> <p>I have seen layers such as Presentation/UI, DB, Business, Services, ect. It appears that a 3 layer may be the best but I am unsure.</p> <p><strong>What layers should I have in a web app and what should each include or be limited to?</strong></p> <p>Words from previous experience are most appreciated. </p> http://stackoverflow.com/questions/1774498/how-to-iterate-through-a-datatable 0 How to iterate through a DataTable prince23 2009-11-21T04:16:14Z 2009-11-21T04:26:39Z <p>I need to iterate through a <code>DataTable</code>. I have an column there named <code>ImagePath</code>.</p> <p>When I am using <code>DataReader</code> I do it this way:</p> <pre><code>SqlDataReader dr = null; dr = cmd.ExecuteReader(); while (dr.Read()) { TextBox1.Text = dr["ImagePath"].ToString(); } </code></pre> <p>How can I achieve the same thing using <code>DataTable</code>?</p> http://stackoverflow.com/questions/1773426/convert-a-list-of-structs-from-c-to-c 0 convert a list of structs from c# to c++ unknown (google) 2009-11-20T21:44:48Z 2009-11-21T04:24:04Z <p>I have the following c# code</p> <pre><code>static void Main(string[] args) { List&lt;Results&gt; votes = new List&lt;Results&gt;(); } public struct Results { public int Vote1; public int Vote2; public int Vote3; public Candidate precinctCandidate; }; public class Candidate { public Candidate() { } private string name; public string Name { get { return name; } set { name = value; } } private string lastName; public string LastName { get { return lastName; } set { lastName = value; } } } </code></pre> <p>I want to convert that code into Visual c++ CLR, Thanks</p> http://stackoverflow.com/questions/1774410/invocation-of-methods-with-params-generic-cousins 0 Invocation of methods (with 'params'/generic cousins) Vyas Bharghava 2009-11-21T03:33:35Z 2009-11-21T04:13:23Z <p>I've been trying to find an answer for this for a while.... Any ideas on how do I get to invoke all of the methods here?</p> <pre><code>using System; namespace ThinkFarAhead.Examples { public class Params { public static void Main() { Max(1, 2); Max(1); //Invokes #2?... Invokes #1 actually Max&lt;int&gt;(1, 2); Max&lt;long&gt;(1); //Invokes #4?... Invokes #3 } //#1 public static int Max(int first, params int[] values) { if (values.Length == 0) { Console.WriteLine("[1] Param #1: {0}", first); return 0; } Console.WriteLine("[1] Param #2: {0}", values[0]); return default(int); } //#2 public static int Max(params int[] values) { Console.WriteLine("[2] Param #1: {0}", values[0]); return default(int); } //#3 public static T Max&lt;T&gt;(T first, params T[] values) { if (values.Length == 0) { Console.WriteLine("[3] Param #1: {0}", first); return default(T); } Console.WriteLine("[3] Param #2: {0}", values[0]); return default(T); } //#4 public static T Max&lt;T&gt;(params T[] values) { Console.WriteLine("[4] Param #1: {0}", values[0]); return default(T); } } } </code></pre> <p>Answer:</p> <pre><code> //Normal method takes precedence over its generic cousin... //Explicit parameter mappings take precedence over params match Max(1, 2); Max(new[] {1}); //Single array of ints Max&lt;int&gt;(1, 2); //Can't pick generic equivalent unless explicitly called Max(new []{1L}); //Single array of longs </code></pre> http://stackoverflow.com/questions/1769053/when-would-you-use-a-listkeyvaluepairt1-t2-instead-of-a-dictionaryt1-t2 3 When would you use a List<KeyValuePair<T1, T2>> instead of a Dictionary<T1, T2>? Corpsekicker 2009-11-20T08:33:56Z 2009-11-21T04:12:47Z <p>What is the difference between a List of KeyValuePair and a Dictionary for the same types? Is there an appropriate time to use one or the other?</p> http://stackoverflow.com/questions/1774363/using-httpwebrequest-with-dynamic-uri-causes-parameter-is-not-valid-in-image-fr 0 Using HttpWebRequest with dynamic URI causes "parameter is not valid" in Image.FromStream Dan Bailiff 2009-11-21T03:05:14Z 2009-11-21T03:05:14Z <p>I'm trying to obtain an image to encode to a WordML document. The original version of this function used files, but I needed to change it to get images created on the fly with an aspx page. I've adapted the code to use HttpWebRequest instead of a WebClient. The problem is that I don't think the page request is getting resolved and so the image stream is invalid, generating the error "parameter is not valid" when I invoke Image.FromStream.</p> <pre><code> public string RenderCitationTableImage(string citation_table_id) { string image_content = ""; string _strBaseURL = String.Format("http://{0}", HttpContext.Current.Request.Url.GetComponents(UriComponents.HostAndPort, UriFormat.Unescaped)); string _strPageURL = String.Format("{0}{1}", _strBaseURL, ResolveUrl("~/Publication/render_citation_chart.aspx")); string _staticURL = String.Format("{0}{1}", _strBaseURL, ResolveUrl("~/Images/table.gif")); string _fullURL = String.Format("{0}?publication_id={1}&amp;citation_table_layout_id={2}", _strPageURL, publication_id, citation_table_id); try { HttpWebRequest request = (HttpWebRequest)WebRequest.Create(_fullURL); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); Stream image_stream = response.GetResponseStream(); // Read the image data MemoryStream ms = new MemoryStream(); int num_read; byte[] crlf = System.Text.Encoding.Default.GetBytes("\r\n"); byte[] buffer = new byte[1024]; for (num_read = image_stream.Read(buffer, 0, 1024); num_read &gt; 0; num_read = image_stream.Read(buffer, 0, 1024)) { ms.Write(buffer, 0, num_read); } // Base 64 Encode the image data byte[] image_bytes = ms.ToArray(); string encodedImage = Convert.ToBase64String(image_bytes); ms.Position = 0; System.Drawing.Image image_original = System.Drawing.Image.FromStream(ms); // &lt;---error here: parameter is not valid image_stream.Close(); image_content = string.Format("&lt;w:p&gt;{4}&lt;w:r&gt;&lt;w:pict&gt;&lt;w:binData w:name=\"wordml://{0}\"&gt;{1}&lt;/w:binData&gt;" + "&lt;v:shape style=\"width:{2}px;height:{3}px\"&gt;" + "&lt;v:imagedata src=\"wordml://{0}\"/&gt;" + "&lt;/v:shape&gt;" + "&lt;/w:pict&gt;&lt;/w:r&gt;&lt;/w:p&gt;", _word_image_id, encodedImage, 800, 400, alignment.center); image_content = "&lt;w:br w:type=\"text-wrapping\"/&gt;" + image_content + "&lt;w:br w:type=\"text-wrapping\"/&gt;"; } catch (Exception ex) { return ex.ToString(); } return image_content; </code></pre> <p>Using a static URI it works fine. If I replace "staticURL" with "fullURL" in the WebRequest.Create method I get the error. Any ideas as to why the page request doesn't fully resolve?</p> <p>And yes, the full URL resolves fine and shows an image if I post it in the address bar. </p> http://stackoverflow.com/questions/1145426/automated-filedownload-using-webbrowser-without-url 1 Automated filedownload using WebBrowser without url Sharath 2009-07-17T20:09:28Z 2009-11-21T03:00:03Z <p>I've been working on a WebCrawler written in C# using System.Windows.Forms.WebBrowser. I am trying to download a file off a website and save it on a local machine. More importantly, I would like this to be fully automated. The file download can be started by clicking a button that calls a javascript function that sparks the download displaying a “Do you want to open or save this file?” dialog. I definitely do not want to be manually clicking “Save as”, and typing in the file name. </p> <p>I am aware of HttpWebRequest and WebClient’s download functions, but since the download is started with a javascript, I do now know the url of the file. Fyi, the javascript is a doPostBack function that changes some values and submits a form. </p> <p>I’ve tried getting focus on the save as dialog from WebBrowser to automate it from in there without much success. I know there’s a way to force the download to save instead of asking to save or open by adding a header to the http request, but I don’t know how to specify the filepath to download to. </p> <p>Any thoughts would be greatly appreciated. </p> <p>Thanks, Sharath</p> http://stackoverflow.com/questions/1774351/how-to-force-a-certain-usercontrol-design 2 How to force a certain UserControl design AngryHacker 2009-11-21T02:52:20Z 2009-11-21T02:52:20Z <p>I am writing a Base UserControl, that will be inherited by a bunch of other UserControls. I need to enforce a certain design for all these descendant controls (e.g. a couple of buttons must be on the top along with a label or two).</p> <p>The rest of the descendant UserControl area is free to have whatever on it. </p> <p>Initially, I thought that I could just plop a Panel onto the Base UserControl, set the Dock=Fill and the designer of the descendant control would be forced to add all the UI into this said panel. Then, I could resize the panel to my content. </p> <p>But that is not the case - when you drop a control (say a GridView) onto the descendant UserControl, it adds it to the .Controls collection of the descendant user control, not the Panel I added.</p> <p>Is there a way to force a certain layout from the Base user control?</p> http://stackoverflow.com/questions/1722637/asp-net-background-processing-blocks-status-or-ui-feedback 0 ASP.NET background processing blocks status or UI feedback spiderdevil 2009-11-12T14:41:37Z 2009-11-21T02:44:18Z <p>I know this question has been asked many times, but my problem is a little different.</p> <p>I have page which lets user download and upload excel file. During downloading excel, it takes approx 2 mins to generate the file. I have added checkpoints which updates the database with status like (started processing, working on header ...etc). I have done the same thing for upload.</p> <p>I also have a ajax request which checks the database in fixed interval and prints status to user to give feedbacks like (started processing, working on header ...etc).</p> <p>The problem is, i get the feedback only when the process is complete. It looks like the session is blocked during the background process and any other request(ajax) are only completed once the background process is over. ajax makes approx 10 requests within 4 sec intervals.I get the 10 response back only in the end.</p> <p>I have tried two iframes and also frames, one running the ajax and other running the process, Doesn't work. i tried separate browser(Process running in IE, ajax running in FF) and that works (so i now my code works). Can anybody advise? Thanks</p> <p>p.s. My environment is IIS 6, ASP.NET 3.5 with MVC 1.0 browser is IE6.0</p> http://stackoverflow.com/questions/1774313/nhibernate-no-class-mappings 0 Nhibernate - No Class Mappings! Ronnie Overby 2009-11-21T02:28:01Z 2009-11-21T02:36:23Z <p>Why don't I have any class mappings after calling Configuration.Configure()?<hr/> <img src="http://dl.dropbox.com/u/1563210/no%20class%20mappings.jpg" alt="WTF"><hr/></p> <p>Here is my class mapping file Category.hbm.xml for BudgetModel.Category:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="BudgetModel" namespace="BudgetModel"&gt; &lt;class name="Category" table="Categories"&gt; &lt;id name="Id" type="Int32"&gt; &lt;generator class="native" /&gt; &lt;/id&gt; &lt;property name="Name" type="string" not-null="true" /&gt; &lt;/class&gt; &lt;/hibernate-mapping&gt; </code></pre> <h2>EDIT</h2> <p>NH version is 2.1.1.GA</p> <p>Category.hbm.xml is an embedded resource &amp; I have rebuilt.</p> http://stackoverflow.com/questions/1774209/c-supporting-asian-languages 0 C# Supporting Asian Languages Daniel 2009-11-21T01:39:40Z 2009-11-21T02:29:34Z <p>Hello,</p> <p>I've built a simple e-card creator web app for a client that accepts a personal greeting and draws it onto a selected card design. On my local machine, I can enter asian languages and the text is drawn correctly on the image. I have the asian languages installed on my machine.</p> <p>When I loaded the app to my client's server, asian languages show up as boxes. I suspect it's because their server doesn't have the asian language pack installed. But I'm wondering, is that the reason? Is there any way to accept asian languages and display it correctly without having the asian language pack installed?</p> <p>Here's how I'm drawing the text onto the image</p> <pre><code>Graphics g = Graphics.FromImage(image); g.InterpolationMode = InterpolationMode.HighQualityBicubic; g.DrawString(text, new Font(fontFamily, fontSize), brushColor, position, strFormat); g.Dispose(); </code></pre> <p>I'm using Arial font.</p> <p>Is there something special I need to do?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1774293/fast-concurrent-checking-of-soa-dns-records-for-co-za-domains 0 Fast concurrent checking of SOA DNS records for .co.za domains FreshCode 2009-11-21T02:18:44Z 2009-11-21T02:26:43Z <p>I want to implement <strong>bulk availability checking</strong> of <strong>.co.za</strong> domain names as accurately as possible by checking for the existence of <strong>SOA</strong> or <strong>MX records</strong> using C# ASP.NET.</p> <p>I am looking for a solution that can check for the relevant DNS records in a way that properly utilises threading to check at least 10 domains at a time.</p> <h2><strong>"Why don't you just use an API?"</strong></h2> <p>The only truly accurate way of checking the availibility of a .co.za domain is to use <a href="http://co.za/whois.shtml" rel="nofollow">http://co.za/whois.shtml</a>, but the archaic WHOIS service does not allow bulk checking and limits consecutive checks for a given IP.</p> <h2>Previous Work</h2> <p>To date, I have gotten <em>fairly</em> accurate results by using my ancient classic ASP script utilising an old DNS library called "Simple DNS Resolver" by Emmanuel Kartmann. However, this approach <strong>does not scale well</strong> and I need to be able to handle more users with a properly threaded ASP.NET implementation.</p> <p>The naughty code I'm using right now looks something like this:</p> <pre><code>Dim oDNS, pDomain, found_names Set oDNS = CreateObject("Emmanuel.SimpleDNSClient.1") oDNS.ServerAddresses = "127.0.0.1" // Set DNS server to use oDNS.Separator = "," // Set separator for found_names multiple outputs </code></pre> <p>Execute the following for each domain:</p> <pre><code>Err.Clear // Reset error flag. I know, I hate it too. oDNS.Resolve pDomain, found_names, "C_IN", "T_SOA" // Look for SOA records for domain If Err &lt;&gt; 0 Then // No SOA records could be found. Err.Clear // Reset error flag oDNS.GetEmailServers pDomain, found_names // Look for MX records If Err &lt;&gt; 0 Then // No MX records found either AssumeDomainIsAvailable(pDomain); Else // Found some MX records DomainUnavailable(pDomain); End If Else // Found some SOA records DomainUnavailable(pDomain); End If </code></pre> <p>Any recommendation for improving detection is appreciated. This is my first question on SO, so forgive my verbosity and thanks for your precious time.</p> http://stackoverflow.com/questions/1774261/why-do-my-captures-not-work-in-net-regex 0 Why do my captures not work in .NET regex? MrBones 2009-11-21T02:01:10Z 2009-11-21T02:18:26Z <p>I'm parsing some text (admittedly HTML, but it's small stuff, and RegEx (should) do the job fine). I'm trying to use some captures, but they just don't do what I think they should.</p> <pre><code>Match m = new Regex("(.*?)&lt;br&gt;(.*?)/(.*?)/(.*)", RegexOptions.None).Match("word&lt;br&gt;stuff1/stuff2/stuff3") CaptureCollection c = m.Captures; </code></pre> <p>To my mind, c should contain 4 entries; the stuff in each set of brackets. But it doesn't. Regardless of whether I include any brackets, or all of them, or just the first, my CaptureCollection just contains the original string.</p> <p>I am missing something about CaptureCollection? Or am I not capturing correctly in the regex?</p> <p>Thanks for the solution (I'd vote up if I could)</p> http://stackoverflow.com/questions/795659/keep-getting-exceptions-using-principalcontext-from-the-system-directoryservices 1 Keep getting exceptions using PrincipalContext from the System.DirectoryServices.AccountManagement assembly unknown (google) 2009-04-27T23:14:31Z 2009-11-21T02:00:03Z <p>Using System.DirectoryServices.AccountManagement assembly.</p> <p>I am using the constructor PrincipalContext context = new PrincipalContext( ContextType.Domain, "myserver.ds.com", "LDAP://OU=the-users,DC=myserver,DC=ds,DC=com", adusername, password);</p> <p>I can call context.ValidateCredentials(adusername, password, ContextOptions.ServerBinding) and it returns true.</p> <p>As soon as I call UserPrincipal.FindByIdentity(context, IdentityType.SamAccountName, username);</p> <p>I get various PrincipalOperationException. Sometimes is a "server sent a referrer". Other times it is Unknown error (0x80005000)</p> <p>I'm using these overloads because the server in question in not in the same domain that the user running the program is in.</p> <p>Anyhow, how to fix this and possibly some enlightenment to the procedure arguments would be most appreciated.</p> <p>Thanks in Advance.</p> http://stackoverflow.com/questions/1500955/adjusting-httpwebrequest-connection-timeout-in-c 0 Adjusting HttpWebRequest Connection Timeout in C# JYelton 2009-09-30T22:20:48Z 2009-11-21T02:00:03Z <p><em>I believe after lengthy research and searching, I have discovered that what I want to do is probably better served by setting up an asynchronous connection and terminating it after the desired timeout... But I will go ahead and ask anyway!</em></p> <p>Quick snippet of code:</p> <pre><code>HttpWebRequest webReq = (HttpWebRequest)HttpWebRequest.Create(url); webReq.Timeout = 5000; HttpWebResponse response = (HttpWebResponse)webReq.GetResponse(); // this takes ~20+ sec on servers that aren't on the proper port, etc. </code></pre> <p>I have an HttpWebRequest method that is in a multi-threaded application, in which I am connecting to a large number of company web servers. In cases where the server is not responding, the HttpWebRequest.GetResponse() is taking about 20 seconds to time out, even though I have specified a timeout of only 5 seconds. In the interest of getting through the servers on a regular interval, I want to skip those taking longer than 5 seconds to connect to.</p> <p>So the question is: "Is there a simple way to specify/decrease a connection timeout for a WebRequest or HttpWebRequest?"</p> http://stackoverflow.com/questions/1598074/mouse-gesture-libraries-for-net 1 Mouse Gesture Libraries for .Net? myutwo33 2009-10-21T00:22:04Z 2009-11-21T01:54:34Z <p>Are there any half decent mouse gesture libraries for .Net? Have found very few and no decent ones.</p> http://stackoverflow.com/questions/1774171/icons-in-a-datagridviewcomboboxcolumn 0 Icons in a DataGridViewComboBoxColumn Eric 2009-11-21T01:20:06Z 2009-11-21T01:20:06Z <p>I have a DataGridViewComboBoxColumn in my application that is defined as follows</p> <pre><code>DataGridViewComboBoxColumn TransferActionCol = new DataGridViewComboBoxColumn(); TransferActionCol.DataSource = Enum.GetValues(typeof(TransferActionEnum)); TransferActionCol.DataPropertyName = "TransferAction"; TransferActionCol.Name = "Transfer Action"; TransferActionCol.AutoSizeMode = DataGridViewAutoSizeColumnMode.AllCells; fileListdataGridView.Columns.Add(TransferActionCol); </code></pre> <p>TransferActionEnum is an enumeration with values Download, Upload, and Ignore. Everything works fine, but I'd like to know if there is a way to display an icon in the cells of this column rather then the enum text value? If possible I'd like to display the icons both when the user is making a selection, and after.</p> http://stackoverflow.com/questions/1773654/utf8-beginning-of-file-characters-are-breaking-serializer-readers 0 UTF8 Beginning of File characters are breaking serializer & readers Nathan 2009-11-20T22:33:29Z 2009-11-21T01:01:12Z <p>Okay, I'm trying to work with UTF8 text files. I'm constantly fighting the BOF chars that the writer drops in for UTF8, which blows up pretty much anything I need to use to read the file including serializers and other text readers. </p> <p>I'm getting a leading six bytes of data: </p> <pre><code>0xEF 0xBB 0xBF 0xEF 0xBB 0xBF </code></pre> <p>(now that I'm looking at it, I realize there's two characters there. Is that the UTF8 BOF marker? Am I double encoding it)? </p> <p>Notice the serializer encodes to UTF8, then the memory stream gets a string as UTF8, then I write the string to the file with UTF8... seems like a lot of redundancy. Thoughts? </p> <pre><code>//I'm storing this xml result to a database field. (this one includes the BOF chars) using (MemoryStream ms = new MemoryStream()) { Utility.SerializeXml(ms, root); xml = Encoding.UTF8.GetString(ms.ToArray()); } //later on, I would take that xml and then write it out to a file like this: File.WriteAllText(path, xml, Encoding.UTF8); public static void SerializeXml(Stream output, object data) { XmlSerializer xs = new XmlSerializer(data.GetType()); XmlWriterSettings settings = new XmlWriterSettings(); settings.Indent = true; settings.IndentChars = "\t"; settings.Encoding = Encoding.UTF8; XmlWriter writer = XmlTextWriter.Create(output, settings); xs.Serialize(writer, data); writer.Flush(); writer.Close(); } </code></pre> http://stackoverflow.com/questions/1771740/how-to-create-a-criteria-in-nhibernate-that-represents-an-or-between-two-exists 1 How to create a criteria in NHibernate that represents an OR between two EXISTS? ssarabando 2009-11-20T16:47:52Z 2009-11-21T00:57:05Z <p>Hi,</p> <p>This one has been making my head hurt (which is easy since I'm a NHibernate newbie): how can I represent the following query (T-SQL) through the Criteria API?</p> <pre><code>DECLARE @pcode VARCHAR(8) SET @pcode = 'somecode' SELECT d.* FROM document d WHERE EXISTS ( SELECT 1 FROM project p WHERE p.id = d.projectId AND p.code = @pcode) OR EXISTS ( SELECT 1 FROM job j INNER JOIN project p ON p.id = j.projectId WHERE j.id = d.jobId AND p.code = @pcode) </code></pre> <p>(A Document has two possible associations, Project or Job. Only one of them has a value at a given time; the other has <code>null</code>.)</p> <p>The goal is to load all Documents that are directly associated with a given Project or indirectly through a Job.</p> <p>Thanks.</p> http://stackoverflow.com/questions/271398/post-your-extension-methods-for-c-net-codeplex-com-extensionoverflow 118 Post your extension methods for C# .Net (codeplex.com/extensionoverflow) bovium 2008-11-07T06:47:21Z 2009-11-21T00:49:46Z <p>Let's make a list of answers where you post your excellent and favorite extension code. </p> <p>The requirement is that the full code must be posted and a example and an explanation on how to use it.</p> <p>Based on the high interest in this topic I have setup an Open Source Project called extensionoverflow on <a href="http://www.codeplex.com/extensionoverflow" rel="nofollow"><strong>Codeplex</strong></a>. </p> <p><strong>Please mark your answers with an acceptance to put the code in the Codeplex project.</strong></p> <p><strong>Please post the full sourcecode and not a link.</strong></p> <p><strong>Codeplex News:</strong></p> <p>11.11.2008 <strong>XmlSerialize / XmlDeserialize</strong> is now <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=284374&amp;changeSetId=17001" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=288847&amp;changeSetId=17001" rel="nofollow">Unit Tested</a>.</p> <p>11.11.2008 There is still room for more developers. ;-) <strong>Join NOW!</strong></p> <p>11.11.2008 Third contributer joined <a href="http://www.codeplex.com/extensionoverflow" rel="nofollow">ExtensionOverflow</a>, welcome to <a href="http://www.codeplex.com/site/users/view/BKristensen" rel="nofollow">BKristensen</a></p> <p>11.11.2008 <strong>FormatWith</strong> is now <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=284374&amp;changeSetId=16839" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=288847&amp;changeSetId=16839" rel="nofollow">Unit Tested</a>.</p> <p>09.11.2008 Second contributer joined <a href="http://www.codeplex.com/extensionoverflow" rel="nofollow">ExtensionOverflow</a>. welcome to <a href="http://stackoverflow.com/users/3055/chakrit">chakrit</a>.</p> <p>09.11.2008 We need more developers. ;-)</p> <p>09.11.2008 <strong>ThrowIfArgumentIsNull</strong> in now <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=278942&amp;changeSetId=16468" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=284112&amp;changeSetId=16468" rel="nofollow">Unit Tested</a> on Codeplex.</p> http://stackoverflow.com/questions/1774062/what-isthe-best-way-to-write-a-c-application-kill-switch 0 What isthe best way to write a C# application "kill switch"? Jim Beam 2009-11-21T00:29:57Z 2009-11-21T00:45:32Z <p>I need to write a "kill switch" into my C# application for licensing/billing purposes. What is the best way to do that?</p> <p>The requirements are as follows (its actually 2 kill switches):</p> <p>1 - "passive kill switch" - If a particular user does not log into the application in X days then the application stops working.</p> <p>2 - "active kill switch" - A user can log in and set a date in the future when the application will stop working.</p> <p>I can think of various ways to do this with a database but users might be able to bypass that. Is there a way I can use an encrypted database or something of the sort? Or maybe a secured file that can contain this data?</p> http://stackoverflow.com/questions/1774051/help-with-password-programc 0 Help with Password program[C#]. Mohit 2009-11-21T00:26:29Z 2009-11-21T00:29:42Z <p>I am developing a program that uses a view to display information like usernames and passwords and other valuable information. I need your opinion on how and what it should do. Also, how do I set it so that at the first run of it brings it to a different form to input a password, then the second time, prompt for that password.</p> http://stackoverflow.com/questions/1773886/calling-a-specific-constructor-in-c-with-null 0 Calling a specific constructor in c# with null quip 2009-11-20T23:35:48Z 2009-11-21T00:24:23Z <p>I have a class with several constructors and I want to call the "main" one from another - but using null.</p> <p>Using just <code>this(null)</code> results in a compile time error, so I cast null to the type of the other constructor. Compiles fine.</p> <pre><code>MyClass { public MyClass(SomeType t) { } public MyClass(IList&lt;FooType&gt; l) : this((SomeType)null) { } } </code></pre> <p>This feels, lets just say icky. Is this okay and common or insane and shows a flaw in the class - in that it should have an empty constructor?</p> <p>The class "mostly" requires a <code>SomeType</code>, but there are rare times when it is okay to not have one. I want the rare times to "stick out" and be obvious that something "is not a-typical" with the code.</p> http://stackoverflow.com/questions/1773953/how-do-i-parse-a-polyline-metafile-record-out-of-a-byte-array 0 How do I parse a polyline metafile record out of a byte array? GdiHelp 2009-11-20T23:58:30Z 2009-11-21T00:17:49Z <p>I need a little help in defining the following Windows GDI type in C#. I have the data in the form of a <code>byte[]</code> in C#, and I need to somehow marshal or cast it as the following in C#. I suppose I need to define the proper struct? This is the type:</p> <h3>NAME</h3> <pre><code>META_POLYLINE </code></pre> <h3>NEAREST API CALL</h3> <pre><code>#include &lt;windows.h&gt; BOOL32 Polyline ( HDC32 hdc, const POINT32 *pt, INT32 count ); </code></pre> <h3>DESCRIPTION</h3> <pre> U16 array no Value --------------------------- -------------- 0 no of points 1 each odd until the end x of the point 2 each even until the end y of the point </pre> <p>A polyline is a list of points. Unlike a polygon, a polyline is always unfilled, and can be open.</p>