User Maudite - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T20:02:03Zhttp://stackoverflow.com/feeds/user/1632http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/230588/problem-sorting-lists-using-delegates4Problem sorting lists using delegatesMaudite2008-10-23T17:17:55Z2009-12-02T15:05:09Z
<p>I am trying to sort a list using delegates but I am getting a signature match error. The compiler says I cannot convert from an 'anonymous method' </p>
<pre><code>List<MyType> myList = GetMyList();
myList.Sort( delegate (MyType t1, MyType t2) { return (t1.ID < t2.ID); } );
</code></pre>
<p>What am I missing?</p>
<p>Here are some references I found and they do it the same way.</p>
<p><a href="http://www.developerfusion.com/code/5513/sorting-and-searching-using-c-lists/" rel="nofollow">Developer Fusion Reference</a> </p>
<p><a href="http://blogs.msdn.com/devdev/archive/2006/06/30/652802.aspx" rel="nofollow">Microsoft Reference</a></p>
http://stackoverflow.com/questions/235967/calling-a-jquery-function-inside-html-return-from-an-ajax-call2Calling a jQuery function inside html return from an AJAX callMaudite2008-10-25T05:45:36Z2009-12-02T13:49:16Z
<p>I am working on a web page that is using jQuery. I have an ajax call that gets data from the server an updates a div. Inside that data there is a jQuery function; however, the function is not being called after the data is loaded into the page. I have the proper js files include in the page already.</p>
<p>This is what is returned from the ajax call and placed into a div:</p>
<pre><code><script type="text/javascript">
$(function() {
$('input').myFunction('param');
});
</script>
<p> other html </p>
</code></pre>
<p>How do I get the returned javascript to run after the html is inserted into the page?</p>
<p>(I am using Rails with the jRails plugin )</p>
http://stackoverflow.com/questions/144833/most-useful-attributes-in-c89Most Useful Attributes in C#Maudite2008-09-28T00:16:08Z2009-11-08T13:17:28Z
<p>I know that attributes are an extremely useful. There are some predefined ones such as <code>[Browsable(false)]</code> which allows you to hide properties in the properties tab. Here is a good question explaining attributes: <a href="http://stackoverflow.com/questions/20346/c-what-are-attributes">http://stackoverflow.com/questions/20346/c-what-are-attributes</a></p>
<p><strong>What are the predefined attributes (and their namesapce) you actually use in your projects?</strong> </p>
http://stackoverflow.com/questions/185965/how-do-i-change-the-title-of-a-page-in-rails9How do I change the title of a page in rails?Maudite2008-10-09T04:53:04Z2009-09-26T13:56:59Z
<p>What is the best way to create a custom title for pages in a rails app with out using a plug-in?</p>
http://stackoverflow.com/questions/1480050/is-there-a-way-to-programmatically-add-a-digital-signature-to-a-vba-macro-in-a-wo0Is there a way to programmatically add a digital signature to a VBA Macro in a word document?Maudite2009-09-26T00:12:25Z2009-09-26T05:05:11Z
<p>Is there a way to programmatically add a digital signature to a VBA Macro in a word document using C# or VB.Net?</p>
<p>There are some similar questions asked already; however, none that I could find answer my question:
<a href="http://stackoverflow.com/questions/1201195/how-to-programmatically-remove-the-digital-signature-from-vba-macros-in-excel">http://stackoverflow.com/questions/1201195/how-to-programmatically-remove-the-digital-signature-from-vba-macros-in-excel</a>
<a href="http://stackoverflow.com/questions/1373176/digital-signature-for-excel-macro">http://stackoverflow.com/questions/1373176/digital-signature-for-excel-macro</a></p>
http://stackoverflow.com/questions/786903/databindings-add-using-iformatprovider2DataBindings.Add using IFormatProviderMaudite2009-04-24T17:46:10Z2009-09-26T00:24:06Z
<p>I am trying to use an IFormatProvider to customize some databindings; however the IFormatProvider class is never being called. I put breakpoints at the begining of both functions in my custom formating class and neither are being hit through databinding. When I use my custom formating class with String.Format it works. </p>
<p>I am using .Net 2.0 and winforms. </p>
<p>This is how I do the data bindings:</p>
<pre><code>label1.DataBindings.Add("Text", textBox1, "Text", true,
DataSourceUpdateMode.OnPropertyChanged,
"<NULL>","{0:H}",new MyFormat());
</code></pre>
<p>This is how I used String.Format:</p>
<pre><code>string test =(string.Format(_superFormat, "{0}", "this is my arg"));
</code></pre>
<p>And this is my custom formating class:</p>
<pre><code> class MyFormat : IFormatProvider, ICustomFormatter
{
string ICustomFormatter.Format(string format, object arg, IFormatProvider formatProvider)
{
string result = ((string)arg).ToUpper();
return result ;
}
object IFormatProvider.GetFormat(Type formatType)
{
if (formatType == typeof(ICustomFormatter))
return this;
else
return null;
}
}
</code></pre>
http://stackoverflow.com/questions/28999/favorite-ide-feature/29132#291322Answer by Maudite for Favorite IDE feature?Maudite2008-08-26T22:47:41Z2009-09-15T23:43:03Z<ol>
<li>Step through debugger </li>
<li>Refractoring tools</li>
<li>Source control integration.</li>
</ol>
http://stackoverflow.com/questions/260399/using-an-alias-column-in-the-where-clause-in-ms-sql-20000Using an Alias column in the where clause in ms-sql 2000Maudite2008-11-04T00:06:13Z2009-09-09T11:25:04Z
<p>I know you cannot use a alias column in the where clause for T-SQL; however, has Microsoft provided some kind of workaround for this?</p>
<blockquote>
<p><strong>Related Questions:</strong> </p>
<ul>
<li><a href="http://stackoverflow.com/questions/200200/can-you-use-an-alias-in-the-where-clause-in-mysql">Unknown Column In Where Clause</a> </li>
<li><a href="http://stackoverflow.com/questions/153598/unknown-column-in-where-clause">Can you use an alias in the WHERE clause in mysql?</a> </li>
<li><a href="http://stackoverflow.com/questions/46354/invalid-column-name-error-on-sql-statement-from-openquery-results">“Invalid column name” error on SQL statement from OpenQuery results</a></li>
</ul>
</blockquote>
http://stackoverflow.com/questions/1013060/choosing-the-correct-ci-server-for-my-needs/1246394#12463940Answer by Maudite for Choosing the correct CI Server for my needs.Maudite2009-08-07T18:48:56Z2009-08-07T18:48:56Z<p>You might want to look at <a href="http://www.cifactory.org/joomla/" rel="nofollow">CI Factory</a>. It satisfies all your requirements. CI Factory uses CruiseControl.Net, and it comes with Nant plugs for building, svn, FXCop, Nunit and others. I use it for all my projects. DNR.tv has and excellent walk through of setting up a server: <a href="http://www.dnrtv.com/default.aspx?showID=64" rel="nofollow">screen cast</a>. </p>
http://stackoverflow.com/questions/14155/windows-based-text-editors17Windows-based Text EditorsMaudite2008-08-18T04:03:04Z2009-08-05T12:52:28Z
<p>Other than Notepad++, what text editor do you use to program in Windows? </p>
http://stackoverflow.com/questions/687/keyboard-for-programmers/19212#1921215Answer by Maudite for Keyboard for programmersMaudite2008-08-21T02:00:00Z2009-07-28T00:00:43Z<p>I really like the <a href="http://www.typematrix.com/" rel="nofollow">typematrix</a> keyboard. The buttons in a grid instead of offset which makes it easier to type. They also have one that has all blank keys. The blank one takes a little getting used to but once you know it, programming is much faster. For those of you into the Dvorak keys, there is a button to switch to it. </p>
<p>Oh, it's small too.</p>
<p><img src="http://www.typematrix.com/documents/2030usb/2030USB%5Ffull%5F600x244.png" alt="alt text" /></p>
http://stackoverflow.com/questions/1155970/is-there-a-documentafterprint-event-in-ms-word1Is there a DocumentAfterPrint event in MS Word?Maudite2009-07-20T21:10:13Z2009-07-20T21:45:10Z
<p>I am working on a project where I need to return a word document back to a certain state after it is printed. I have found a <a href="http://msdn.microsoft.com/en-us/library/aa263710%28office.10%29.aspx" rel="nofollow">DocumentBeforePrint event</a> but I cannot find a DocumentAfterPrint event.
<em>Is it poorly documented or is there some other workaround that exists?</em></p>
http://stackoverflow.com/questions/27442/is-there-a-rake-task-for-backing-up-the-data-in-your-database2Is there a rake task for backing up the data in your database?Maudite2008-08-26T05:20:41Z2009-07-15T14:26:53Z
<p>Is there a rake task for backing up the data in your database? </p>
<p>I already have my schema backed up, but I want to make a backup of the data. It's a small MySQL database. </p>
http://stackoverflow.com/questions/281990/how-do-i-read-the-value-of-a-checkbox-in-a-word-doc-file-in-vb-net-using-a-ra4How do I read the value of a checkbox in a word (*.doc) file in VB.net using a Range object?Maudite2008-11-11T20:04:02Z2009-06-18T20:34:50Z
<p>How do I read the value of a checkbox in a word (*.doc) file in VB.net using a range object?</p>
<p>This is what I have so far:</p>
<pre><code>Dim app As New Word.Application
Dim doc As Document
doc = app.Documents.Open("C:\myDoc.doc")
dim chkBox as Bookmark
chkBox = doc.Bookmarks("MyCheckbox")
Dim rng as Range
rng = chkBox.Range
</code></pre>
<p>where "MyCheckbox" is the bookmark of the checkbox in the word document. </p>
http://stackoverflow.com/questions/827642/is-there-a-visual-studio-plugin-that-spellchecks-strings-and-comments0Is there a Visual Studio plugin that spellchecks strings and comments?Maudite2009-05-06T01:19:30Z2009-05-06T01:57:32Z
<p>Is there a Visual Studio plugin that spellchecks strings and comments?</p>
<p><strong>Duplicate</strong> of <a href="http://stackoverflow.com/questions/30947/visual-studio-08-spell-check-addin">http://stackoverflow.com/questions/30947/visual-studio-08-spell-check-addin</a></p>
http://stackoverflow.com/questions/752844/what-would-be-the-negative-effects-of-installing-a-32bit-app-into-the-c-program0What would be the negative effects of installing a 32bit app into the C:\Program Files\ instead of the C:\Program Files(x86)\?Maudite2009-04-15T17:29:21Z2009-04-15T17:36:22Z
<p>What would be the negative effects of installing a legacy 32bit app into the <em>C:\Program Files</em> instead of the <em>C:\Program Files(x86)</em> ? </p>
http://stackoverflow.com/questions/14775/interview-question-on-c-and-vb-net-similarities-differences2Interview question on C# and VB.net similarities/differencesMaudite2008-08-18T15:11:40Z2009-04-03T13:57:04Z
<p>I have been a VB.net developer for a few years now but I am currently applying to a few companies that use C#. I have even been told that at least one of the companies doesn't want VB.net developers. </p>
<p>I have been looking online trying to find real differences between the two and have asked on crackoverflow. The only major differences are a few syntax difference which are trivial to me because I am also a Java developer. </p>
<p>What would be a good response to an interviewer when they tell me they are looking for a C# developer - or similar questions? </p>
http://stackoverflow.com/questions/512553/is-there-a-way-to-measure-the-the-amount-of-a-string-that-will-fit-into-a-printed3Is there a way to measure the the amount of a string that will fit into a printed area without using the graphics object?Maudite2009-02-04T18:01:31Z2009-03-26T11:13:04Z
<p>Is there a way to measure the the amount of a string that will fit into a printed area without using the graphics object?</p>
<p>This is the only way i could find to do it:</p>
<pre><code>Graphics instance = this.CreateGraphics();
instance.MeasureString(text, f, printArea1, StringFormat.GenericDefault,
out end, out lines);
</code></pre>
<p>I am using .net 2.0 and c# but I don't mind VB code.</p>
http://stackoverflow.com/questions/651853/is-there-a-way-to-specify-more-than-one-app-config-file-in-one-nunit-project-fil2Is there a way to specify more than one app config file in one nunit project file?Maudite2009-03-16T19:37:17Z2009-03-16T19:45:17Z
<p>I have a collection of unit test that I need to all run from one command line call. One of the assemblies uses a different config file than the rest of the assemblies. Is there a way to specify more than one app config file in one nunit project file?</p>
http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url12How do you include a webpage title as part of a webpage URL?Maudite2008-08-24T18:21:11Z2009-03-14T01:12:39Z
<p>What is a good complete Regex or some other process that would take "How do you change a title to be part of the url like Stackoverflow?" and turn it into "how-do-you-change-a-title-to-be-part-of-the-url-like-stackoverflow" that is used in the smart urls?</p>
<p>The dev environment is I am using is Rails but if there are some other platform specific solutions (.net, php, django), I would love to see those too. I am sure I (or another reader) will come across the same problem on a different platform down the line. </p>
<p>-- edit -- </p>
<p>I am using custom routes, I mainly want to know how to alter the string to all special chars are removed, it's all lowercase, and all whitespace is replaced. </p>
http://stackoverflow.com/questions/643207/does-the-order-of-conditions-in-there-where-clause-affect-the-speed-of-the-query0Does the order of conditions in there where clause affect the speed of the query? [closed]Maudite2009-03-13T15:22:17Z2009-03-13T15:35:19Z
<p>Does the order of conditions in there where clause affect the speed of the query?</p>
<p>For instance, could:</p>
<pre><code>select fname, lname
from people
where isValid = 1 and lname like '%test%'
</code></pre>
<p>be faster than </p>
<pre><code>select fname, lname
from people
where lname like '%test%' and isValid = 1
</code></pre>
<p><strong>Duplicate:</strong> <a href="http://stackoverflow.com/questions/642784/does-the-order-of-columns-in-a-where-clause-matter">Does the order of columns in a WHERE clause matter?</a></p>
http://stackoverflow.com/questions/24579/wysiwyg-editor-gem-for-rails3WYSIWYG editor gem for Rails?Maudite2008-08-23T20:39:23Z2009-03-13T11:11:38Z
<p>Is there a good ruby gem for a WYSIWYG editor that will easily work with a rails app?</p>
http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/170887#1708870Answer by Maudite for Favorite Visual Studio keyboard shortcutsMaudite2008-10-04T19:23:19Z2009-03-10T19:12:33Z<p><kbd>F7</kbd> toggles from design view to code view.</p>
http://stackoverflow.com/questions/18675/i-o-permission-settings-using-net-installer1I/O permission settings using .net installerMaudite2008-08-20T19:52:41Z2009-03-10T03:51:02Z
<p>I am creating a program that will be installed using the .net installer project. The program writes to settings files to its directory in the Program Files dir. It believe there are some active directory settings that will prevent the application from righting to that directory if a limited user is running the program. Is there away to change the settings for the application folder through the install so this will not be a problem?</p>
http://stackoverflow.com/questions/279450/how-do-you-check-for-ajax-updates-using-a-webbrowser-control-in-net-2-00How do you check for ajax updates using a WebBrowser control in .net 2.0?Maudite2008-11-10T22:44:10Z2009-02-17T14:30:49Z
<p>I have a web page that is being displaying in a winform app using the WebBrowser Control. I need to perform an event when the HTML in the web page changes; however, I cannot find an event that is triggered for situations when the pages is updated through Ajax. The DocumentComplete, FileDownloaded, and ProgressChanged events are not always triggered by Ajax requests. The only other way I can think to solve the issue is to poll the document object and look for changes; however, I don't think that is a very good solution. </p>
<p>Is there another event I am missing that will be triggered on an ajax update or some other way to solve the problem? </p>
<p>I am using C# and .net 2.0</p>
http://stackoverflow.com/questions/538710/why-should-i-not-use-the-gac1Why should I NOT use the GAC?Maudite2009-02-11T20:49:44Z2009-02-11T21:19:26Z
<p>There have been a few questions asked along this line stackoverflow such as
<a href="http://stackoverflow.com/questions/23578/what-are-the-advantages-and-disadvantages-of-using-the-gac">What are the advantages and disadvantages of using the GAC</a>
and <a href="http://stackoverflow.com/questions/498361/when-and-when-not-to-install-into-the-gac">When and when-not to install into the GAC?</a> and a few people have asked it on the
web <a href="http://flimflan.com/blog/WhenShouldIUseTheGAC.aspx" rel="nofollow">expamle</a>. I can't any convincing arguments for not using the GAC. I am sure I am being naive but it seams like there are more benefits (such as performance and version control issues) to using the GAC then not using it. </p>
<p><strong>Why should I NOT use the GAC?</strong></p>
http://stackoverflow.com/questions/387360/mygeneration-command-line-input0MyGeneration command line inputMaudite2008-12-22T21:06:31Z2009-02-02T16:50:04Z
<p>I have looked all over the internet, mygenteration's forum, and mygenteration's website and I cannot figure out how to pass parameters into a template through the command line using the xmldatapath switch. Does anyone know how to do this?</p>
<p>--edit--</p>
<p>I did a little research and <a href="http://williamsmash.com/blog/show/mygeneration-xml-input-format" rel="nofollow">here is a summary of the format of xml input for MyGeneration</a>.</p>
http://stackoverflow.com/questions/247967/maintaining-a-programmer-wiki11Maintaining a Programmer WikiMaudite2008-10-29T18:51:45Z2009-01-28T03:59:25Z
<p>I was recently put in charge of the wiki for the development team. The wiki is still in its infancy, so I have a lot of room to work with. It goal is to house internal to the development team. Currently, the main piece of information that the wiki holds is Coding Standards. </p>
<ul>
<li>What are some best practices your dev team uses for its internal wiki?</li>
<li>What information is important to have on a dev wiki? </li>
<li>If you were to go to the wiki for your dev team what information would you expect to see? </li>
<li>Is there some information that shouldn't go on the wiki even though it seems like a good idea?</li>
</ul>
<p>-- edit --</p>
<ul>
<li>Also, is there a good way to organize the information? ( such as by layer ( data, ui), by porject, or other) </li>
</ul>
http://stackoverflow.com/questions/470886/how-come-my-macros-are-triggered-by-events-in-other-word-documents/470958#4709580Answer by Maudite for How come my Macros are triggered by events in other word documents.Maudite2009-01-22T21:48:55Z2009-01-22T21:48:55Z<p>Yes, in the macro editor, make sure your code is in the project for your document and the the one called "Normal". </p>
http://stackoverflow.com/questions/18984/what-do-you-think-of-developing-for-the-command-line-first/19031#190310Answer by Maudite for What do you think of developing for the command line first?Maudite2008-08-20T22:51:02Z2009-01-15T01:53:32Z<p><strike>Command line tools generate less events then GUI apps and usually check all the params before starting. This will limit your gui because for a gui, it could make more sense to ask for the params as your program works or afterwards. </p>
<p>If you don't care about the GUI then don't worry about it. If the end result will be a gui, make the gui first, then do the command line version. Or you could work on both at the same time.</strike></p>
<p>--Massive edit--</p>
<p>After spending some time on my current project, I feel as though I have come full circle from my previous answer. I think it is better to do the command line first and then wrap a gui on it. If you need to, I think you can make a great gui afterwards. By doing the command line first, you get all of the arguments down first so there is no surprises (until the requirements change) when you are doing the UI/UX. </p>
http://stackoverflow.com/questions/827642/is-there-a-visual-studio-plugin-that-spellchecks-strings-and-commentsComment by Maudite on Is there a Visual Studio plugin that spellchecks strings and comments?Maudite2009-05-06T15:39:27Z2009-05-06T15:39:27ZSorry for the duplicate. I didn't see that one. Thanks.http://stackoverflow.com/questions/687/keyboard-for-programmers/19212#19212Comment by Maudite on Keyboard for programmersMaudite2009-02-03T16:35:07Z2009-02-03T16:35:07Z@tharkun I wish i was twice as thin as the average person but I am afraid it's the opposite. They keyboard is really small. I don't know why, but it's a pleasure typing on it.http://stackoverflow.com/questions/387360/mygeneration-command-line-inputComment by Maudite on MyGeneration command line inputMaudite2009-02-02T16:52:53Z2009-02-02T16:52:53Z@MrTelly thanks for the suggestion. Also I think it would be a great way to create some custom xaml. I never thought of that before but after reading your idea, I think there could be some interesting possibilities with that.http://stackoverflow.com/questions/247967/maintaining-a-programmer-wiki/248004#248004Comment by Maudite on Maintaining a Programmer WikiMaudite2008-10-29T21:16:37Z2008-10-29T21:16:37ZThat sounds like a cool side projecthttp://stackoverflow.com/questions/247967/maintaining-a-programmer-wiki/248004#248004Comment by Maudite on Maintaining a Programmer WikiMaudite2008-10-29T19:04:37Z2008-10-29T19:04:37ZOne of my roles as "wiki master" is to make sure that everything is up to date and get those in charge of out of date content to update their section.http://stackoverflow.com/questions/247967/maintaining-a-programmer-wikiComment by Maudite on Maintaining a Programmer WikiMaudite2008-10-29T18:59:58Z2008-10-29T18:59:58ZWe are using screwturn wikihttp://stackoverflow.com/questions/189631/should-the-visual-studio-gui-editor-be-used/189638#189638Comment by Maudite on Should the Visual Studio GUI editor be used?Maudite2008-10-10T00:29:37Z2008-10-10T00:29:37ZI love the the partial classes too. http://stackoverflow.com/questions/180828/how-can-i-debug-a-vb6-project-that-has-a-net-interop-project-which-uses-an-app-c/180895#180895Comment by Maudite on How can I debug a VB6 project that has a .net interop project which uses an app.config file?Maudite2008-10-08T00:20:07Z2008-10-08T00:20:07Z@Alexander Kojevnikov That worked. I am sorry I doubted you. I didn't know about the VB6.exe. Thank you. http://stackoverflow.com/questions/180828/how-can-i-debug-a-vb6-project-that-has-a-net-interop-project-which-uses-an-app-c/180895#180895Comment by Maudite on How can I debug a VB6 project that has a .net interop project which uses an app.config file?Maudite2008-10-08T00:14:20Z2008-10-08T00:14:20Z@Alexander Kojevnikov I am checking that right now. http://stackoverflow.com/questions/180828/how-can-i-debug-a-vb6-project-that-has-a-net-interop-project-which-uses-an-app-c/180895#180895Comment by Maudite on How can I debug a VB6 project that has a .net interop project which uses an app.config file?Maudite2008-10-08T00:09:04Z2008-10-08T00:09:04ZThat only works when I make the exe, not while I am debugging ithttp://stackoverflow.com/questions/180828/how-can-i-debug-a-vb6-project-that-has-a-net-interop-project-which-uses-an-app-cComment by Maudite on How can I debug a VB6 project that has a .net interop project which uses an app.config file?Maudite2008-10-08T00:07:50Z2008-10-08T00:07:50ZI am running the VB6 project using Run > Start F5; however, this is when the app.config file cannot be found. When I make the project using File > make prj.exe, it finds the app.config file. http://stackoverflow.com/questions/180828/how-can-i-debug-a-vb6-project-that-has-a-net-interop-project-which-uses-an-app-cComment by Maudite on How can I debug a VB6 project that has a .net interop project which uses an app.config file?Maudite2008-10-08T00:05:33Z2008-10-08T00:05:33ZI agree about not using the config file but that is a decision made above me. http://stackoverflow.com/questions/175983/using-app-config-with-interop-controls/176017#176017Comment by Maudite on Using app.config with Interop ControlsMaudite2008-10-06T20:36:42Z2008-10-06T20:36:42ZI had to rename the file (vb6's binary name).exe.config and it worked. Thank you. http://stackoverflow.com/questions/148143/is-there-anyway-to-tell-visual-studio-not-to-open-all-the-documents-when-i-load-s/148628#148628Comment by Maudite on Is there anyway to tell Visual Studio not to open all the documents when I load solution?Maudite2008-10-04T19:30:58Z2008-10-04T19:30:58ZThat's an awesome trick. http://stackoverflow.com/questions/115493/how-do-i-convince-my-team-to-drop-sourcesafe-and-move-to-svn/115987#115987Comment by Maudite on How do I convince my team to drop sourcesafe and move to SVN?Maudite2008-10-04T19:27:46Z2008-10-04T19:27:46Zanhksvn is pretty good too.