User Michael Prewecki - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T23:03:08Zhttp://stackoverflow.com/feeds/user/4403http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1819462/winforms-adjust-width-of-vertical-scrollbar-on-checkedlistbox/1819674#18196741Answer by Michael Prewecki for Winforms - Adjust width of vertical scrollbar on CheckedListBoxMichael Prewecki2009-11-30T12:55:49Z2009-11-30T12:55:49Z<p>The following code makes use of SPI_SETNONCLIENTMETRICS to change the system wide setting for the scrollbar width. NOTE that it will change all applications on the system not just a single one. You should probably make this a configuration item so that you can change the width back to a default if you need to.</p>
<pre><code> [DllImport("user32", CharSet = CharSet.Auto)]
private static extern int SystemParametersInfo(int uAction, int uParam, ref NONCLIENTMETRICS lpvParam, int fuWinIni);
private const int LF_FACESIZE = 32;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
private struct LOGFONT
{
public int lfHeight;
public int lfWidth;
public int lfEscapement;
public int lfOrientation;
public int lfWeight;
public byte lfItalic;
public byte lfUnderline;
public byte lfStrikeOut;
public byte lfCharSet;
public byte lfOutPrecision;
public byte lfClipPrecision;
public byte lfQuality;
public byte lfPitchAndFamily;
/// <summary>
/// <see cref="UnmanagedType.ByValTStr"/> means that the string
/// should be marshalled as an array of TCHAR embedded in the
/// structure. This implies that the font names can be no larger
/// than <see cref="LF_FACESIZE"/> including the terminating '\0'.
/// That works out to 31 characters.
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = LF_FACESIZE)]
public string lfFaceName;
// to shut it up about the warnings
public LOGFONT(string lfFaceName)
{
this.lfFaceName = lfFaceName;
lfHeight = lfWidth = lfEscapement = lfOrientation = lfWeight = 0;
lfItalic = lfUnderline = lfStrikeOut = lfCharSet = lfOutPrecision
= lfClipPrecision = lfQuality = lfPitchAndFamily = 0;
}
}
private struct NONCLIENTMETRICS
{
public int cbSize;
public int iBorderWidth;
public int iScrollWidth;
public int iScrollHeight;
public int iCaptionWidth;
public int iCaptionHeight;
/// <summary>
/// Since <see cref="LOGFONT"/> is a struct instead of a class,
/// we don't have to do any special marshalling here. Much
/// simpler this way.
/// </summary>
public LOGFONT lfCaptionFont;
public int iSMCaptionWidth;
public int iSMCaptionHeight;
public LOGFONT lfSMCaptionFont;
public int iMenuWidth;
public int iMenuHeight;
public LOGFONT lfMenuFont;
public LOGFONT lfStatusFont;
public LOGFONT lfMessageFont;
}
private const int SPI_GETNONCLIENTMETRICS = 41;
private const int SPI_SETNONCLIENTMETRICS = 42;
private const int SPIF_SENDCHANGE = 2;
</code></pre>
<p>You can then use this code to see the current value for the scrollbar width</p>
<pre><code>NONCLIENTMETRICS metrics = new NONCLIENTMETRICS();
metrics.cbSize = Marshal.SizeOf(metrics);
SystemParametersInfo(SPI_GETNONCLIENTMETRICS, 0, ref metrics, 0);
MessageBox.Show(metrics.iScrollWidth.ToString());
</code></pre>
<p>You can then use this code to change the size of the scrollbar...</p>
<pre><code>NONCLIENTMETRICS metrics = new NONCLIENTMETRICS();
metrics.cbSize = Marshal.SizeOf(metrics);
metrics.iScrollWidth = 17;
SystemParametersInfo(SPI_SETNONCLIENTMETRICS, metrics.cbSize, ref metrics, SPIF_SENDCHANGE);
</code></pre>
http://stackoverflow.com/questions/1819486/looking-for-net-library-capable-of-reading-hdf4-file-format/1819501#18195011Answer by Michael Prewecki for Looking for .NET library capable of reading HDF4 file formatMichael Prewecki2009-11-30T12:22:31Z2009-11-30T12:22:31Z<p>There is an unsupported solution at the site you posted</p>
<p><a href="ftp://ftp.hdfgroup.uiuc.edu/pub/outgoing/hdf5/HDF5dotNetEnv/" rel="nofollow">ftp://ftp.hdfgroup.uiuc.edu/pub/outgoing/hdf5/HDF5dotNetEnv/</a></p>
http://stackoverflow.com/questions/41781/microsoft-t-sql-to-oracle-pl-sql-translation4Microsoft T-SQL to Oracle PL/SQL translationMichael Prewecki2008-09-03T14:25:04Z2009-11-06T07:30:24Z
<p>I've worked with T-SQL for years but i've just moved to an organisation that is going to require writing some Oracle stuff, probably just simple CRUD operations at least until I find my feet. I'm not going to be migrating databases from one to the other simply interacting with existing Oracle databases from an Application Development perspective. Is there are tool or utility available to easily translate T-SQL into PL/SQL, a keyword mapper is the sort of thing I'm looking for.</p>
<p>P.S. I'm too lazy to RTFM, besides it's not going to be a big part of my role so I just want something to get me up to speed a little faster.</p>
http://stackoverflow.com/questions/602152/most-used-net-namespace-10Most used .NET namespace Michael Prewecki2009-03-02T12:32:48Z2009-11-05T06:46:15Z
<p>What is your most commonly used namespace in .NET. I know it will vary greatly based upon the types of projects you develop but the stack overflow audience should provide a fairly decent sample set for the types of .NET projects being developed. </p>
<p>I'm simply interest in the name of the namespace (one namespace per answer and no one person should have more than one answer, if someone else has the same answer as you then just upvote thier answer). Try to be as specific as possible (so answering System, isn't helpful).</p>
<p>I'm after this information to help new developers focus thier attention on the most common .NET namespaces...there are after all thousands of them!</p>
<p>To start off mine is almost certainly <code>System.Collections.Generic</code>, I use lists of things everywhere.</p>
http://stackoverflow.com/questions/424356/using-same-debug-settings-for-start-external-program-across-32-bit-and-64-bit-deb2Using same Debug settings for Start External Program across 32 bit and 64 bit debug environmentsMichael Prewecki2009-01-08T14:11:49Z2009-10-20T21:37:25Z
<p>We use a mixture of 32-bit and 64-bit development environments. Some of our class libraries are debugged using a 32-bit application so we have debug settings for "Start External Program" and "Working Directory". The problem is that the settings need to be different
since the 32-bit application is installed to </p>
<p>C:\Program Files\xxx (on the 32-bit dev enviroment) or C:\Program Files (x86)\xxx (on the 64-bit dev environment)</p>
<p>Is there a way to use some sort of tag like %PROGRAMFILES% or $(ProgramFiles) so that Visual Studio 2008 will know where to look for the external program?</p>
<p>This wouldn't be a major issue except the solution file (where the debug information is saved) is checked into source control...so getting the latest version of the solution from our source repository keeps yoyo'ing the debug settings between the two program files locations.</p>
http://stackoverflow.com/questions/1465755/whats-the-simplest-way-to-compare-an-emum-to-a-integer-value-return-from-a-db0What's the simplest way to compare an emum to a integer value return from a DBMichael Prewecki2009-09-23T12:46:30Z2009-09-23T13:26:59Z
<p>I'm pulling some data from a table using LINQ 2 SQL...one of the pieces of data is a value that represents an enumation in my application code. </p>
<p>What is the simplest way to make a comparison between the data returned in LINQ objects and the enumeration in the application code. So for example</p>
<pre><code>enum SomeEnum
{
First
Second
}
</code></pre>
<p>then in the method I have</p>
<pre><code>Table<LinqObject> objects = dc.GetTable<LinqObject>();
foreach (var item in objects)
{
// What's the simplest way to do this comparison???
if (item.SomeNullableInteger == SomeEnum.First) // Note I realise this doesn't work!!!
{
// Do something...
}
}
</code></pre>
<p>I could do this</p>
<pre><code>SomeEnum.First.Equals(item.SomeNullableInteger)
</code></pre>
<p>or I could store the enumeration names in the database and then i'd be able to do this</p>
<pre><code>Enum.GetName(SomeEnum, SomeEnum.First) == item.SomeNullableName
</code></pre>
<p>is there a better way? The enum only has two items and they're pretty fixed...could maybe have a third or a fourth but will probably never grow beyond that. So having a whole table seems like overkill.</p>
<p>Actually this is a duplicate of <a href="http://stackoverflow.com/questions/502905/c-int-to-enum-conversion">http://stackoverflow.com/questions/502905/c-int-to-enum-conversion</a></p>
http://stackoverflow.com/questions/1442360/c-how-do-i-select-a-word-in-a-textbox-by-cursor-location/1442384#14423842Answer by Michael Prewecki for C# | How Do I Select a Word in a TextBox by Cursor Location?Michael Prewecki2009-09-18T02:58:16Z2009-09-18T03:14:59Z<p>You can use <code>SelectionStart</code> and <code>SelectionLength</code> but you probably need to find the next space from the cursor position, then reverse the contents of the textbox and find the next "space" from the "altered cursor" position, then use the two methods above.</p>
<p>This will also work</p>
<pre><code> int cursorPosition = textBox1.SelectionStart;
int nextSpace = textBox1.Text.IndexOf(' ', cursorPosition);
int selectionStart = 0;
string trimmedString = string.Empty;
// Strip everything after the next space...
if (nextSpace != -1)
{
trimmedString = textBox1.Text.Substring(0, nextSpace);
}
else
{
trimmedString = textBox1.Text;
}
if (trimmedString.LastIndexOf(' ') != -1)
{
selectionStart = 1 + trimmedString.LastIndexOf(' ');
trimmedString = trimmedString.Substring(1 + trimmedString.LastIndexOf(' '));
}
textBox1.SelectionStart = selectionStart;
textBox1.SelectionLength = trimmedString.Length;
</code></pre>
http://stackoverflow.com/questions/1441514/software-to-create-a-knowledge-base-faq-system/1441564#14415642Answer by Michael Prewecki for Software to create a knowledge base/FAQ systemMichael Prewecki2009-09-17T22:07:01Z2009-09-17T22:07:01Z<p>How about using <a href="http://stackexchange.com/" rel="nofollow">StackExchange</a>?</p>
http://stackoverflow.com/questions/1441425/fusion-loader-cant-find-a-dll-that-is-actually-there-unable-to-load-one-or-mo/1441540#14415400Answer by Michael Prewecki for Fusion loader can't find a DLL that is actually there - "Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information."Michael Prewecki2009-09-17T22:00:04Z2009-09-17T22:00:04Z<p>Yep it should stop when it finds the required dll so the fifth "Attempting to download..." should have found it...</p>
<p>However where is the command line app being run from? If it's the Debug folder then a few things you can try are </p>
<ol>
<li>Have the dependent dll's in the same folder</li>
<li><p>Sign the assembly and reference through a .config file in the following format</p>
<pre><code><dependentAssembly>
<assemblyIdentity name="WebServices.dll" publicKeyToken="<whatever this public key it>" />
<codeBase version="1.0.0.0" href="..\WebServices.dll" />
</dependentAssembly>
</code></pre></li>
<li><p>Sign them and then put the dependent assemblies in the GAC.</p></li>
</ol>
<p>I might be way off but that's a few things to try.</p>
http://stackoverflow.com/questions/1405394/com-ole-viewer-unable-to-create-instance-of-class/1405635#14056351Answer by Michael Prewecki for COM: OLE Viewer unable to create instance of classMichael Prewecki2009-09-10T14:32:16Z2009-09-10T14:38:13Z<p>Is there a dependent assembly missing from the bin folder of the COM Registered assembly? Or a dependent assembly that supposed to be in the GAC that isn't actually in the GAC?</p>
<p>You may also be able to resolve you're issue using /codebase switch which will add a registry entry pointing to the location of your assembly. </p>
<p>You might also be able to find out more using <a href="http://msdn.microsoft.com/en-us/library/e74a18c4%28VS.71%29.aspx" rel="nofollow">fuslogvw</a> to see what's happening when your .NET assemblies are being bound to by OLE Viewer.</p>
http://stackoverflow.com/questions/1253504/why-do-you-still-support-ie6-while-building-websites/1253532#12535320Answer by Michael Prewecki for Why do you still support IE6 while building websites?Michael Prewecki2009-08-10T07:26:03Z2009-08-10T07:26:03Z<p>Because on most of the XP operating systems it's still supported by Microsoft until 13-July-2010...</p>
<p><a href="http://support.microsoft.com/gp/lifesupsps/#Internet%5FExplorer" rel="nofollow">http://support.microsoft.com/gp/lifesupsps/#Internet_Explorer</a></p>
http://stackoverflow.com/questions/1041722/vb6-executable-icons1VB6 executable iconsMichael Prewecki2009-06-25T01:10:07Z2009-06-25T17:50:28Z
<p>I have quite a large VB6 project, with many forms, classes, modules and user controls. </p>
<p>When I create a shortcut to the compiled executable and choose "change icon" for the shortcut there are multiple icons that I can select from. This indicates that there are multiple icon resources being compiled into the executable. The first icon is the "normal" application icon which seems to be controlled by setting the icon form in the MAKE tab of the project settings. That is fine and works as expected. </p>
<p>The problem I have is that I just cannot find out where the other icons that are being compiled into the executable are coming from. Is there a way I can take a VB6 project or a Complied executable and find out where in the project the icons resources are being set? </p>
<p>I've checked all the forms and a bunch of the image lists and none seem to be the icons in question. </p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/887212/how-to-log-user-actions-in-winforms-application/887305#8873050Answer by Michael Prewecki for How-to log user actions in winforms application.Michael Prewecki2009-05-20T11:00:38Z2009-05-20T11:00:38Z<p>You could use attributes but I wonder if the benefits will outweigh the cost? </p>
<p>See this link for an example of creating an attribute that can be set on each method</p>
<p><a href="http://www.yoda.arachsys.com/csharp/benchmark.html" rel="nofollow">http://www.yoda.arachsys.com/csharp/benchmark.html</a></p>
http://stackoverflow.com/questions/876095/why-have-a-create-method-instead-of-using-new9Why have a Create method instead of using "new"?Michael Prewecki2009-05-18T03:10:26Z2009-05-19T05:51:26Z
<p>What are the advantages and when is it appropriate to use a static constructor?</p>
<pre><code>public class MyClass
{
protected MyClass()
{
}
public static MyClass Create()
{
return new MyClass();
}
}
</code></pre>
<p>and then creating an instance of the class via</p>
<pre><code>MyClass myClass = MyClass.Create();
</code></pre>
<p>as opposed to just having a public constructor and creating objects using </p>
<pre><code>MyClass myClass = new MyClass();
</code></pre>
<p>I can see the first approach is useful if the Create method returns an instance of an interface that the class implements...it would force callers create instances of the interface rather than the specific type. </p>
http://stackoverflow.com/questions/602152/most-used-net-namespace/602156#6021561Answer by Michael Prewecki for Most used .NET namespace Michael Prewecki2009-03-02T12:33:07Z2009-03-02T12:33:07Z<p>System.Collections.Generic</p>
http://stackoverflow.com/questions/601759/what-professional-standards-do-you-maintain-in-a-side-pet-project/601862#6018620Answer by Michael Prewecki for What professional standards do you maintain in a side/pet project?Michael Prewecki2009-03-02T10:17:15Z2009-03-02T10:17:15Z<p>Most of my side projects are just like Charles...to learn new technologies. </p>
<p>The way things generally work is I hack togeather something that sort of works (prototype shall we say), then I check into source control and refactor the bejesus out of it until it's something that i'm happy to utilise or put down (and i'm not talking put down in the lame horse kinda way)</p>
http://stackoverflow.com/questions/599652/what-never-events-for-software-development-are-there/599721#5997211Answer by Michael Prewecki for What "Never Events" for Software Development are there?Michael Prewecki2009-03-01T12:02:48Z2009-03-01T13:26:55Z<p>Using timestamps as a means of versioning .NET assemblies.</p>
http://stackoverflow.com/questions/594900/why-does-this-wpf-button-stretch-across-the-window/594939#5949390Answer by Michael Prewecki for Why does this WPF button stretch across the window?Michael Prewecki2009-02-27T14:20:31Z2009-02-27T14:20:31Z<p>Can you place them in a two column Grid with the button spanning just one column and the text spanning two columns?</p>
http://stackoverflow.com/questions/589338/slow-debugging-issue-in-visual-studio/589426#5894260Answer by Michael Prewecki for Slow debugging issue in Visual StudioMichael Prewecki2009-02-26T06:48:09Z2009-02-26T06:48:09Z<p>Are you using a Symbol Server to download symbols for Windows DLL's?</p>
<p>If so disable that as it can take some time but I wouldn't expect that to cause long delays in a basic console app.</p>
<p>Tools > Options > Debugging > Symbols</p>
http://stackoverflow.com/questions/581570/how-can-i-create-a-temp-file-with-a-specific-extension-with-net/581968#5819681Answer by Michael Prewecki for How can I create a temp file with a specific extension with .net ?Michael Prewecki2009-02-24T14:39:08Z2009-02-24T14:39:08Z<p>You can also do the following</p>
<pre><code>string filename = System.IO.Path.ChangeExtension(System.IO.Path.GetTempFileName(), ".csv");
</code></pre>
<p>and this also works as expected</p>
<pre><code>string filename = System.IO.Path.ChangeExtension(System.IO.Path.GetTempPath() + Guid.NewGuid().ToString(), ".csv");
</code></pre>
http://stackoverflow.com/questions/564742/allowing-title-bar-double-click-to-maximize-a-dialog-but-without-max-min-buttons/564802#5648022Answer by Michael Prewecki for Allowing title bar double click to maximize a dialog but without max-min buttonsMichael Prewecki2009-02-19T11:06:04Z2009-02-19T11:06:04Z<p>You should be able to handle the WM_NCHITTEST and look for HT_CAPTION, see <a href="http://msdn.microsoft.com/en-us/library/ms645618(VS.85).aspx" rel="nofollow">here</a> for details</p>
<p>You'll need to override the WndProc to be able to handle these messages, this is demonstrated <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.wndproc(VS.71).aspx" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/542124/wpf-binding-to-a-non-changing-property0WPF Binding to a non-changing propertyMichael Prewecki2009-02-12T16:24:23Z2009-02-12T16:59:22Z
<p>I'm using the MVVM pattern and I have a POCO (in my Model) with a Start Date property. </p>
<p>I want to show the elapsed time since the start date in a control on a WPF window/user control...</p>
<p>I don't see how I can bind a ModelView property to a UI control and have it update this duration automatically...can anyone suggest a way?</p>
<p>I could use something (a timer or a thread) to update a duration property on my ModelView but I just don't see any other way because as I understand it the UI will only update when a property value changes. However the start date on my POCO isn't changing it's just the elapsed time that's changing which is a calculated value.</p>
<p>Am I missing something?</p>
http://stackoverflow.com/questions/510839/using-base-in-a-class-name/510882#5108822Answer by Michael Prewecki for Using "Base" in a Class NameMichael Prewecki2009-02-04T10:59:25Z2009-02-04T10:59:25Z<p>I also side with the no camp...place a Base in there today and in 6 months someone will whack a MyDerivedClass class in you code base while you're not looking.</p>
http://stackoverflow.com/questions/505744/wpf-binding-vs-event-handling1WPF Binding vs Event HandlingMichael Prewecki2009-02-03T01:38:03Z2009-02-03T10:40:59Z
<p>I'm new to WPF and come from a WinForms background and have a fairly basic question about binding vs event handling. </p>
<p>To try and maintain some separation of responsibility I've have a bunch of presentation objects which simply have dependency properties to hold the UI data parts of a business object, the business object contains similar data but the data types are occationally different so that the Presenation object is correct for display purposes. So something like</p>
<pre><code>public class MyPresentation
{
// bunch of dependency properties
public bool MyProperty
{
get { return (bool)GetValue(MyPropertyProperty); }
set { SetValue(MyPropertyProperty, value); }
}
// Using a DependencyProperty as the backing store for MyProperty. This enables animation, styling, binding, etc...
public static readonly DependencyProperty MyPropertyProperty =
DependencyProperty.Register("MyProperty", typeof(bool), typeof(MyPresentationObject), new UIPropertyMetadata(false, MyPresentationObject.MyPropertyPropertyChanged));
MyBusinessObject RelatedBusinessObject { get; set;}
public MyPresentation(MyBusinessObject businessObejct)
{
this.RelatedBusinessObject = businessObject;
}
public static void MyPropertyPropertyChanged()
{
// Do some stuff to related business objects
}
}
</code></pre>
<p>The properties of MyPresentation are then data bound to various controls and I use triggers etc to change presentation dependency properties which causes business object changes in the OnPropertyChanged event. The question I have is am I using binding in the correct fashion? Normally (in Winforms) i'd have used click events etc to change my business objects (or the presentation versions of them) values but those sort of events and that sort of event handling seems superfluous now that you can use binding, triggers and OnPropertyChanged events.</p>
<p>Am I missing something?</p>
http://stackoverflow.com/questions/503267/best-layout-of-a-winforms-usercontrol-with-both-static-and-dynamic-content/503276#5032760Answer by Michael Prewecki for Best Layout of a WinForms UserControl with both Static and Dynamic Content?Michael Prewecki2009-02-02T13:57:30Z2009-02-02T13:57:30Z<p>Without knowing the specifics of your problem I find multiple fill docked split containers with one fixed panel and/or a fixed slider usually creates a really handy resizing experience. You can also collapse panels very effectively too.</p>
http://stackoverflow.com/questions/503208/how-do-you-transfer-the-execution-of-a-expression-created-by-an-iqueryable-object/503224#5032240Answer by Michael Prewecki for How do you transfer the execution of a Expression created by an IQueryable object to a IEnumerable ?Michael Prewecki2009-02-02T13:35:02Z2009-02-02T13:35:02Z<p>Can you use the extension method </p>
<pre><code>.ToList<>
</code></pre>
http://stackoverflow.com/questions/502250/bind-to-a-method-in-wpf/502766#5027662Answer by Michael Prewecki for Bind to a method in WPF?Michael Prewecki2009-02-02T10:22:35Z2009-02-02T10:22:35Z<p>Do you have to bind to the method?</p>
<p>Can you bind to a property who's getter is the method?</p>
<pre><code>public ObservableCollection<ChildObject> Children
{
get
{
return GetChildren();
}
}
</code></pre>
http://stackoverflow.com/questions/502595/the-uk-is-completely-under-snow-what-tips-can-help-programmers-who-dont-usually/502628#5026281Answer by Michael Prewecki for The UK is completely under snow. What tips can help programmers who don't usually work from home survive the next few days.Michael Prewecki2009-02-02T09:07:13Z2009-02-02T09:07:13Z<p>Go out and completely empty the shelves of all the bread and milk...Not programming related but will certainly happen none the less.</p>
http://stackoverflow.com/questions/495051/c-naming-convention-for-enum-and-matching-property/495239#4952392Answer by Michael Prewecki for C# naming convention for enum and matching propertyMichael Prewecki2009-01-30T11:39:19Z2009-01-30T11:39:19Z<p>I'd like to offer the following example in support of the comment by Dan. C (made in response to Filip Ekberg's answer) </p>
<pre><code>public class DataReader
{
public enum Type
{
Sql,
Oracle,
OleDb
}
public Type Type { get; set; } // <===== Won't compile =====
}
</code></pre>
<p>Either the enum or the property could be called ReaderType but that's getting pretty close to prefixing things with MyObjectName...</p>
<p>So what would you name Type? Is there some sort of rule or train of thought you can follow to avoid naming your enumeration and a property on the class both the same?</p>
<p>If people want this to be a linked question then I will happily move it to another question.</p>
http://stackoverflow.com/questions/483782/select-all-text-in-a-winforms-infragistics-combobox/495010#4950102Answer by Michael Prewecki for Select all text in a Winforms Infragistics ComboBoxMichael Prewecki2009-01-30T10:01:05Z2009-01-30T10:01:05Z<p>You might want to provide the exact version of Infragistics Library...</p>
<p>Does</p>
<p><code>this.UltraCombo1.TextBox.SelectAll()</code> </p>
<p>do what you want?</p>
http://stackoverflow.com/questions/1825831/better-way-of-searching-through-lists-than-using-foreach/1825850#1825850Comment by Michael Prewecki on Better way of searching through lists than using foreachMichael Prewecki2009-12-01T12:25:44Z2009-12-01T12:25:44ZActually I think underneath .FindAll might use a ForEach anyway but it looks neater :-)http://stackoverflow.com/questions/1825831/better-way-of-searching-through-lists-than-using-foreach/1825850#1825850Comment by Michael Prewecki on Better way of searching through lists than using foreachMichael Prewecki2009-12-01T12:24:54Z2009-12-01T12:24:54ZYou can also use the List<T>.FindAll and supply the predicatehttp://stackoverflow.com/questions/1465755/whats-the-simplest-way-to-compare-an-emum-to-a-integer-value-return-from-a-db/1465788#1465788Comment by Michael Prewecki on What's the simplest way to compare an emum to a integer value return from a DBMichael Prewecki2009-09-23T15:26:45Z2009-09-23T15:26:45Zoh and yes it does work without the globalhttp://stackoverflow.com/questions/1465755/whats-the-simplest-way-to-compare-an-emum-to-a-integer-value-return-from-a-db/1465788#1465788Comment by Michael Prewecki on What's the simplest way to compare an emum to a integer value return from a DBMichael Prewecki2009-09-23T15:22:51Z2009-09-23T15:22:51ZThat's exactly what I was looking for...this also allows me to use the item.SomeNullableInteger (which is of course no longer an integer but the DB type is an integer) in switch statements. I did look at the the DBML definitions and though about changing the type...but because the enum wasn't in the drop down I didn't change it :-), I'm clearly a library user not a library writer.http://stackoverflow.com/questions/1465755/whats-the-simplest-way-to-compare-an-emum-to-a-integer-value-return-from-a-dbComment by Michael Prewecki on What's the simplest way to compare an emum to a integer value return from a DBMichael Prewecki2009-09-23T12:57:27Z2009-09-23T12:57:27ZI'm voting this gets closed...http://stackoverflow.com/questions/1465755/whats-the-simplest-way-to-compare-an-emum-to-a-integer-value-return-from-a-db/1465798#1465798Comment by Michael Prewecki on What's the simplest way to compare an emum to a integer value return from a DBMichael Prewecki2009-09-23T12:56:04Z2009-09-23T12:56:04Zthey are actually...just forgot it in the code I wrote for the question :-)http://stackoverflow.com/questions/1448562/how-to-get-every-character-in-a-string/1448569#1448569Comment by Michael Prewecki on How to get every character in a stringMichael Prewecki2009-09-19T13:41:29Z2009-09-19T13:41:29Zthis should be a commenthttp://stackoverflow.com/questions/1441425/fusion-loader-cant-find-a-dll-that-is-actually-there-unable-to-load-one-or-mo/1441540#1441540Comment by Michael Prewecki on Fusion loader can't find a DLL that is actually there - "Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information."Michael Prewecki2009-09-17T23:55:57Z2009-09-17T23:55:57ZThat's ok it can run from another directory, but it'll need to be signed I believe, so that it can be added to the config file as in item 2 above.http://stackoverflow.com/questions/1441514/software-to-create-a-knowledge-base-faq-systemComment by Michael Prewecki on Software to create a knowledge base/FAQ systemMichael Prewecki2009-09-17T22:08:28Z2009-09-17T22:08:28ZThe OP doesn't mention open-sourcehttp://stackoverflow.com/questions/1405394/com-ole-viewer-unable-to-create-instance-of-class/1405635#1405635Comment by Michael Prewecki on COM: OLE Viewer unable to create instance of classMichael Prewecki2009-09-13T10:45:51Z2009-09-13T10:45:51ZYeah, that could be the case, i'm not exactly sure if OLE Viewer would cause you assembly and it's dependent assemblies to be loaded under it's process space. fuslogvw will almost certainly tell you if your idea is correct by pointing out the exact binding failure.http://stackoverflow.com/questions/1322310/is-it-possible-to-debug-net-class-library-methods-as-wellComment by Michael Prewecki on Is it possible to debug .NET Class Library Methods as well?Michael Prewecki2009-08-24T13:21:15Z2009-08-24T13:21:15ZAs pointed out you can debug into the .NET framework using Microsofts published symbols...you're unlikely to have debug symbols for other 3rd Party libraries you might use. One piece of advice though, use the .NET framework debugging symbols to work out what you've done wrong...don't use them to identify bugs in the framework because almost without fail it'll be your fault :-)http://stackoverflow.com/questions/1041722/vb6-executable-icons/1045286#1045286Comment by Michael Prewecki on VB6 executable iconsMichael Prewecki2009-06-25T23:54:18Z2009-06-25T23:54:18ZNo in my case they were indeed in a compiled resource file, I was just unaware of the resource file in the VB6 project. As soon as I opened the resource editor it pointed out that the project contained a compiled resource file and it was the source of my icons. That's the trouble with inheriting legacy applications.http://stackoverflow.com/questions/1041722/vb6-executable-icons/1041778#1041778Comment by Michael Prewecki on VB6 executable iconsMichael Prewecki2009-06-25T01:42:21Z2009-06-25T01:42:21ZThat was exactly what I needed!!!http://stackoverflow.com/questions/581570/how-can-i-create-a-temp-file-with-a-specific-extension-with-net/581968#581968Comment by Michael Prewecki on How can I create a temp file with a specific extension with .net ?Michael Prewecki2009-05-27T04:23:30Z2009-05-27T04:23:30ZNo it won't...GetTempFileName() creates a unique filename...upto some limit of 32K at which point you need to delete some files but I think my solution is correct. It's wrong if I were to pass a file path into ChangeExtension that isn't guaranteed to be unique, but that's not what my solution does.http://stackoverflow.com/questions/891240/who-owns-the-fishComment by Michael Prewecki on Who owns the fish?Michael Prewecki2009-05-21T03:23:47Z2009-05-21T03:23:47ZSo Michael this was closed for the wrong reason...your question is perfectly valid in that it meets the "Questions about hypothetical problems that don’t necessarily have real-world applications, for example “code golf” or the “FizzBuzz problem”.