User hitec - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T11:20:07Z http://stackoverflow.com/feeds/user/120 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1160/use-svn-revision-to-label-build-in-ccnet 8 Use SVN Revision to label build in CCNET hitec 2008-08-04T11:37:24Z 2009-09-12T10:03:28Z <p>I am using CCNET on a sample project with SVN as my source control. CCNET is configured to create a build on every check in. CCNET uses MSBuild to build the source code.</p> <p>I would like to use the latest revision number to generate AssemblyInfo.cs while compiling. How can I retrieve the latest revision from subversion and use the value in CCNET?</p> <p>Edit: I'm not using NAnt - only MSBuild.</p> http://stackoverflow.com/questions/1091861/how-do-i-programmatically-disconnect-an-openvpn-connection 0 How do I programmatically disconnect an OpenVPN connection? hitec 2009-07-07T11:44:16Z 2009-07-08T06:44:14Z <p>I am creating a WinForms application to start and stop an OpenVPN connection on Windows. I am trying to achieve the same functionality as OpenVPN GUI for Windows (<a href="http://openvpn.se/" rel="nofollow">http://openvpn.se/</a>) provides but using my own .NET based UI.</p> <p>I am starting the connection using the following approach:</p> <pre><code>Process openVpnProcess = new Process(); openVpnProcess.StartInfo.CreateNoWindow = true; openVpnProcess.EnableRaisingEvents = true; openVpnProcess.StartInfo.Arguments = "--config client.ovpn"; openVpnProcess.StartInfo.FileName = "openvpn.exe"; openVpnProcess.StartInfo.WorkingDirectory = @"C:\Program Files\OpenVPN\config"; openVpnProcess.Start(); </code></pre> <p>This invokes openvpn.exe and the connection is established successfully. </p> <p>I am however unable to determine a way to terminate the connection once it is established. I have tried using Process.Kill() </p> <pre><code>foreach (var p in Process.GetProcessesByName("openvpn")) { p.Kill(); } </code></pre> <p>This kills the process, but does not restore the initial routing state. Effectively, I cannot access the network until I manually disable/enable my LAN card.</p> <p>Output of 'openvpn --show-net' before the VPN connection is established:</p> <pre><code>SYSTEM ROUTING TABLE 0.0.0.0 0.0.0.0 10.31.0.254 p=0 i=1376258 t=4 pr=3 a=21 h=0 m=1/-1/-1/-1/-1 10.31.0.0 255.255.240.0 10.31.10.235 p=0 i=1376258 t=3 pr=2 a=26 h=0 m=20/-1/-1/-1/-1 10.31.10.235 255.255.255.255 127.0.0.1 p=0 i=1 t=3 pr=2 a=26 h=0 m=20/-1/-1/-1/-1 10.255.255.255 255.255.255.255 10.31.10.235 p=0 i=1376258 t=3 pr=2 a=26 h=0 m=20/-1/-1/-1/-1 127.0.0.0 255.0.0.0 127.0.0.1 p=0 i=1 t=3 pr=2 a=116753 h=0 m=1/-1/-1/-1/-1 224.0.0.0 240.0.0.0 10.31.10.235 p=0 i=1376258 t=3 pr=2 a=26 h=0 m=20/-1/-1/-1/-1 255.255.255.255 255.255.255.255 10.31.10.235 p=0 i=1376258 t=3 pr=2 a=26 h=0 m=1/-1/-1/-1/-1 255.255.255.255 255.255.255.255 10.31.10.235 p=0 i=1441796 t=3 pr=2 a=4 h=0 m=1/-1/-1/-1/-1 SYSTEM ADAPTER LIST TAP-Win32 Adapter V8 Index = 1441796 GUID = {013AB57F-DFE6-4FD9-B25E-9589E77DA4EB} IP = 0.0.0.0/0.0.0.0 MAC = 00:ff:01:3a:b5:7f GATEWAY = DHCP SERV = 172.16.0.0 DHCP LEASE OBTAINED = Tue Jul 07 16:35:20 2009 DHCP LEASE EXPIRES = Wed Jul 07 16:35:20 2010 D-Link DFE-538TX 10/100 Adapter Index = 1376258 GUID = {FB6051A1-E970-4F46-BB85-F442A194BA3D} IP = 10.31.10.235/255.255.240.0 MAC = 00:08:a1:65:70:93 GATEWAY = 10.31.0.254/0.0.0.0 </code></pre> <p>'openvpn --show-net' after VPN connection is closed using Process.Kill():</p> <pre><code>SYSTEM ROUTING TABLE 10.31.0.0 255.255.240.0 10.31.10.235 p=0 i=1376258 t=3 pr=2 a=106 h=0 m=20/-1/-1/-1/-1 10.31.10.235 255.255.255.255 127.0.0.1 p=0 i=1 t=3 pr=2 a=106 h=0 m=20/-1/-1/-1/-1 10.255.255.255 255.255.255.255 10.31.10.235 p=0 i=1376258 t=3 pr=2 a=106 h=0 m=20/-1/-1/-1/-1 127.0.0.0 255.0.0.0 127.0.0.1 p=0 i=1 t=3 pr=2 a=116833 h=0 m=1/-1/-1/-1/-1 208.94.64.10 255.255.255.255 10.31.0.254 p=0 i=1376258 t=4 pr=3 a=21 h=0 m=1/-1/-1/-1/-1 224.0.0.0 240.0.0.0 10.31.10.235 p=0 i=1376258 t=3 pr=2 a=106 h=0 m=20/-1/-1/-1/-1 255.255.255.255 255.255.255.255 10.31.10.235 p=0 i=1376258 t=3 pr=2 a=106 h=0 m=1/-1/-1/-1/-1 255.255.255.255 255.255.255.255 10.31.10.235 p=0 i=1441796 t=3 pr=2 a=84 h=0 m=1/-1/-1/-1/-1 SYSTEM ADAPTER LIST TAP-Win32 Adapter V8 Index = 1441796 GUID = {013AB57F-DFE6-4FD9-B25E-9589E77DA4EB} IP = 0.0.0.0/0.0.0.0 MAC = 00:ff:01:3a:b5:7f GATEWAY = DHCP SERV = 172.16.0.0 DHCP LEASE OBTAINED = Tue Jul 07 17:02:30 2009 DHCP LEASE EXPIRES = Wed Jul 07 17:02:30 2010 D-Link DFE-538TX 10/100 Adapter Index = 1376258 GUID = {FB6051A1-E970-4F46-BB85-F442A194BA3D} IP = 10.31.10.235/255.255.240.0 MAC = 00:08:a1:65:70:93 GATEWAY = </code></pre> <p>I also tried sending the process <code>WM_CLOSE / WM_QUIT / WM_ENDMESSAGE</code> messages but these did not produce any result.</p> <pre><code>const int WM_CLOSE = 0x10; const int WM_QUIT = 0x12; const int WM_ENDSESSION = 0x0016; [DllImport("user32.dll")] public static extern int SendMessage(int hwnd, int msg, int wparam, int lparam); foreach (var p in Process.GetProcessesByName("openvpn")) { SendMessage(p.Handle.ToInt32(), WM_CLOSE, 0, 0); SendMessage(p.Handle.ToInt32(), WM_QUIT, 0, 0); SendMessage(p.Handle.ToInt32(), WM_ENDSESSION, 0, 0); } </code></pre> <p><hr /></p> <p><strong>Further info on the appropriate solution:</strong> See instructions in section titled <em>Using the management interface</em> in <a href="http://openvpn.net/index.php/open-source/documentation/howto.html#control" rel="nofollow">Controlling a running OpenVPN process</a>.</p> <p>More info on using <a href="http://geekswithblogs.net/bigpapa/archive/2007/10/08/C-2.0-and-Telnet---Not-As-Painful-As-It.aspx" rel="nofollow">Telnet from C#</a>.</p> http://stackoverflow.com/questions/319591/reading-non-standard-elements-in-a-syndicationitem-with-syndicationfeed/790808#790808 2 Answer by hitec for Reading non-standard elements in a SyndicationItem with SyndicationFeed hitec 2009-04-26T12:56:38Z 2009-04-26T12:56:38Z <p>Here is how I managed to retrieve the enclosure link from a feed using SyndicationFeed.</p> <pre><code>static void Main(string[] args) { var feedUrl = "http://blog.stackoverflow.com/index.php?feed=podcast"; using (var feedReader = XmlReader.Create(feedUrl)) { var feedContent = SyndicationFeed.Load(feedReader); if (null == feedContent) return; foreach (var item in feedContent.Items) { Debug.WriteLine("Item Title: " + item.Title.Text); Debug.WriteLine("Item Links"); foreach (var link in item.Links) { Debug.WriteLine("Link Title: " + link.Title); Debug.WriteLine("URI: " + link.Uri); Debug.WriteLine("RelationshipType: " + link.RelationshipType); Debug.WriteLine("MediaType: " + link.MediaType); Debug.WriteLine("Length: " + link.Length); } } } } </code></pre> <p>The output is as follows:</p> <blockquote> <p>Item Title: Podcast #50<br /> Item Links<br /> Link Title:<br /> URI: <a href="http://blog.stackoverflow.com/2009/04/podcast-50/" rel="nofollow">http://blog.stackoverflow.com/2009/04/podcast-50/</a><br /> RelationshipType: alternate<br /> MediaType:<br /> Length: 0<br /> Link Title:<br /> <strong>URI: <a href="http://itc.conversationsnetwork.org/audio/download/ITC.SO-Episode50-2009.04.21.mp3" rel="nofollow">http://itc.conversationsnetwork.org/audio/download/ITC.SO-Episode50-2009.04.21.mp3</a></strong><br /> <strong>RelationshipType: enclosure</strong><br /> MediaType: audio/mpeg<br /> Length: 36580016 </p> </blockquote> <p>You can identify the enclosure link from its relationship type.</p> http://stackoverflow.com/questions/684507/rss-parser-in-net/684596#684596 1 Answer by hitec for rss parser in .net hitec 2009-03-26T05:14:07Z 2009-03-26T05:14:07Z <p>You may want to look at Argotic too - <a href="http://www.codeplex.com/Argotic" rel="nofollow">http://www.codeplex.com/Argotic</a> </p> <p>I have used Argotic during .Net 1.1 when the Syndication framework was not available in the framework and it did the job.</p> <p>However, I would recommend the use of System.ServiceModel.Syndication if it does everything you need.</p> http://stackoverflow.com/questions/450936/using-jquery-tablesorter-to-sort-mm-yy-dates 2 Using jQuery tablesorter to sort mm/yy dates hitec 2009-01-16T16:10:42Z 2009-01-17T23:53:03Z <p>I am using the jquery tablesorter plugin to sort a table. On of my the columns in my table shows the date in mm/yy format.</p> <pre><code>&lt;tr&gt; &lt;td class="col-name"&gt;...&lt;/td&gt; ... &lt;td rel="2000" class="col-dob"&gt;10/00&lt;/td&gt; ... &lt;/tr&gt; &lt;tr&gt; &lt;td class="col-name"&gt;...&lt;/td&gt; ... &lt;td rel="1986" class="col-dob"&gt;11/86&lt;/td&gt; ... &lt;/tr&gt; </code></pre> <p>Note:</p> <ul> <li>Each cell has a unique class</li> <li>Date is displayed in the mm/yy format</li> <li>Cell with date receives the year as well</li> </ul> <p>My jQuery code is as below:</p> <pre><code>// add parser through the tablesorter addParser method $.tablesorter.addParser({ // set a unique id id: 'user-birthdate', is: function(s) { // return false so this parser is not auto detected return false; }, format: function(s) { // format your data for normalization var dateSplit = s.split('/'); if(2 !== dateSplit.length) return 0; return new Date(dateSplit[1], dateSplit[0], 1); }, // set type, either numeric or text type: 'numeric' }); myClass.init = function() { $('.module .user table').tablesorter({ sortList: [[0,0]], widgets: ['zebra'], headers: { 5: { sorter:'user-birthdate' } } }); } myClass.init(); </code></pre> <p>My problem is that the tableSorter interprets 00 as year 1900 instead of 2000 and hence the sorted data is not correct.</p> <p>Any clue how can I resolve this? I am using jQuery 1.2.6 and the latest version of tablesorter.</p> http://stackoverflow.com/questions/450936/using-jquery-tablesorter-to-sort-mm-yy-dates/451239#451239 0 Answer by hitec for Using jQuery tablesorter to sort mm/yy dates hitec 2009-01-16T17:15:10Z 2009-01-16T17:15:10Z <p>@Cade Roux Yes, that indeed is my problem but I cannot display a four digit year in the UI due to business constraints. However, I do have the full year in the 'rel' attribute. Is there anyway I can access that attribute in my format deceleration?</p> http://stackoverflow.com/questions/414294/how-do-i-sort-a-date-of-format-mm-yy-with-the-jquery-tablesorter 0 How do I sort a date of format mm/yy with the jquery tablesorter? hitec 2009-01-05T19:56:06Z 2009-01-05T20:28:43Z <p>I have a table wherein one of the columns displays the date in the mm/yy format viz. 12/08, 01/09, 02/08, etc.</p> <p>How do I implementing sorting on this column with the jQuery tablesorter (<a href="http://tablesorter.com" rel="nofollow">http://tablesorter.com</a>) so that the dates are appropriately sorted?</p> <p>Using the default date format does not work as it expects a date of three elements (mm/dd/yy such as 01/06/09).</p> http://stackoverflow.com/questions/48087/select-a-random-n-elements-from-listt-in-c/48188#48188 0 Answer by hitec for Select a random N elements from List<T> in C# hitec 2008-09-07T06:05:45Z 2008-09-07T06:05:45Z <p>I recently did this on my project using an idea similar to <a href="http://beta.stackoverflow.com/questions/48087/select-a-random-n-elements-from-listt-in-c#48114" rel="nofollow">Tyler's point 1</a>.<br /> I was loading a bunch of questions and selecting five at random. Sorting was achieved using an <a href="http://msdn.microsoft.com/en-us/library/8ehhxeaf.aspx" rel="nofollow">IComparer</a>.<br /> aAll questions were loaded in the a QuestionSorter list, which was then sorted using the <a href="http://msdn.microsoft.com/en-us/library/234b841s.aspx" rel="nofollow">List's Sort function</a> and the first k elements where selected.</p> <pre><code> private class QuestionSorter : IComparable&lt;QuestionSorter&gt; { public double SortingKey { get; set; } public Question QuestionObject { get; set; } public QuestionSorter(Question q) { this.SortingKey = RandomNumberGenerator.RandomDouble; this.QuestionObject = q; } public int CompareTo(QuestionSorter other) { if (this.SortingKey &lt; other.SortingKey) { return -1; } else if (this.SortingKey &gt; other.SortingKey) { return 1; } else { return 0; } } } </code></pre> <p>Usage:</p> <pre><code> List&lt;QuestionSorter&gt; unsortedQuestions = new List&lt;QuestionSorter&gt;(); // add the questions here unsortedQuestions.Sort(unsortedQuestions as IComparer&lt;QuestionSorter&gt;); // select the first k elements </code></pre> http://stackoverflow.com/questions/31885/does-visual-studio-server-explorer-support-custom-database-providers/31986#31986 1 Answer by hitec for Does Visual Studio Server Explorer support custom database providers? hitec 2008-08-28T10:28:17Z 2008-08-28T10:28:17Z <p>I found this during my research on Sqlite. I haven't had the chance to use it though. Let us know if this works for you.</p> <p><a href="http://sqlite.phxsoftware.com/" rel="nofollow">http://sqlite.phxsoftware.com/</a></p> <blockquote> <p><strong>System.Data.SQLite</strong> System.Data.SQLite is the original SQLite database engine and a complete ADO.NET 2.0 provider all rolled into a single mixed mode assembly. </p> <p>... </p> <p><strong>Visual Studio 2005/2008 Design-Time Support</strong> </p> <p>You can add a SQLite connection to the Server Explorer, create queries with the query designer, drag-and-drop tables onto a Typed DataSet and more! </p> <p>SQLite's designer works on full editions of Visual Studio 2005/2008, including VS2005 Express Editions. </p> <p>NEW You can create/edit views, tables, indexes, foreign keys, constraints and triggers interactively within the Visual Studio Server Explorer!</p> </blockquote> http://stackoverflow.com/questions/15828/reading-excel-files-from-c/15970#15970 4 Answer by hitec for Reading Excel files from C# hitec 2008-08-19T10:50:55Z 2008-08-19T10:50:55Z <p>Here's some code I wrote in C# using .NET 1.1 a few years ago. Not sure if this would be exactly what you need (and may not be my best code :)).</p> <pre><code>using System; using System.Data; using System.Data.OleDb; namespace ExportExcelToAccess { /// &lt;summary&gt; /// Summary description for ExcelHelper. /// &lt;/summary&gt; public sealed class ExcelHelper { private const string CONNECTION_STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=&lt;FILENAME&gt;;Extended Properties=\"Excel 8.0;HDR=Yes;\";"; public static DataTable GetDataTableFromExcelFile(string fullFileName, ref string sheetName) { OleDbConnection objConnection = new OleDbConnection(); objConnection = new OleDbConnection(CONNECTION_STRING.Replace("&lt;FILENAME&gt;", fullFileName)); DataSet dsImport = new DataSet(); try { objConnection.Open(); DataTable dtSchema = objConnection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null); if( (null == dtSchema) || ( dtSchema.Rows.Count &lt;= 0 ) ) { //raise exception if needed } if( (null != sheetName) &amp;&amp; (0 != sheetName.Length)) { if( !CheckIfSheetNameExists(sheetName, dtSchema) ) { //raise exception if needed } } else { //Reading the first sheet name from the Excel file. sheetName = dtSchema.Rows[0]["TABLE_NAME"].ToString(); } new OleDbDataAdapter("SELECT * FROM [" + sheetName + "]", objConnection ).Fill(dsImport); } catch (Exception) { //raise exception if needed } finally { // Clean up. if(objConnection != null) { objConnection.Close(); objConnection.Dispose(); } } return dsImport.Tables[0]; #region Commented code for importing data from CSV file. // string strConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" +"Data Source=" + System.IO.Path.GetDirectoryName(fullFileName) +";" +"Extended Properties=\"Text;HDR=YES;FMT=Delimited\""; // // System.Data.OleDb.OleDbConnection conText = new System.Data.OleDb.OleDbConnection(strConnectionString); // new System.Data.OleDb.OleDbDataAdapter("SELECT * FROM " + System.IO.Path.GetFileName(fullFileName).Replace(".", "#"), conText).Fill(dsImport); // return dsImport.Tables[0]; #endregion } /// &lt;summary&gt; /// This method checks if the user entered sheetName exists in the Schema Table /// &lt;/summary&gt; /// &lt;param name="sheetName"&gt;Sheet name to be verified&lt;/param&gt; /// &lt;param name="dtSchema"&gt;schema table &lt;/param&gt; private static bool CheckIfSheetNameExists(string sheetName, DataTable dtSchema) { foreach(DataRow dataRow in dtSchema.Rows) { if( sheetName == dataRow["TABLE_NAME"].ToString() ) { return true; } } return false; } } } </code></pre> http://stackoverflow.com/questions/15822/what-tools-free-or-otherwise-do-you-find-useful-for-developing-and-debugging-c/15829#15829 0 Answer by hitec for What tools (free or otherwise) do you find useful for developing and debugging C#/C++? hitec 2008-08-19T07:24:25Z 2008-08-19T07:24:25Z <ul> <li>Resharper 4.0 to replace the built-in refactoring (commercial)</li> <li>GhostDoc for auto-code documentation (free)</li> </ul> http://stackoverflow.com/questions/2134/do-sealed-classes-really-offer-performance-benefits/2195#2195 -1 Answer by hitec for Do sealed classes really offer performance Benefits? hitec 2008-08-05T12:40:10Z 2008-08-05T12:40:10Z <p>@Vaibhav, what kind of tests did you execute to measure performance?</p> <p>I guess one would have to use <a href="http://research.microsoft.com/sscli/" rel="nofollow">Rotor</a> and to drill into CLI and understand how a sealed class would improve performance.</p> <blockquote> <p><strong>SSCLI (Rotor)</strong> <br> SSCLI: Shared Source Common Language Infrastructure</p> <p>The Common Language Infrastructure (CLI) is the ECMA standard that describes the core of the .NET Framework. The Shared Source CLI (SSCLI), also known as Rotor, is a compressed archive of the source code to a working implementation of the ECMA CLI and the ECMA C# language specification, technologies at the heart of Microsoft’s .NET architecture.</p> </blockquote> http://stackoverflow.com/questions/1329/what-is-a-better-file-copy-alternative-than-the-windows-default/2126#2126 4 Answer by hitec for What is a better file copy alternative than the Windows default? hitec 2008-08-05T11:54:16Z 2008-08-05T11:54:16Z <p>I would definitely prefer: </p> <p>1) <a href="http://www.codesector.com/teracopy.asp" rel="nofollow">Teracopy</a> - GUI based, replaces the default Windows copy/move UI and adds itself to context menu. Basic version is free (for home use I guess). </p> <p>2) <a href="http://en.wikipedia.org/wiki/Robocopy" rel="nofollow">Robocopy</a> - CLI based, useful when scripting. Free tool from MS and is included in Vista/Windows 2008. MS Technet has a GUI for robocopy as well - useful to create statements that you can later embed in scripts or on the command prompt.</p> <p>PS: I know these have been already suggested here and I would have voted on them, if I could.</p> http://stackoverflow.com/questions/1160/use-svn-revision-to-label-build-in-ccnet/1943#1943 0 Answer by hitec for Use SVN Revision to label build in CCNET hitec 2008-08-05T05:47:28Z 2008-08-05T05:47:28Z <p>@Justin, thanks for sharing your NAnt script. <br> I'm not using NAnt, but only MSBuild to compile my projects. </p> http://stackoverflow.com/questions/1160/use-svn-revision-to-label-build-in-ccnet/1216#1216 1 Answer by hitec for Use SVN Revision to label build in CCNET hitec 2008-08-04T13:22:31Z 2008-08-04T13:22:31Z <blockquote> <p><strong>Customizing csproj files to autogenerate AssemblyInfo.cs</strong> <br> <a href="http://www.codeproject.com/KB/dotnet/Customizing_csproj_files.aspx" rel="nofollow">http://www.codeproject.com/KB/dotnet/Customizing_csproj_files.aspx</a></p> <p>Every time we create a new C# project, Visual Studio puts there the AssemblyInfo.cs file for us. The file defines the assembly meta-data like its version, configuration, or producer.</p> </blockquote> <p>Found the above technique to auto-gen AssemblyInfo.cs using MSBuild. Will post sample shortly.</p> http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/1204#1204 26 Answer by hitec for How do I programmatically create a PDF in my .NET application? hitec 2008-08-04T13:02:52Z 2008-08-04T13:02:52Z <p>Have you looked at <a href="http://sourceforge.net/projects/itextsharp/" rel="nofollow">http://sourceforge.net/projects/itextsharp/</a>? I have used the Java version on a project and it worked well.</p> http://stackoverflow.com/questions/1160/use-svn-revision-to-label-build-in-ccnet/1168#1168 1 Answer by hitec for Use SVN Revision to label build in CCNET hitec 2008-08-04T11:51:59Z 2008-08-04T11:59:15Z <p>I found this project on google code: <a href="http://code.google.com/p/svnrevisionlabeller/" rel="nofollow">http://code.google.com/p/svnrevisionlabeller/</a>. This is CCNET plugin to generate the label in CCNET.</p> <p>The DLL is tested with CCNET 1.3 but it works with CCNET 1.4 for me. I'm successfully using this plugin to label my build.</p> <p>Now onto passing it to MSBuild...</p> http://stackoverflow.com/questions/15828/reading-excel-files-from-c/15970#15970 Comment by hitec on Reading Excel files from C# hitec 2009-07-13T17:48:08Z 2009-07-13T17:48:08Z Couldn't agree more Cherian. This code is many years old... before I even was proficient with Resharper :) http://stackoverflow.com/questions/1091861/how-do-i-programmatically-disconnect-an-openvpn-connection/1092584#1092584 Comment by hitec on How do I programmatically disconnect an OpenVPN connection? hitec 2009-07-08T06:36:08Z 2009-07-08T06:36:08Z I tried p.CloseMainWindow(); but it does not work. On further research I have realized that OpenVPN Management interface is a more appropriate approach for what I am trying to achieve. Thanks for more info though, it helped clear a concept. http://stackoverflow.com/questions/1091861/how-do-i-programmatically-disconnect-an-openvpn-connection/1092484#1092484 Comment by hitec on How do I programmatically disconnect an OpenVPN connection? hitec 2009-07-07T14:53:22Z 2009-07-07T14:53:22Z Pierre, your post is a great lead. I'm managed to manually terminate the connection manually using the management interface. Further reading: <a href="http://openvpn.net/index.php/open-source/documentation/howto.html#control" rel="nofollow">openvpn.net/index.php/open-source/&hellip;</a> http://stackoverflow.com/questions/1091861/how-do-i-programmatically-disconnect-an-openvpn-connection/1092584#1092584 Comment by hitec on How do I programmatically disconnect an OpenVPN connection? hitec 2009-07-07T14:23:01Z 2009-07-07T14:23:01Z Thanks Thorsten. Can you point me to how I can obtain the Window handle? Would that be using FindWindow()? (I've done very little Win32 programming) http://stackoverflow.com/questions/776419/how-is-datacontext-inherited-in-views-which-contain-views/776744#776744 Comment by hitec on How is DataContext inherited in Views which contain Views? hitec 2009-04-29T11:29:23Z 2009-04-29T11:29:23Z This solved a problem I was facing. I was explicitly setting the DataContext of a child item in ItemsControl.ItemTemplate and it would be set as null. Thanks! http://stackoverflow.com/questions/684200/synchronizing-a-timer-to-prevent-overlap/684208#684208 Comment by hitec on Synchronizing a timer to prevent overlap hitec 2009-03-26T05:26:44Z 2009-03-26T05:26:44Z I second this approach - 'it might be better to start a timer AFTER you're operation is complete...' http://stackoverflow.com/questions/684583/what-is-the-best-way-to-unit-test-a-windows-ce-net-cf-app Comment by hitec on What is the best way to unit test a Windows CE / .NET CF app? hitec 2009-03-26T05:18:33Z 2009-03-26T05:18:33Z Do you wish to test your business layer or your UI? Testing BL on your desktop should be sufficient. You can recompile your code using a Class Library project and write unit code for the desktop. http://stackoverflow.com/questions/684260/using-interfaces-on-abstract-classes-in-c/684274#684274 Comment by hitec on Using interfaces on abstract classes in C# hitec 2009-03-26T05:16:48Z 2009-03-26T05:16:48Z Thanks for adding the link to the SO question on implicit and explicit implementation ! http://stackoverflow.com/questions/379748/how-do-i-setup-nhibernate-with-visual-studio-and-firebird/384818#384818 Comment by hitec on How do I setup NHibernate with Visual Studio and Firebird?? hitec 2009-02-18T18:32:48Z 2009-02-18T18:32:48Z I was having this same issue while using SQLite and your post helped me workaround it. http://stackoverflow.com/questions/450936/using-jquery-tablesorter-to-sort-mm-yy-dates/452823#452823 Comment by hitec on Using jQuery tablesorter to sort mm/yy dates hitec 2009-01-19T17:27:49Z 2009-01-19T17:27:49Z This solution fixed my problem. Thanks David. http://stackoverflow.com/questions/450936/using-jquery-tablesorter-to-sort-mm-yy-dates/452823#452823 Comment by hitec on Using jQuery tablesorter to sort mm/yy dates hitec 2009-01-18T17:25:25Z 2009-01-18T17:25:25Z Thanks David. Waiting to test this on Monday. Will update here.