User Venr - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T14:23:57Zhttp://stackoverflow.com/feeds/user/20385http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1474535/best-way-technology-to-implement-a-generic-archive-process/1474608#14746080Answer by Venr for Best way/technology to implement a generic archive processVenr2009-09-24T22:59:15Z2009-09-24T22:59:15Z<p>Maybe I'm not reading the requirements correctly but wouldn't a simple </p>
<pre><code>create <dest_table> as select * from <source_table>;
</code></pre>
<p>suffice? with a drop first on the dest_table if it already exists?</p>
http://stackoverflow.com/questions/1472783/hidden-field-is-null-on-ispostback-and-not-null-on-ispostback/1472988#14729883Answer by Venr for hidden field is null on !IsPostBack and not null on IsPostBackVenr2009-09-24T17:05:31Z2009-09-24T17:05:31Z<p>You could define a property in your page class and then modify the property value in your code:</p>
<pre><code> protected string HiddenFieldValue { get; set; }
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack)
HiddenFieldValue = "postback";
else
HiddenFieldValue = "not postback";
}
</code></pre>
<p>Then define the hidden form field like this so that it's value is set to the property value:</p>
<pre><code> <input type='hidden' id='hidden1' value='<%=HiddenFieldValue %>' />
</code></pre>
<p>If you only want to set the value form the property during a postback or non-postback you could add the condition as well:</p>
<pre><code> <input type='hidden' id='hidden1' value='<% if(IsPostBack) { %> <%=HiddenFieldValue%> <% } %>' />
</code></pre>
http://stackoverflow.com/questions/1466166/what-is-the-best-way-of-generating-a-xslx-file-on-a-web-site-possibly-with-milli/1466249#14662491Answer by Venr for What is the best way of generating a xslx file on a web site? Possibly with millions of rows?Venr2009-09-23T14:13:02Z2009-09-24T12:14:22Z<p>Excel 2007 supports a maximum worksheet size of 1,048,576 rows by 16,384 columns so your test with 1.5 million rows may not be feasible. <a href="http://office.microsoft.com/en-us/excel/HP100738491033.aspx" rel="nofollow">Source</a></p>
<p>Edit: Excel 2003 supports even fewer rows: 65,536 rows by 256 columns. <a href="http://office.microsoft.com/en-us/excel/HP051992911033.aspx?pid=CH062527721033" rel="nofollow">Source</a></p>
<p>If you are able to require that your users have the ability to open documents in the Excel 2007 (xlsx) format then that may be your best bet as it is just a XML document and can be generated without any requirement for Excel on the server. </p>
<p>If you need to support "all" version of excel/other office suite programs you should probably use CSV or another character delimited format. </p>
<p>The <a href="http://en.wikipedia.org/wiki/OpenDocument" rel="nofollow">Open Document Format</a> may also be of interest but excel users would need the <a href="http://odf-converter.sourceforge.net/download.html" rel="nofollow">ODF add-in</a> to use the documents.</p>
<p>Edit 2: If you are looking at using CSV you may want to look at the <a href="http://filehelpers.sourceforge.net/" rel="nofollow">FileHelpers</a> library.</p>
http://stackoverflow.com/questions/1469334/what-is-the-best-documented-ioc-framework-for-net/1469347#14693474Answer by Venr for What is the best documented IOC framework for .net?Venr2009-09-24T01:09:25Z2009-09-24T01:09:25Z<p>Microsoft's <a href="http://msdn.microsoft.com/en-us/library/dd140117.aspx" rel="nofollow">Unity Application Block</a> is pretty well documented.</p>
http://stackoverflow.com/questions/1410645/are-public-fields-ever-ok/1411094#14110940Answer by Venr for Are public fields ever OK?Venr2009-09-11T14:08:42Z2009-09-11T14:08:42Z<p>If you modify your test to use the temp variables you assign rather than directly access the properties in your calculation you will see a large performance improvement:</p>
<pre><code> sw.Start();
for (int i = 0; i < loopCount; i++)
{
x = point._x;
y = point._y;
z = point._z;
calculatedValue = x * y / z;
}
sw.Stop();
double fieldTime = sw.ElapsedMilliseconds;
Console.WriteLine("Direct field access: " + fieldTime);
sw.Reset();
sw.Start();
for (int i = 0; i < loopCount; i++)
{
x = point.X;
y = point.Y;
z = point.Z;
calculatedValue = x * y / z;
}
sw.Stop();
</code></pre>
http://stackoverflow.com/questions/1340325/create-a-webpage-popup-using-c/1340480#13404801Answer by Venr for create a webpage popup using c#Venr2009-08-27T11:29:11Z2009-08-28T02:46:06Z<p>The short answer is, you can't. C# runs on the server and opening a popup window is a client side action. You will need to have JavaScript in your rendered markup to open the popup window when appropriate, or an anchor tag with target="_blank".</p>
<p>However, I agree with the other answers that popup windows are more of a pain than they are worth, they annoy users and lead to window management issues that are not always easy to solve especially when popup blockers are involved. A DOM based modal dialog is almost always a better solution. </p>
http://stackoverflow.com/questions/1340298/obtaining-background-image-from-stylesheet-using-c/1340396#13403960Answer by Venr for Obtaining Background-image from stylesheet using C# Venr2009-08-27T11:13:48Z2009-08-27T11:13:48Z<p>The problem is that CSS rules are not applied or enforced on the server, they are applied by the client browser. You could perhaps create a parser that goes through the referenced CSS files and figures out what image <em>should</em> be displayed but you really can't know with certainty how the client browser will interpret and apply the CSS rules.</p>
http://stackoverflow.com/questions/1300224/can-visual-studio-vss-be-configured-to-show-the-name-of-the-user-that-checked-o/1300395#13003952Answer by Venr for Can Visual Studio / VSS be configured to show the name of the user that checked out the file?Venr2009-08-19T14:35:24Z2009-08-19T14:35:24Z<p>When you attempt to check out a file and get the error dialog indicating that the file is already exclusively checked out, if you bring up the output dialog and switch to the source control view you should see a message indicating the user id of the user who has the file checked out.</p>
http://stackoverflow.com/questions/99743/what-are-some-decent-isps-that-host-subversion/958811#9588110Answer by Venr for What Are Some Decent ISPs That Host SubversionVenr2009-06-06T01:53:38Z2009-06-06T01:53:38Z<p>I recommend <a href="http://beanstalkapp.com/" rel="nofollow">http://beanstalkapp.com/</a></p>
http://stackoverflow.com/questions/958040/what-is-ajax-really/958122#9581220Answer by Venr for What is AJAX, really?Venr2009-06-05T21:00:32Z2009-06-05T21:00:32Z<p>AJAX stands for asynchronous JavaScript and XML, though it doesn't always deal with XML data anymore. Essentially it boils down to using the XMLHttpRequest object through JavaScript running on the client to make a web request and retrieve some information that you use to update the state of your page without requiring a page refresh.</p>
<p>Start with a basic tutorial that shows you how to use bare bones Ajax to make asynchronous requests such as <a href="http://www.w3schools.com/Ajax/Default.asp" rel="nofollow">http://www.w3schools.com/Ajax/Default.asp</a> before moving on to using it in a production level application.</p>
<p>When using it in an application you're far better off investigating one of the common JavaScript frameworks that abstract away the differences between the various browsers and make it easy to manipulate the page after the request returns. I personally recommend <a href="http://www.jquery.com/" rel="nofollow">http://www.jquery.com/</a></p>
http://stackoverflow.com/questions/941468/c-mvc-trailing-equal-sign-in-url-doesnt-hit-route/941509#9415091Answer by Venr for C# MVC: Trailing equal sign in URL doesn't hit routeVenr2009-06-02T19:42:41Z2009-06-02T19:42:41Z<p>IF you're passing data in the URL you should probably URL Encode it which would take care of the trailing =.</p>
<p><a href="http://www.albionresearch.com/misc/urlencode.php" rel="nofollow">http://www.albionresearch.com/misc/urlencode.php</a></p>
http://stackoverflow.com/questions/939381/company-standards-c-net-vs-vb-net-vs-whatever-net/939824#9398240Answer by Venr for Company standards: C#.NET vs VB.NET vs. whatever.NETVenr2009-06-02T14:15:23Z2009-06-02T14:15:23Z<p>One of the advantages of using the .Net platform for development is the fact that you have the ability to develop in the language that is best able to express you solution to the problem at hand. </p>
<p>An arbitrary rule IMO should not prevent you from using F# or a DLR language when those languages would be a more natural fit than an imperative language like C# or VB.Net.</p>
<p>It's a harder decision to make with VB.Net vs. C# because the languages are so similar but If you need to do a lot of work with XML then VB.Net's XML literals may help make the code clearer, conversely C#s terse syntax and support for anonymous methods may make your intent clearer.</p>
http://stackoverflow.com/questions/894314/anonymous-types/894332#8943323Answer by Venr for Anonymous typesVenr2009-05-21T18:21:11Z2009-05-21T18:39:36Z<p>a is a string property on your anonymous type</p>
<pre><code>private void button4_Click(object sender, EventArgs e)
{
test((new { a = "asd" }).a);
}
private void test(string a)
{
}
</code></pre>
<p>Edit: Anonymous types do not derive from anything other than object so you cannot create a method that expects an anonymous type parameter.</p>
<p>Edit 2: when you create an anonymous type the compiler create an entirely new type based on the properties you set and the order in which they appear. You cannot create an anonymous type and use it in place of any other type (other than object). The most common scenario I've used them in is for binding when you need to flatten your object graph.</p>
<p>warning, I am horrible at coming up with good example scenarios and this is all from memory!
for example if I had a list of Person objects that had a name property and an address property that contained the street address and needed to bind to a list box</p>
<pre><code>var people = new List<Person>()
listbox.TextMember = "Text";
listbox.ValueMember = "Value"
listbox.DataSource = from p in people
select new { Text = p.Name, Value = p.Address.StreetAddress };
</code></pre>
http://stackoverflow.com/questions/865513/checkbox-and-jquery-is-checked-always-false/865589#8655893Answer by Venr for Checkbox and JQUERY: "is checked" always FALSEVenr2009-05-14T20:33:25Z2009-05-14T20:33:25Z<p>could it be because you are comparing the value of the checked property to a string rather than a boolean and using the === operator which compares both value and type?</p>
http://stackoverflow.com/questions/726580/stack-overflow-error-when-using-jquery-asp-net-for-simple-ajax-chat/726600#7266004Answer by Venr for Stack overflow error when using JQuery/ASP.NET for simple ajax chatVenr2009-04-07T16:43:11Z2009-04-07T16:43:11Z<p>Your javascript refreshChat function is recursively calling itself. Change the code to:</p>
<pre><code> function refreshChat()
{
$.get("messages.aspx", function(data) {
$("#chatbox").empty();
$("#chatbox").prepend(data);
});
setTimeout(refreshChat, 5000);
}
</code></pre>
http://stackoverflow.com/questions/593573/castexception-attempting-to-call-actionkeyvaluepair-delegate-asynchronously1CastException attempting to call Action<KeyValuePair<>> delegate asynchronouslyVenr2009-02-27T05:01:55Z2009-02-27T23:31:44Z
<p>I can't seem to figure out why I am getting an InvalidCastException running the following code:</p>
<pre><code>var item = new KeyValuePair<string, string>("key", "value");
Action<KeyValuePair<string, string>> kvrAction =
kvr =>Console.WriteLine(kvr.Value);
var result = kvrAction.BeginInvoke(item, null, null);
kvrAction.EndInvoke(result);
</code></pre>
<p>Exception Info:</p>
<pre><code>Test method Utilities.Tests.IEnumerableExtensionTests.ProveDelegateAsyncInvokeFailsForKeyValuePair threw exception: System.Runtime.Remoting.RemotingException: The argument type '[key, value]' cannot be converted into parameter type 'System.Collections.Generic.KeyValuePair`2[System.String,System.String]'.
---> System.InvalidCastException: Object must implement IConvertible..
</code></pre>
<p>Any assistance would be appreciated =) This code seems to work with anything I throw at it except a KeyValuePair<>.</p>
<p>Update: It appears this condition exists for any struct. I hadn't noticed KeyValuePair<> was a struct and so was only testing with classes. I still don't understand why this is the case though. </p>
<p>Update 2: Simon's answer helped confirm this behavior is unexpected, however implementing a custom type won't work for what I'm trying to do. I am trying to implement an extension method on IEnumerable<> to execute a delegate Asynchronously for each item. I noticed the error running tests against a generic Dictionary object.</p>
<pre><code> public static IEnumerable<T> ForEachAsync<T>(this IEnumerable<T> input, Action<T> act)
{
foreach (var item in input)
{
act.BeginInvoke(item, new AsyncCallback(EndAsyncCall<T>), null);
}
return input;
}
private static void EndAsyncCall<T>(IAsyncResult result)
{
AsyncResult r = (AsyncResult)result;
if (!r.EndInvokeCalled)
{
var d = (Action<T>)((r).AsyncDelegate);
d.EndInvoke(result);
}
}
</code></pre>
<p>I would rather not limit the method with a constraint on T to ensure only classes are used so I have refactored the method as follows to get around the problem with BeginInvoke but I have not worked with the TreadPool directly before and would like to make sure I am not missing anything important.</p>
<pre><code> public static IEnumerable<T> ForEachAsync<T>(this IEnumerable<T> input, Action<T> act)
{
foreach (var item in input)
ThreadPool.QueueUserWorkItem(obj => act((T)obj), item);
return input;
}
</code></pre>
http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/271941#27194112Answer by Venr for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)Venr2008-11-07T12:41:24Z2008-11-07T12:41:24Z<p>Here is one I use frequently for presentation formatting.</p>
<pre><code>
public static string ToTitleCase(this string mText)
{
string rText = "";
try
{
System.Globalization.CultureInfo cultureInfo = System.Threading.Thread.CurrentThread.CurrentCulture;
System.Globalization.TextInfo TextInfo = cultureInfo.TextInfo;
rText = TextInfo.ToTitleCase(mText.ToLower());
}
catch
{
rText = mText;
}
return rText;
}
</code></pre>
http://stackoverflow.com/questions/962032/how-do-i-count-the-number-of-rows-returned-in-my-sqlite-reader-in-c/962053#962053Comment by Venr on How do I count the number of rows returned in my SQLite reader (in C#)?Venr2009-06-07T16:07:31Z2009-06-07T16:07:31ZThis isn't directly related to the question but I would recommend not using string concatenation to build the sql string, instead use a parametrized query to prevent against possible sql injection. http://stackoverflow.com/questions/958349/next-month-same-day-in-phpComment by Venr on Next month, same day in PHPVenr2009-06-05T22:07:45Z2009-06-05T22:07:45ZI'm not a PHP dev so just adding some context, Outlook defaults to using the last day of the month if the date specified isn't a valid date for that month. Do you need to take into account weekends and holidays?http://stackoverflow.com/questions/941468/c-mvc-trailing-equal-sign-in-url-doesnt-hit-route/941503#941503Comment by Venr on C# MVC: Trailing equal sign in URL doesn't hit routeVenr2009-06-02T19:43:37Z2009-06-02T19:43:37Za url encode would turn teh = to %3Dhttp://stackoverflow.com/questions/894314/anonymous-types/894332#894332Comment by Venr on Anonymous typesVenr2009-05-21T18:51:26Z2009-05-21T18:51:26Z@ John, if you have a method that takes a string array as the parameter, pass it a string array. You would not create an anonymous type for this, typically you create an anonymous type because you want a custom property container. but just for the sake of argument, either define your anonymous type to include a string[] property or construct a new string[] with the string property from your anonymous type and pass it to the method. http://stackoverflow.com/questions/836945/i-dont-like-this-is-this-cheating-the-language/837038#837038Comment by Venr on I don't like this... Is this cheating the language?Venr2009-05-07T21:13:07Z2009-05-07T21:13:07Zevaluation for the logical operators is guaranteed to be left to right and to break as soon as a determination can be made.http://stackoverflow.com/questions/593573/castexception-attempting-to-call-actionkeyvaluepair-delegate-asynchronously/593727#593727Comment by Venr on CastException attempting to call Action<KeyValuePair<>> delegate asynchronouslyVenr2009-02-27T16:48:34Z2009-02-27T16:48:34ZThanks Simon, I'm glad I wasn't just overlooking something silly. I assume its a bug in the framework causing the type checks to fails resulting in check for the IConvertable interface. Unfortunately implementing a custom type is not an option for what I am trying to do. I more detail to come.