User epotter - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:23:04Z http://stackoverflow.com/feeds/user/26339 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/543775/how-to-use-source-control-tools-to-have-students-turn-in-assignments 6 How to use source control tools to have students turn in assignments epotter 2009-02-12T22:29:43Z 2009-11-20T23:33:39Z <p>This semester I'm teaching a class at a local university. Thus far, I've had the students turn in their programming assignments by emailing them to me. But there is a lot of hassle when pulling 20 solutions out of emails. </p> <p>Has anyone ever used a source control tool to have students turn projects in? What did you use and how was it set up?</p> http://stackoverflow.com/questions/1702893/display-xml-in-a-wpf-textbox 0 Display XML in a WPF textbox epotter 2009-11-09T18:37:00Z 2009-11-09T19:49:43Z <p>It is simple enough to put the outer text of an XML node in a WPF text box. But is there a way to get the text box to format the text as an XML document? Is there a different control that does that?</p> http://stackoverflow.com/questions/1662139/how-can-i-manually-determine-the-codepage-and-locale-of-the-current-os 0 How can I manually determine the CodePage and Locale of the current OS epotter 2009-11-02T15:58:40Z 2009-11-02T18:45:45Z <p>Is there a way that I manually have a user look up the current Codepage and locale of their windows OS? Is there a registry setting that stores that information? </p> <p>It would also be useful if the technique worked all the way back to Windows 2000.</p> http://stackoverflow.com/questions/1654325/why-is-datetime-a-structure-in-net/1654513#1654513 0 Answer by epotter for Why is DateTime a structure in .Net? epotter 2009-10-31T14:22:05Z 2009-10-31T15:42:15Z <p>I believe that it is a struct because structs are value types and classes are reference types. The actual data in a DateTime is a single long integer. If it were a class, every time you created a new object, 8 bytes would be allocated on the heap and another 8 bytes would be allocated on the stack for the pointer. So by making a DateTime a struct, it effectively cuts the memory requirements in half. </p> <p>You can find more information in <a href="http://stackoverflow.com/questions/109859/what-does-datetime-mean-in-c">this question</a>.</p> http://stackoverflow.com/questions/1651818/how-can-i-insert-elements-into-a-queue-in-c/1651823#1651823 1 Answer by epotter for How can I insert elements into a Queue in C# epotter 2009-10-30T19:23:37Z 2009-10-30T19:23:37Z <p>You will probably have to use a List.</p> http://stackoverflow.com/questions/1647278/need-to-create-a-summary-of-a-large-switch-statement-in-c/1647333#1647333 2 Answer by epotter for need to create a summary of a large switch statement in C# epotter 2009-10-30T00:20:27Z 2009-10-30T00:20:27Z <p>I'm note sure what you are trying to do, but you might be able to use a dictionary. </p> <pre><code> Dictionary&lt;string, int&gt; lookupTable = new Dictionary&lt;string, int&gt;(); lookupTable.Add("hello", 1); lookupTable.Add("goodbye", 2); lookupTable.Add("example", 3); int output = lookupTable["hello"]; </code></pre> <p>You wouldn't need to have code to add each individual entry. You could read in the keys and values from a file, loop though them and populate the dictionary.</p> <p>If you explain more about what you are trying to do, we could give you more specific advice.</p> http://stackoverflow.com/questions/1639519/best-way-to-setup-a-windows-build-environment-for-c-c/1639637#1639637 1 Answer by epotter for Best way to setup a Windows build environment for C/C++ epotter 2009-10-28T19:47:19Z 2009-10-28T19:47:19Z <p>You might want to look at <a href="http://www.codeblocks.org/" rel="nofollow">CodeBlocks</a>. It is generally used to build WxWidgets apps, but it wraps MinGW nicely. </p> http://stackoverflow.com/questions/1626036/how-do-i-collapse-selected-chunks-of-code-in-visual-studio-2008/1626268#1626268 1 Answer by epotter for How do I collapse selected chunks of code in Visual Studio 2008? epotter 2009-10-26T17:51:45Z 2009-10-26T18:25:32Z <p>TheSam is right, you can create collapsible chunks with the #pragma region and #pragma endregion statements. </p> <p>Here is a sample:</p> <pre><code>int main(array&lt;System::String&gt; args) { Console::WriteLine(L"This"); Console::WriteLine(L"is"); Console::WriteLine(L"a"); #pragma region Console::WriteLine(L"pragma"); Console::WriteLine(L"region"); #pragma endregion Console::WriteLine(L"test."); return 0; } </code></pre> <p>In the above sample, everything between the samples can be collapsed. </p> <p>You can also specify what text is displayed when it is collapsed. You can do that like this:</p> <pre><code>#pragma region The displayed text </code></pre> <p>That would obviously display "The displayed text" when the region was collapsed.</p> http://stackoverflow.com/questions/1567438/where-can-i-find-interesting-net-screencasts-f-ironruby-ironpython/1567600#1567600 0 Answer by epotter for Where can I find interesting .Net screencasts ? (F#, IronRuby, IronPython,...) epotter 2009-10-14T16:52:26Z 2009-10-14T16:52:26Z <p>There is some good stuff at <a href="http://www.dnrtv.com/" rel="nofollow">DNR tv</a>. It is a weekly show on a variety of .Net topics.</p> http://stackoverflow.com/questions/957213/unit-testing-installscript 0 Unit testing InstallScript epotter 2009-06-05T17:53:36Z 2009-10-11T10:00:03Z <p>I've got a handful of functions in my InstallScript that are good candidates for unit tests. My project is a InstallScript MSI project. I found an article about how to unit test Custom Actions with custom ICEs, but the code I want to unit test isn't in a Custom Action, it is in the UI sequence.</p> <p>Is there a way to unit test this kind of InstallScript code?</p> http://stackoverflow.com/questions/1463051/installshield-2009-pre-install/1539088#1539088 2 Answer by epotter for InstallShield 2009 Pre install.. epotter 2009-10-08T16:49:12Z 2009-10-08T16:49:12Z <p>If you add filed to the Support Files/Billboards section of the project, you can reference them in your project and specifically in OnBegin. </p> <p>For example, if you have a file called foo.exe that you needed to execute, you could add it to the project as a Support File and the reference it using the SUPPORTDIR keyword. It would look something like this:</p> <pre><code>LaunchAppAndWait(SUPPORTDIR ^ foo.exe); </code></pre> http://stackoverflow.com/questions/1407290/how-to-determine-version-of-flash-with-installshield-2009/1538980#1538980 0 Answer by epotter for How to determine version of FLASH with InstallShield 2009 epotter 2009-10-08T16:33:44Z 2009-10-08T16:33:44Z <p>In our installers, we check the value of the HKEY_LOCAL_MACHINE\SOFTWARE\Macromedia\Flash Player\CurrentVersion key in the registry. </p> <p>It is a comma separated string (10,0,32,18), so the parsing is a bit different. But the format has be consistent for all the versions of flash that we care about.</p> http://stackoverflow.com/questions/1509752/white-noise-sources-for-concentration-while-programming/1509970#1509970 9 Answer by epotter for White noise sources for concentration while programming epotter 2009-10-02T14:46:28Z 2009-10-02T14:46:28Z <p>I've used <a href="http://simplynoise.com/" rel="nofollow">simplynoise.com</a>. It has a clean and simple UI and the white noise sufficiently blocks out distractions without itself become a distraction.</p> http://stackoverflow.com/questions/1508581/is-there-any-practical-use-for-an-esoteric-language/1509538#1509538 1 Answer by epotter for Is there any practical use for an esoteric language? epotter 2009-10-02T13:35:02Z 2009-10-02T13:35:02Z <p>The only practical benefit that I see, is that if you wrote code in an esoteric language, it would cause you to think about problems in new and interesting ways. Learning new ways to approach problems will benefit even when you are back programming in a mainstream language.</p> <p>Last year I read Charles Petzold's 'Annotated Turing'. I certainly have no intention to ever program a Turing machine, at least as he describes it. But thinking about solving problems with his 'language' stretched my mind. I'm a better C# programmer for it.</p> http://stackoverflow.com/questions/1399634/problem-with-dbcc-checkident-with-chinese-characters-in-table-name 0 Problem with DBCC CHECKIDENT with Chinese characters in table name epotter 2009-09-09T13:16:53Z 2009-09-09T13:50:23Z <p>I'm maintaining an application that uses SQL Server Express 2005 as the back end. The application allows users to create new databases and provide the name for the new database.</p> <p>When the app is loading the default data I make the following SQL call: </p> <pre><code>DBCC CHECKIDENT('[myDB].[CsSchema].[CsMyDataType]', RESEED) WITH NO_INFOMSGS </code></pre> <p>The code works fine as long as everything is in English. </p> <p>But if the user specifies Chinese characters in the database name the call look like this:</p> <pre><code>DBCC CHECKIDENT('[e安丞北e].[CsSchema].[CsMyDataType]', RESEED) WITH NO_INFOMSGS </code></pre> <p>This call fails with this error message: "Could not find database 'e???'. The database either does not exist, or was dropped before a statement tried to use it."</p> <p>I make many other calls with the database name that work properly. For example, this statement executes without an issue.</p> <pre><code>SET IDENTITY_INSERT [e安丞北e].[CsSchema].[CsMyDataType] OFF </code></pre> <p>The error seems to be specific to the DBCC CHECKIDENT call. Any ideas?</p> <p>Note: I'm running on Chinese version of Windows XP.</p> http://stackoverflow.com/questions/1348053/wpf-toolkit-calendar-control-how-to-prevent-next-month-scrolling/1348491#1348491 1 Answer by epotter for WPF Toolkit Calendar Control - how to prevent next month scrolling? epotter 2009-08-28T17:53:24Z 2009-08-28T17:53:24Z <p>If you set the DisplayDateStart property to the first day of the month and the DisplayDateEnd property to the last day of the month, those days from other months are not show, and hence cannot be clicked on.</p> <p>If you can do it in xaml, it would look like this:</p> <pre><code> &lt;my:Calendar Margin="50,49,48,43" Name="calendar1" SelectionMode="MultipleRange" DisplayMode="Month" DisplayDateStart="2009-08-01" DisplayDateEnd="2009-08-31"/&gt; </code></pre> <p>But that would only work if you knew that dates at design time. So you would probably want to set the dates in the code.</p> <pre><code> calendar1.DisplayDateStart = new DateTime(2009, 08, 01); calendar1.DisplayDateEnd = new DateTime(2009, 08, 31); </code></pre> <p>Of coarse you would need to provide the first and last day of the particular month.</p> http://stackoverflow.com/questions/545513/what-is-the-best-way-to-make-a-graph-in-wpf-or-in-general-that-would-apply-to-w/1348394#1348394 0 Answer by epotter for What is the best way to make a graph in WPF? (or in general that would apply to WPF as well) epotter 2009-08-28T17:31:59Z 2009-08-28T17:31:59Z <p>The WPF Toolkit is available. It is free from CodePlex. It contains some nice charting classes.</p> <p>It can be downloaded <a href="http://wpf.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=29117" rel="nofollow">here</a>. There is some commentary <a href="http://blogs.msdn.com/delay/archive/2009/06/25/wpf-charting-it-s-official-june-2009-release-of-the-wpf-toolkit-is-now-available.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/577278/wpf-chart-controls/1348388#1348388 0 Answer by epotter for WPF chart controls epotter 2009-08-28T17:30:32Z 2009-08-28T17:30:32Z <p>The WPF Toolkit is available. It is free from CodePlex.</p> <p>It can be downloaded <a href="http://wpf.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=29117" rel="nofollow">here</a>. There is some commentary <a href="http://blogs.msdn.com/delay/archive/2009/06/25/wpf-charting-it-s-official-june-2009-release-of-the-wpf-toolkit-is-now-available.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1336645/does-aero-manipulate-the-dpi-and-screen-size-why 1 Does Aero manipulate the DPI and Screen Size? Why? epotter 2009-08-26T18:30:36Z 2009-08-26T19:57:42Z <p>In my application, I get the screen resolution with this code:</p> <pre><code>SystemInformation.PrimaryMonitorSize </code></pre> <p>And I get the DPI with this code:</p> <pre><code> using (Graphics g = Graphics.FromHdc(NativeMethods.GetDC(IntPtr.Zero))) { dpiX = g.DpiX; dpiY = g.DpiY; } </code></pre> <p>This works fine in most situations. But when the code runs on a Vista machine with Aero turned on, and the user has set the monitor to use a high DPI, bizarre results come back. </p> <p>Lets say the user has set the machine to run at 1024 x 768 and has the DPI at 144, the code above will return a resolution of 683 x 512 and a DPI of 96.</p> <p>However, if Aero is turned off, the results come back as I would expect them. What is Aero doing and how can I get the true resolution and DPI?</p> http://stackoverflow.com/questions/1336645/does-aero-manipulate-the-dpi-and-screen-size-why/1337093#1337093 0 Answer by epotter for Does Aero manipulate the DPI and Screen Size? Why? epotter 2009-08-26T19:57:42Z 2009-08-26T19:57:42Z <p>These links also provide useful information:</p> <p><a href="http://msdn.microsoft.com/en-us/library/dd464660%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/dd464660(VS.85).aspx</a></p> <p><a href="http://blogs.msdn.com/greg%5Fschechter/archive/2006/08/07/690704.aspx" rel="nofollow">http://blogs.msdn.com/greg_schechter/archive/2006/08/07/690704.aspx</a></p> http://stackoverflow.com/questions/1290272/c-autocomplete-colors-images/1290420#1290420 0 Answer by epotter for c# autocomplete colors, images? epotter 2009-08-17T21:00:31Z 2009-08-17T21:00:31Z <p>You will probably see functionality like this in VS2010 or in plugins for it. VS2010's editor is written in WPF, so there will be much better possibilities for rich features like the one you desire. </p> <p>Unfortunately, I don't think anything like that exists for VS2008.</p> http://stackoverflow.com/questions/1279525/good-windows-application-installer-software/1279566#1279566 0 Answer by epotter for Good Windows application installer software. epotter 2009-08-14T18:56:26Z 2009-08-14T18:56:26Z <p>InstallSheild is a bit too expensive to use for simple projects. It is great for projects with moderate complexity. It is a huge headache to create complex installers with it.</p> <p>One of the biggest headaches with InstallSheild is that the UI scripting is done with a language called InstallScript. It's not hard to learn, but it has some annoying syntax structures that will drive a C# developer crazy.</p> http://stackoverflow.com/questions/27857/c-c-source-code-visualization/1274513#1274513 1 Answer by epotter for c/c++ source code visualization? epotter 2009-08-13T20:53:44Z 2009-08-13T20:53:44Z <p>There is an old tool called <a href="http://www.swbs.com/" rel="nofollow">CDOC</a> that we still use to generate call trees.</p> http://stackoverflow.com/questions/577278/wpf-chart-controls/1274273#1274273 0 Answer by epotter for WPF chart controls epotter 2009-08-13T20:07:06Z 2009-08-13T20:07:06Z <p>Try <a href="http://www.VisiFire.com" rel="nofollow">VisiFire</a>. It looks good. It works well. And it is open source with a commercial license option.</p> http://stackoverflow.com/questions/545513/what-is-the-best-way-to-make-a-graph-in-wpf-or-in-general-that-would-apply-to-w/1274268#1274268 1 Answer by epotter for What is the best way to make a graph in WPF? (or in general that would apply to WPF as well) epotter 2009-08-13T20:06:24Z 2009-08-13T20:06:24Z <p>Try <a href="http://www.VisiFire.com" rel="nofollow">VisiFire</a>. It looks good. It works well. And it is open source with a commercial license option.</p> http://stackoverflow.com/questions/1257955/multilingual-windows-application-using-c-net/1257969#1257969 1 Answer by epotter for Multilingual windows application using C#.NET epotter 2009-08-11T00:44:44Z 2009-08-11T00:44:44Z <p>In my experience, it is easier to have all of your localized resources in one place. Often, an application will have strings that are used in several places. If you have all of your resources in one place, you will only have to translate the repeated string once.</p> http://stackoverflow.com/questions/1245979/c-c-call-graph-utility-for-windows-platform/1248645#1248645 2 Answer by epotter for C/C++ call-graph utility for Windows platform epotter 2009-08-08T11:42:03Z 2009-08-08T11:42:03Z <p>This is an old tool called <a href="http://www.swbs.com/" rel="nofollow">CDoc</a> that I have found useful. </p> http://stackoverflow.com/questions/1240810/how-can-i-determine-which-version-of-chrome-is-installed 0 How can I determine which version of Chrome is installed? epotter 2009-08-06T19:17:47Z 2009-08-06T20:21:04Z <p>I'm working on a WinForms application. I'd like to know if chrome is installed and if so, what version is installed. It is simple enough to see if it is installed. But what is the best way to get the version number?</p> <p>For other browsers, I call FileVersionInfo.GetVersionInfo on the main executable. But google doesn't put the version number in the the meta data. </p> http://stackoverflow.com/questions/1233217/difference-between-systeminformation-computername-environment-machinename-and-n 1 Difference between SystemInformation.ComputerName, Environment.MachineName, and Net.Dns.GetHostName epotter 2009-08-05T13:19:20Z 2009-08-05T14:02:42Z <p>From what I have seen, in the MSDN documentation and in other questions here on SO, there are four ways to get the local machine name. </p> <pre><code>Environment.MachineName; System.Net.Dns.GetHostName(); System.Windows.Forms.SystemInformation.ComputerName; System.Environment.GetEnvironmentVariable(“COMPUTERNAME”); </code></pre> <p>Is there a differnece in what they methods will return or will they all return the exact same thing all of the time?</p> <p>Note: I first saw the list in this post: <a href="http://stackoverflow.com/questions/662282/how-do-i-get-the-local-machine-name">http://stackoverflow.com/questions/662282/how-do-i-get-the-local-machine-name</a></p> http://stackoverflow.com/questions/1204056/configuring-non-domain-user-accounts-for-vmware-remote-debugging 1 Configuring non-domain user accounts for VMware remote debugging epotter 2009-07-30T01:43:21Z 2009-07-30T03:16:25Z <p>My development machine is on the corporate network, and I log on to it using my domain account. I have VMware workstation installed, but my virtual machines are not and cannot be a part of the corporate domain. </p> <p>The problem is that I would like to use the VMware remote debugging option and debug from Visual Studio on the development machine into one of my virtual machines. One of the requirements of remote debugging is that the same user account has to be valid on both machines. </p> <p>Is there are way to make my domain account valid on a virtual machine that is not on the domain? Or is there a way to make both machines use an account that is not a part of a domain?</p> http://stackoverflow.com/questions/1647458/calculating-length-based-on-sensor-data Comment by epotter on Calculating Length Based on Sensor Data epotter 2009-10-30T01:00:49Z 2009-10-30T01:00:49Z I doubt the calculation will be linear, we will need more examples values to be able to help you. For example, we will need to know the values are 2, 3, 4, 7, and 8 inches. http://stackoverflow.com/questions/1626036/how-do-i-collapse-selected-chunks-of-code-in-visual-studio-2008/1626053#1626053 Comment by epotter on How do I collapse selected chunks of code in Visual Studio 2008? epotter 2009-10-26T17:42:39Z 2009-10-26T17:42:39Z I'm not sure why you think it is commenting out the code. You should be able to use the #pragma regions statements to create collapsible chunks of working code. http://stackoverflow.com/questions/1567535/ppv-code-review-is-it-good-idea Comment by epotter on PPV Code Review - Is it good idea? epotter 2009-10-14T19:27:55Z 2009-10-14T19:27:55Z If you want to contact me, email me at &lt;my stackoverflow username&gt; @logikos.com http://stackoverflow.com/questions/1567535/ppv-code-review-is-it-good-idea Comment by epotter on PPV Code Review - Is it good idea? epotter 2009-10-14T16:46:20Z 2009-10-14T16:46:20Z I hate to sound like a salesman, but my company does code reviews. http://stackoverflow.com/questions/1511557/looking-for-hardware-that-will-easily-interface-with-my-net-code/1511634#1511634 Comment by epotter on Looking for Hardware that will easily interface with my .NET code. epotter 2009-10-02T20:33:17Z 2009-10-02T20:33:17Z I've used Phidgets on a few projects and have had nothing but good experiences. The C# libraries wrap everything beautifully. http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language/187784#187784 Comment by epotter on What is your favorite esoteric programming language? epotter 2009-10-01T19:25:54Z 2009-10-01T19:25:54Z I see your point, now that it is going to be a part of VS2010, you could argue that it is mainstream. When I made the comment, it was still nothing more than a little project in MS research. http://stackoverflow.com/questions/1399634/problem-with-dbcc-checkident-with-chinese-characters-in-table-name/1399805#1399805 Comment by epotter on Problem with DBCC CHECKIDENT with Chinese characters in table name epotter 2009-09-09T14:19:48Z 2009-09-09T14:19:48Z perfect. Thank you. http://stackoverflow.com/questions/1348053/wpf-toolkit-calendar-control-how-to-prevent-next-month-scrolling/1348491#1348491 Comment by epotter on WPF Toolkit Calendar Control - how to prevent next month scrolling? epotter 2009-08-28T19:58:54Z 2009-08-28T19:58:54Z In my experience, with the DisplayDateStart and DisplayDateEnd set within the currently displayed month, the arrows are there, but they don't do anything. On your machine, does the calender move to a different month if the user clicks the arrows? http://stackoverflow.com/questions/1309885/english-site-on-japanese-language-operating-system Comment by epotter on English site on Japanese language Operating System epotter 2009-08-21T02:59:42Z 2009-08-21T02:59:42Z You're missing a 'J' in the title of this question http://stackoverflow.com/questions/197127/prevent-exception-messages-from-being-translated-into-the-users-language/197141#197141 Comment by epotter on Prevent exception messages from being translated into the user's language? epotter 2009-08-19T20:41:01Z 2009-08-19T20:41:01Z Here is the full line: System.Threading.Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo(&quot;en-US&quot;); http://stackoverflow.com/questions/545513/what-is-the-best-way-to-make-a-graph-in-wpf-or-in-general-that-would-apply-to-w/1274268#1274268 Comment by epotter on What is the best way to make a graph in WPF? (or in general that would apply to WPF as well) epotter 2009-08-14T01:59:44Z 2009-08-14T01:59:44Z I've used it with WPF without any issues. When you download the library, there are several WPF projects included as samples. http://stackoverflow.com/questions/1257964/vector-calculation-c Comment by epotter on vector calculation c# epotter 2009-08-11T00:46:35Z 2009-08-11T00:46:35Z I think you mean 'spheres' http://stackoverflow.com/questions/1254254/developer-personality-test/1254271#1254271 Comment by epotter on Developer personality test epotter 2009-08-10T11:06:00Z 2009-08-10T11:06:00Z If you think it is worth answering, don't vote to close it. Other people will want to answer it as well. http://stackoverflow.com/questions/105031/c-how-do-you-get-total-amount-of-ram-the-computer-has/105053#105053 Comment by epotter on C# - How do you get total amount of RAM the computer has? epotter 2009-08-07T18:03:30Z 2009-08-07T18:03:30Z Also, using WMI to query TotalPhysicalMemory in Win32_ComputerSystem or Win32_LogicalMemoryConfiguration also produces the wrong result. http://stackoverflow.com/questions/105031/c-how-do-you-get-total-amount-of-ram-the-computer-has/105053#105053 Comment by epotter on C# - How do you get total amount of RAM the computer has? epotter 2009-08-07T17:46:30Z 2009-08-07T17:46:30Z Actually, DevelopingChris is correct. If you call GlobalMemoryStatusEx on a XP machine with 4 Gig of Ram, it will report that there is only 3 Gig installed.