User CYBRFRK - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:44:45Z http://stackoverflow.com/feeds/user/32496 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/247849/how-do-you-graph-with-silverlight-inside-a-asp-net-v3-5-application 0 How do you graph with Silverlight inside a ASP.NET v3.5 application? CYBRFRK 2008-10-29T18:22:16Z 2009-01-08T07:06:56Z <p>I have the need to do some graphing (bar, chart, pie, trend) and instead of using Infragistics or manually drawing the graphs I want to use Silverlight. </p> <p>My current ASP.NET application was upgraded to 3.5 and I have added a Silverlight Application project. Consuming the output inside of the existing master.page layout or inside of user controls does not seem to be as intuitive as I was hoping for. </p> <p>Nor is the ability to create a graph from a generics listing of data even a control (like I have seen in several demonstrations at PDC08). Any ideas?</p> http://stackoverflow.com/questions/277925/too-much-physical-memory-for-an-asp-net-app/278338#278338 0 Answer by CYBRFRK for Too much physical memory for an asp.net app? CYBRFRK 2008-11-10T16:25:55Z 2008-11-10T16:25:55Z <p>We were having similar situations occur and altered all our database connections to use a try/catch/finally approach. Try was used to execute code, catch for error collection, and finally to close all variables and database connections.</p> <pre><code>internal BECollection&lt;ReportEntity&gt; GetSomeReport() { Database db = DatabaseFactory.CreateDatabase(); BECollection&lt;ReportEntity&gt; _ind = new BECollection&lt;ReportEntity&gt;(); System.Data.Common.DbCommand dbc = db.GetStoredProcCommand("storedprocedure"); try { SqlDataReader reader = (SqlDataReader)db.ExecuteReader(dbc); while (reader.Read()) { //populate entity } } catch (Exception ex) { Logging.LogMe(ex.Message.ToString(), "Error on SomeLayer/SomeReport", 1, 1); return null; } finally { dbc.Connection.Close(); _ind = null; } return _ind; } </code></pre> http://stackoverflow.com/questions/265651/adding-a-threshold-goal-line-to-an-infragistics-6-3-linechart 0 Adding a threshold/goal line to an Infragistics 6.3 LineChart? CYBRFRK 2008-11-05T16:14:47Z 2008-11-05T16:14:47Z <p>I am trying to tweak an existing LineChart (WebUI.UltraWebChart) by adding goal-line. This seems nearly impossible to draw a simple "MAX GOAL" line (either horizontally or vertically).</p> <p>We will eventually either upgrade to the newest bits or revamp into Silverlight graphs, however, this needs resolved now.</p> http://stackoverflow.com/questions/258548/what-is-the-most-important-thing-you-werent-taught-in-school/258837#258837 10 Answer by CYBRFRK for What is the most important thing you weren't taught in school? CYBRFRK 2008-11-03T14:43:52Z 2008-11-03T14:43:52Z <ol> <li>Source code control</li> <li>Unit Testing (testing in general)</li> <li>Agile Development</li> <li>Code Commenting</li> <li>Code Review</li> <li>Standards compliance</li> <li>Proper architecture compliance</li> </ol> http://stackoverflow.com/questions/222748/no-report-items-in-toolbox-vs-2008-sp1/251192#251192 0 Answer by CYBRFRK for No Report Items in toolbox (VS 2008 SP1) CYBRFRK 2008-10-30T18:14:30Z 2008-10-30T18:14:30Z <p>Here is a book reference available through Google Books: <a href="http://books.google.com/books?id=b9j0MKXhnygC&amp;pg=PA419&amp;lpg=PA419&amp;dq=vs+2008+Reports+Application+toolbox&amp;source=web&amp;ots=awTO1ibUZH&amp;sig=7iHAUSCZ46_uAjC5lAfLeiXZt_Q&amp;hl=en&amp;sa=X&amp;oi=book_result&amp;resnum=7&amp;ct=result#PPA433,M1" rel="nofollow">http://books.google.com/books?id=b9j0MKXhnygC&amp;pg=PA419&amp;lpg=PA419&amp;dq=vs+2008+Reports+Application+toolbox&amp;source=web&amp;ots=awTO1ibUZH&amp;sig=7iHAUSCZ46_uAjC5lAfLeiXZt_Q&amp;hl=en&amp;sa=X&amp;oi=book_result&amp;resnum=7&amp;ct=result#PPA433,M1</a></p> <p>I also did the same (on same VS2008 SP1) and had the exact same items available.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251024#251024 1 Answer by CYBRFRK for Do I really need version control? CYBRFRK 2008-10-30T17:22:51Z 2008-10-30T17:22:51Z <p>When things can go wrong they will. It is very nice to have the ability to reference code you may have deleted a month ago, or to recover the entire project after a hardware failure or upgrade.</p> <p>There may also be a point in the future when the project is worked on by more than you. The ability to prevent (or control) branching and versioning is a must in an environment like that.</p>