User CYBRFRK - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T03:44:45Zhttp://stackoverflow.com/feeds/user/32496http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247849/how-do-you-graph-with-silverlight-inside-a-asp-net-v3-5-application0How do you graph with Silverlight inside a ASP.NET v3.5 application?CYBRFRK2008-10-29T18:22:16Z2009-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#2783380Answer by CYBRFRK for Too much physical memory for an asp.net app?CYBRFRK2008-11-10T16:25:55Z2008-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<ReportEntity> GetSomeReport()
{
Database db = DatabaseFactory.CreateDatabase();
BECollection<ReportEntity> _ind = new BECollection<ReportEntity>();
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-linechart0Adding a threshold/goal line to an Infragistics 6.3 LineChart?CYBRFRK2008-11-05T16:14:47Z2008-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#25883710Answer by CYBRFRK for What is the most important thing you weren't taught in school?CYBRFRK2008-11-03T14:43:52Z2008-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#2511920Answer by CYBRFRK for No Report Items in toolbox (VS 2008 SP1)CYBRFRK2008-10-30T18:14:30Z2008-10-30T18:14:30Z<p>Here is a book reference available through Google Books: <a href="http://books.google.com/books?id=b9j0MKXhnygC&pg=PA419&lpg=PA419&dq=vs+2008+Reports+Application+toolbox&source=web&ots=awTO1ibUZH&sig=7iHAUSCZ46_uAjC5lAfLeiXZt_Q&hl=en&sa=X&oi=book_result&resnum=7&ct=result#PPA433,M1" rel="nofollow">http://books.google.com/books?id=b9j0MKXhnygC&pg=PA419&lpg=PA419&dq=vs+2008+Reports+Application+toolbox&source=web&ots=awTO1ibUZH&sig=7iHAUSCZ46_uAjC5lAfLeiXZt_Q&hl=en&sa=X&oi=book_result&resnum=7&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#2510241Answer by CYBRFRK for Do I really need version control?CYBRFRK2008-10-30T17:22:51Z2008-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>