User Ioxp - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T06:21:18Z http://stackoverflow.com/feeds/user/59376 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1562313/xslt-node-traversal 1 XSLT node Traversal Ioxp 2009-10-13T19:09:12Z 2009-10-15T17:59:04Z <p><strong>Here is a snip-it of the XML:</strong></p> <pre><code>&lt;?xml version="1.0" encoding="iso-8859-1" ?&gt; &lt;NetworkAppliance id="S123456"&gt; &lt;Group id="9"&gt; &lt;Probe id="1"&gt; &lt;Value&gt;74.7&lt;/Value&gt; &lt;/Probe&gt; &lt;/NetworkAppliance&gt; </code></pre> <p>I want to get the single point value of 74.7. There are many groups with unique ID's and many Probes under that group with unique ID's each with values. </p> <p>I am looking for example XSLT code that can get me this one value. Here is what i have that does not work:</p> <pre><code>&lt;?xml version="1.0" ?&gt; &lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"&gt; &lt;xsl:output method="html" version="3.2" /&gt; &lt;xsl:template match="NetworkAppliance"&gt; &lt;xsl:apply-templates select="Group[@id='9']"/&gt; &lt;/xsl:template&gt; &lt;xsl:template match="Group"&gt; Temp: &lt;xsl:value-of select="Probe[@id='1']/Value"/&gt; &lt;br/&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>Here is what worked for me in the end:</p> <pre><code>&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt; &lt;!-- Edited by XMLSpy® --&gt; &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:template match="/"&gt; &lt;html&gt; &lt;body&gt; &lt;xsl:for-each select="NetworkAppliance/Group[@id=9]/Probe[@id=1]"&gt; Value: &lt;xsl:value-of select="Value" /&gt; &lt;/xsl:for-each&gt; &lt;/body&gt; &lt;/html&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> http://stackoverflow.com/questions/1545880/javascript-returning-month-as-9-where-it-is-10 1 Javascript returning month as 9 where it is 10 Ioxp 2009-10-09T20:25:16Z 2009-10-09T20:27:12Z <p>I'm building today's date using a onclick event in JavaScript. When i set the .value property with:</p> <pre><code>var now = new Date; ...Value = now.getMonth() + "/" + now.getDate() + "/" + now.getYear(); </code></pre> <p>this produces: 9/9/2009 I am expecting: 10/9/2009 </p> <p>This happens in both IE and Firefox. The system time on my computer is correct. Any ideas?</p> http://stackoverflow.com/questions/1086673/load-javascript-code-after-loading-code-behind/1086737#1086737 0 Answer by Ioxp for Load javascript code after loading code behind Ioxp 2009-07-06T12:35:53Z 2009-07-06T12:35:53Z <p>This sounds like the classic asp.net page refresh issue. My first question would be do you have the ability to set session variables with your code? if you can then i would say on the C# side set your array or values into the session then call the session values back on the JS side. That way it does not matter how many page refreshes you have the data will be brought back for the user. When you change the data on the C# side, re-post the values to the session and then refresh the page. </p> http://stackoverflow.com/questions/933351/ms-sql-server-2000-slow-full-text-indexing/1070798#1070798 0 Answer by Ioxp for MS-SQL Server 2000 slow full text indexing Ioxp 2009-07-01T19:07:33Z 2009-07-01T19:13:02Z <p>This sounds a lot like an issue we were having. </p> <p>Our Issue: We have a monthly routine that updates and deletes about 600K records running on a windows 2003 server with a SQL Server 2000 DB. The process would take many hours similar to the issue you are having. We Upgraded the fill factor of the table from 90% to 70%, we got more pages and it helped a little bit. We Tried freeing up resources on the server, once again it helped a bit but really did not fix the issue. what eventually worked for us was running the following after each large update/delete process.</p> <pre><code>ALTER INDEX ALL ON &lt;Table&gt; REORGANIZE UPDATE STATISTICS &lt;Table&gt; </code></pre> <p>Rather than re-indexing the table we de-fragmented it instead. our process time was cut in half. Good luck, our battle was over 4 months, i hope it doesn't last as long for you. </p> http://stackoverflow.com/questions/897981/how-to-copy-an-entire-single-email-from-outlook/898236#898236 1 Answer by Ioxp for How to copy an entire single email from outlook? Ioxp 2009-05-22T14:45:20Z 2009-05-22T14:45:20Z <p>You may want to look at this post: <a href="http://stackoverflow.com/questions/588/best-way-to-access-exchange-using-php">http://stackoverflow.com/questions/588/best-way-to-access-exchange-using-php</a></p> http://stackoverflow.com/questions/654497/system-windows-forms-panel-enabled-false-color-overload 0 System.Windows.Forms.Panel.Enabled = false color overload? Ioxp 2009-03-17T14:32:06Z 2009-05-20T15:54:04Z <p>i have a System.Windows.Forms.Panel control in a windows application that has many labels and textboxes within the panel. When you call the Panel.Enabled = false command all of the textboxes and labels go gray and become un-editable which is the desired effect. Is there a way to overload the light gray colors when the panel is disabled? </p> <p>Solution used:</p> <p>Since the disabled color cant be overiden when disabled the following was used to disable only text boxes and labels on the Panel rather than the blanked Panel.Enabled = false;. </p> <pre><code>//Loop through the Member info Panel and find all the group boxes foreach (Control cItem in Panel.Controls) { //A group box is found if (cItem is GroupBox) { //Loop through all the group box components foreach (Control cSubItem in cItem.Controls) { //If its a label of text box disable it if (cSubItem is TextBox || cSubItem is Label) { cSubItem.Enabled = false; } } } } </code></pre> http://stackoverflow.com/questions/491646/auto-generated-code 1 auto-generated Code Ioxp 2009-01-29T13:50:36Z 2009-04-24T19:46:01Z <p>I am working on debugging some code and noticed a bunch of auto generated methods and objects. at the top of the code for these i find the following comment. How do you figure out what generated the code? My curiosity has gotten the better of me on this so that is why i ask. I have looked for parts of the comment in Google and found nothing concrete. </p> <pre><code>//------------------------------------------------------------------------------ // &lt;auto-generated&gt; // This code was generated by a tool. // Runtime Version:2.0.50727.42 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // &lt;/auto-generated&gt; //------------------------------------------------------------------------------ </code></pre> http://stackoverflow.com/questions/772301/describe-your-first-experience-in-programming/772316#772316 -1 Answer by Ioxp for Describe your first experience in programming? Ioxp 2009-04-21T12:27:32Z 2009-04-21T12:27:32Z <p>My first program was in Java 1.0 and it was Hello world. I wound up trashing my dads computer just trying to get the program to work (upgrading the computer from 3.11 to 95 with no clue what i was doing) and was grounded for a month. </p> http://stackoverflow.com/questions/756031/using-the-web-application-version-number-from-an-assembly-asp-net-c/756041#756041 3 Answer by Ioxp for Using the Web Application version number from an assembly (ASP.NET/C#) Ioxp 2009-04-16T13:10:04Z 2009-04-16T13:17:34Z <p>For web applications i have always used the Web.Config to store the current version of the site and another setting to show/hide it in the site footer for version control on staging and production. </p> <p>You can also try the following: </p> <p>create AssemblyInfo.cs file in the web application root that has the following</p> <pre><code>using System.Reflection; using System.Runtime.CompilerServices; ... [assembly: AssemblyVersion("1.0.*")] ... </code></pre> <p>then use </p> <pre><code>System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString() </code></pre> <p>Here is an <a href="http://thoughtpad.net/alan-dean/assemblyinfo.html" rel="nofollow">examlple</a> of what a AssemblyInfo.cs should look like </p> http://stackoverflow.com/questions/669569/how-to-copy-a-music-cd/669578#669578 3 Answer by Ioxp for How to copy a music CD Ioxp 2009-03-21T16:47:48Z 2009-03-21T16:47:48Z <p>Here is a sample C# project for ripping music. <a href="http://www.codeproject.com/KB/cs/csharpripper.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/csharpripper.aspx</a></p> http://stackoverflow.com/questions/517543/do-you-find-non-developers-logic-hard-to-follow 8 Do you find non-developers logic hard to follow? [closed] Ioxp 2009-02-05T19:32:58Z 2009-03-14T04:28:41Z <p>Before college i never really had a problem with people making absolutely flawed logic, but after years of teachers and managers oppressing the need to develop my code correctly it has become some what transitive to every day life. There are some days i sit back and truly fight the urge to go up to people and scream at them what the heck were you thinking. The following would be interesting to know:</p> <ul> <li>Does anyone else have this problem, and do you think its related to being a developer?</li> <li>Has anyone found a good way to deal with illogical people?</li> <li>Funny stories?</li> </ul> http://stackoverflow.com/questions/570165/best-way-to-deal-with-bad-apples/570270#570270 1 Answer by Ioxp for Best way to deal with 'bad apples'? Ioxp 2009-02-20T16:34:09Z 2009-02-20T16:34:09Z <p>Problems in projects come from everywhere from bad managers, spec, expectations, or execution. I'm sure that the following could be more in depth but here is the basic flow i try to work with when I'm in a team environment:</p> <ol> <li>Review and plan out all the aspects of the project</li> <li>Start project with goal points</li> <li>Monitor that the goals are being met</li> <li>When a goal is not being met then identify the problem with the team </li> <li>Correct the problem or work with the design flaw to get the project over the finish line</li> <li>Have a lessons learned about the project</li> </ol> <p>The bad apple can then at the lessons learned can be told his flaws based on the observations made during the project. He has an opportunity to learn from his mistakes and move on. if the bad apple doesn't learn anything then that will be apparent in the next project and grounds for re-assignment of responsibilities or even being asked to leave the company. </p> http://stackoverflow.com/questions/533516/stored-procedure-send-a-list-of-parameters-in-for-use-with-the-in-clause 2 Stored procedure - Send a list of parameters in for use with the IN clause [closed] Ioxp 2009-02-10T18:20:49Z 2009-02-10T18:59:19Z <p>[DUPLICATE of <a href="http://stackoverflow.com/questions/337704/parameterizing-a-sql-in-clause">http://stackoverflow.com/questions/337704/parameterizing-a-sql-in-clause</a>]</p> <p><hr /></p> <p><strong>Issue:</strong> I need to send in a list of values into a stored procedure for use with an IN statement in the WHERE clause.</p> <p><strong>Example:</strong></p> <pre><code>declare @SPType NVARCHAR ( 30 ) declare @SPCodeA int set @SPCodeA = 75 set @SPType = '''I'',''M''' select * from table where CodeA=@SPCodeA and Type in (@SPType) </code></pre> <p>From the above i am getting 0 results but i would like to get results where Type is I or M.</p> http://stackoverflow.com/questions/521683/xsd-how-to 1 XSD How To Ioxp 2009-02-06T19:00:40Z 2009-02-06T19:12:46Z <p><strong>Background:</strong></p> <p>We have an application that has been in the works for over a year by a third party company and looks like we will be maintaining this in house from now on. For the most part i am very competent i can handle 99% of any issues that come up. </p> <p>In this project there is an XSD file acts as a pass through to a bunch of stored procedures on a SQL Server 2005 box. </p> <p><strong>Questions:</strong></p> <ul> <li>Can the the XSD file be generated from the database, if so how is this done?</li> <li>Are these files hard to maintain if a stored procedure is changed on the database does a new XSD file need to be generated or can it be updated manually?</li> <li>Best practices with dealing with these files?</li> </ul> <p>I understand that this is a big question but i want to fully understand this before i take of the project next Tuesday. I am not sure if i will get much information out of the original developer about this. </p> http://stackoverflow.com/questions/511820/select-count-is-slow-even-with-where-clause/511899#511899 2 Answer by Ioxp for "SELECT COUNT(*)" is slow, even with where clause Ioxp 2009-02-04T15:42:00Z 2009-02-04T16:37:33Z <p>Check to see how fragmented your indexes are. At my company we have a nightly import process that trashes our indexes and over time it can have a profound impact on data access speeds. For example we had a SQL procedure that took 2 hours to run one day after de-fragmenting the indexes it took 3 minutes. we use SQL Server 2005 ill look for a script that can check this on MySQL. </p> <p>Update: Check out this link: <a href="http://dev.mysql.com/doc/refman/5.0/en/innodb-file-defragmenting.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/innodb-file-defragmenting.html</a></p> http://stackoverflow.com/questions/504585/c-application-over-a-network 1 C# Application over a Network Ioxp 2009-02-02T19:42:29Z 2009-02-02T19:51:00Z <p>I have run into a few cases where i have been asked to deploy an application (C#, .Net 2.0) to a server and users need to test the application over the network. I have found the following that works with out any hitches other than a warning telling you "hey your running this over a network are you sure you want to do this?":</p> <pre><code>%systemroot%\Microsoft.NET\Framework\v2.0.50727\caspol -m -cg 1.2 -url \\&lt;Path&gt; FullTrust </code></pre> <p>Is there a better way of centralizing the application than the above? </p> http://stackoverflow.com/questions/504431/t-sql-how-to-return-a-table-from-a-storedproc-in-another-stored-proc/504482#504482 1 Answer by Ioxp for T-Sql How to return a table from a storedproc in another stored proc. Ioxp 2009-02-02T19:12:09Z 2009-02-02T19:12:09Z <p>First you need to create a virtual table with the schema returned. Next populate the table from the results of the stored procedure. last use the temp table in joins or add where clauses to it to filter the data you want. You can also set up a cursor to go through the temp table. </p> <pre><code>DECLARE @TABLE TABLE ( Var1 int, var2 int, etc ... ) EXECUTE @TABLE = spReturnTable Parm1, Parm2, etc... SELECT * FROM @TABLE </code></pre> http://stackoverflow.com/questions/504299/best-practices-css-or-themes-in-asp-net/504345#504345 9 Answer by Ioxp for Best Practices: CSS or Themes in ASP.NET? Ioxp 2009-02-02T18:37:38Z 2009-02-02T18:37:38Z <p>I would recommend using CSS over Themes. The reason for this is in CSS you can modify your styles to they work with all browsers. You can do the same thing with themes but Microsoft's designer is notorious for fixing the things that you fixed to make them work on all browsers so its counter productive. Stick to CSS you will spend less time mucking about. </p> http://stackoverflow.com/questions/496058/how-do-you-explain-the-concept-of-programming-to-someone-who-has-no-clue-what-i/496102#496102 3 Answer by Ioxp for How do you explain the concept of "Programming" to someone who has no clue what it is? Ioxp 2009-01-30T16:22:04Z 2009-01-30T18:12:11Z <p>Programming languages are Like Lego bricks. There are different kinds of sets like Duplos, Technic and Clasic, same thing with programing languages there are many flavors that can do many different things depending on how advanced you want to get. but all in all in the end you build something cool and its fun getting there so long as you have good blueprints or creativity. </p> http://stackoverflow.com/questions/495705/how-can-i-create-an-iis-7-module-interface/495991#495991 1 Answer by Ioxp for How can I create an IIS 7 module interface? Ioxp 2009-01-30T15:54:14Z 2009-01-30T15:54:14Z <p>This may help to get started: </p> <p><a href="http://learn.iis.net/page.aspx/121/iis-7-modules-overview/#Getting" rel="nofollow">http://learn.iis.net/page.aspx/121/iis-7-modules-overview/#Getting</a><br> <a href="http://www.iis.net/ConfigReference/system.webServer/globalModules" rel="nofollow">http://www.iis.net/ConfigReference/system.webServer/globalModules</a></p> http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/484475#484475 2 Answer by Ioxp for What dead programming languages do you know? Ioxp 2009-01-27T17:55:57Z 2009-01-27T17:55:57Z <p>Apple Basic... good times on the Apple II GS and learning my first programming language. It was also a good way to learn that drawing to the screen problematically can be difficult but yet rewarding. </p> http://stackoverflow.com/questions/1545880/javascript-returning-month-as-9-where-it-is-10/1545885#1545885 Comment by Ioxp on Javascript returning month as 9 where it is 10 Ioxp 2009-10-09T20:28:07Z 2009-10-09T20:28:07Z Thanks, this was driving me nuts. http://stackoverflow.com/questions/1086673/load-javascript-code-after-loading-code-behind Comment by Ioxp on Load javascript code after loading code behind Ioxp 2009-07-06T12:42:20Z 2009-07-06T12:42:20Z Don't get depressed, its only code and half the fun of this line of work is getting there no matter how frustrating it gets. In the end the reward of defeating a tough problem should be good enough. http://stackoverflow.com/questions/897981/how-to-copy-an-entire-single-email-from-outlook Comment by Ioxp on How to copy an entire single email from outlook? Ioxp 2009-05-22T14:03:28Z 2009-05-22T14:03:28Z Can we have some more information about what language you would like a solution in. Also what is your email server software you may already have the database ready to access instead of pulling from outlook. http://stackoverflow.com/questions/893393/what-is-the-smallest-useful-piece-of-software-coded Comment by Ioxp on what is the smallest useful piece of software coded? Ioxp 2009-05-21T15:05:49Z 2009-05-21T15:05:49Z This should probably be a Wiki if you want it to survive. http://stackoverflow.com/questions/888731/two-sql-count-queries Comment by Ioxp on two SQL COUNT() queries? Ioxp 2009-05-20T16:03:23Z 2009-05-20T16:03:23Z Related but not to the solution: you can also use to get the counts for larger tables. SELECT SQL_CALC_FOUND_ROWSFROM MyTable; SELECT FOUND_ROWS(); SELECT SQL_CALC_FOUND_ROWSFROM MyTable WHERE {conditions}; SELECT FOUND_ROWS(); http://stackoverflow.com/questions/888731/two-sql-count-queries/888780#888780 Comment by Ioxp on two SQL COUNT() queries? Ioxp 2009-05-20T15:59:03Z 2009-05-20T15:59:03Z I agree this is the better way to get the result as it gets you want and should give it to you in about the same time as the separate executions. http://stackoverflow.com/questions/790668/np-hard-algorithmic-complexity-of-online-poker-collusion-detection Comment by Ioxp on NP-Hard? Algorithmic complexity of online poker collusion detection? Ioxp 2009-04-27T17:58:40Z 2009-04-27T17:58:40Z Since your post i have been reading up on the topic as i have never played online Poker or even real poker in a casino i wouldn't know where to begin with the haveColluded method below but i would say look into the works done by David Sklansky &amp; Mason Malmuth as they keep popping up as i look into the topic. http://stackoverflow.com/questions/777639/c-how-do-i-assign-many-variables-with-an-integeri-in-for-loop Comment by Ioxp on C#: How do i assign many variables with an integer(i) in for loop? Ioxp 2009-04-22T15:07:03Z 2009-04-22T15:07:03Z I'm not sure why you would ever want to do this. Perhaps an array or string list of these values would be a better solution? If applicable maybe even use generics to do what you want? can you give some more information on how this is being used? http://stackoverflow.com/questions/772301/describe-your-first-experience-in-programming Comment by Ioxp on Describe your first experience in programming? Ioxp 2009-04-21T12:24:53Z 2009-04-21T12:24:53Z I agree this should be a wiki or people will think your rep farming http://stackoverflow.com/questions/772263/how-can-this-not-be-a-constant-value Comment by Ioxp on How can this not be a constant value? Ioxp 2009-04-21T12:22:04Z 2009-04-21T12:22:04Z I plugged this into a new windows application and it compiled just fine and defined the array to the size in the const. Can you provide more information on where this is failing like is it a ASP.net code behind or a command line app, etc... http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184682#184682 Comment by Ioxp on What is the best comment in source code you have ever encountered? Ioxp 2009-04-20T18:57:11Z 2009-04-20T18:57:11Z I'm Guilty of this as well with the following: //ToDo: Fill in Exception here later http://stackoverflow.com/questions/756031/using-the-web-application-version-number-from-an-assembly-asp-net-c/756041#756041 Comment by Ioxp on Using the Web Application version number from an assembly (ASP.NET/C#) Ioxp 2009-04-16T15:12:19Z 2009-04-16T15:12:19Z Did you try the above? http://stackoverflow.com/questions/756081/configuring-file-dsn Comment by Ioxp on Configuring File DSN Ioxp 2009-04-16T13:24:30Z 2009-04-16T13:24:30Z You should add the C++ Tag http://stackoverflow.com/questions/730038/introducing-brevity-into-c-java/730045#730045 Comment by Ioxp on Introducing Brevity Into C# / Java Ioxp 2009-04-08T13:44:03Z 2009-04-08T13:44:03Z This is a .net 3.0+ implementation. is there a 2.0 version that works as well or do you still have to do it like List&lt;int&gt; listOfInts = new List&lt;int&gt;();? http://stackoverflow.com/questions/667354/what-is-the-proper-way-of-handling-page-events-in-user-controls Comment by Ioxp on What is the proper way of handling page events in user controls? Ioxp 2009-03-20T18:23:58Z 2009-03-20T18:23:58Z Are you talking about best practices, handling variables, page refreshes and events... What do you want to know...