User TheCodeJunkie - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T07:58:36Zhttp://stackoverflow.com/feeds/user/25319http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/297153/can-you-recommend-a-svn-closed-source-project-hosting-site9Can you recommend a SVN, closed-source project hosting site?TheCodeJunkie2008-11-17T22:13:09Z2009-11-11T14:23:09Z
<p>Hi</p>
<p>I'm looking for a place to host a project using subversion, something like codeplex.com but not for open-source projects (not ready to share the source right now). Subversion source control and an issue/bug tracker would be nice. It wouldn't hurt if I was able to host a single sql database as well (although that's a secondary requirement)</p>
<p>Anything from free to a fair priced service is of interest, so all recommendations and experience will be greatly appreciated. In case it matters, the project is a .net project.</p>
http://stackoverflow.com/questions/1517315/how-to-launch-exe-when-project-solution-studio-starts0How to launch EXE when project / solution / studio starts?TheCodeJunkie2009-10-04T20:36:43Z2009-10-20T13:17:55Z
<p>Is there anyway to customize the solution / project file so that it launches an <a href="http://en.wikipedia.org/wiki/EXE" rel="nofollow">EXE</a> when it's loaded into Visual Studio or, as a second option, when Visual Studio is started? I know I can make a link to a BAT file or similar but I'd rather make it more seamless if possible.</p>
<p>I did check the possibility of adding custom tasks into the project file, since they are just <a href="http://en.wikipedia.org/wiki/MSBuild" rel="nofollow">MSBuild</a> scripts but I couldn't find a suitable event to trigger it on.. They're all build-centric events.</p>
http://stackoverflow.com/questions/1468803/documentation-for-implementors-of-com-interfaces2Documentation for implementors of COM interfacesTheCodeJunkie2009-09-23T22:11:11Z2009-10-17T07:18:31Z
<p>I'm in the process of doing some COM interop from a C# application and I can't seem to find the answer to this.</p>
<p>I was wondering where I could find in the Win32 documentation which concreate implementions that exists of a COM interface. For example I know (thanks to goodgle) that IShellLinkW is implemented by a class that's identified by CLSID_ShellLink, that IObjectArray is implemented by CLSID_EnumerableObjectCollection and so on.</p>
<p>However how am I supposed to know? I have the Windows SDK (latest) version installed and I can't seem to wrap my head around how I was supposed to figure that out based on the information in the docs?</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1540732#15407326Answer by TheCodeJunkie for What is your best programmer joke?TheCodeJunkie2009-10-08T21:58:05Z2009-10-08T21:58:05Z<p>This is a classic</p>
<blockquote>
<p>There are only 10 kinds of people:
those who understand binary andthose
who don't</p>
</blockquote>
<p>And lets not forget :-)</p>
<blockquote>
<p>Why computers are like men:</p>
<ol>
<li>In order to get their attention, you have to turn them on.</li>
<li>They have a lot of data, but are still clueless.</li>
<li>They are supposed to help you solve problems, but half the time they
are the problem.</li>
<li>As soon as you commit to one, you realize that if you had waited a
little longer, you could have had a
better model.</li>
</ol>
<p>Why computers are like women:</p>
<ol>
<li>No one but the Creator understands their internal logic.</li>
<li>The native language they use to communicate with other computers is
incomprehensible to everyone else.</li>
<li>Even your smallest mistakes are stored in long-term memory for later
retrieval.</li>
<li>As soon as you make a commitment to one, you find yourself spending
half your paycheck on accessories for
it.</li>
</ol>
</blockquote>
http://stackoverflow.com/questions/1484404/check-if-handle-belongs-to-the-current-process0Check if handle belongs to the current process?TheCodeJunkie2009-09-27T20:31:30Z2009-10-02T09:31:39Z
<p>Is there any Win32 API to check if a given handle belongs to the current process?</p>
http://stackoverflow.com/questions/258483/best-practices-for-localizing-a-sql-server-2005-2008-database5Best-practices for localizing a SQL Server (2005/2008) databaseTheCodeJunkie2008-11-03T12:26:39Z2009-09-29T11:50:00Z
<h2>Question</h2>
<p>I'm sure many of you have been faced by the challenge of localizing a database backend to an application. If you've not then I'd be pretty confident in saying that the odds of you having to do so in the future is quite large. I'm talking anout storing multiple translations of texts (and the same can be said for currency etc.) for your database entities.</p>
<p>For example the classic "Category" table might have a Name and a Description column which should be globalized. One way would be to do have a "Text" table for each of your entities and then do a join to retreive the values based on the provided language.</p>
<p>This leaves you with a lot of "Text" tables, one for each entity which you want to localize, with the addition of a TextType to distinguish between the various texts that it may store.</p>
<p>I'm curious if there are any, documented, best-practises / design patterns on implementing this kind of support into a SQL Server 2005/2008 datebase (I'm being specific about the RDBMS since it might contain supported keywords and such which helps with the implementation)?</p>
<h2>Thoughts on XML approach</h2>
<p>One idea I have been toying with (albeit only in my head so far) was to leverage the XML datatype introduced in SQL Server 2005. The idea was to make columns which should support localization, of the XML datatype (and bind a schema to it). The XML would contain the localized strings along with the language code / culture it was tied to.</p>
<p>Something along the lines of</p>
<pre><code>Product
ID (int, identity)
Name (XML ...)
Description (XML ...)
</code></pre>
<p>Then you would have something like this as the XML</p>
<pre><code><localization>
<text culture="sv-SE">Detta är ett namn</text>
<text culture="en-EN">This is a name</text>
</localization>
</code></pre>
<p>You could then do (This isn't production code so I'll use the *)</p>
<pre><code>SELECT *
From Product
Where Product.ID = 10
</code></pre>
<p>And you would get back the product with all localized texts which would mean you would have to do the extraction on the client-side. The biggest problem here is obviously the amount of extra data that you would have to return on each query, The benefits would be a cleaner design with no look-up tables, joins and so on. </p>
<p>Btw, what ever method I do end up using in my design I will still be using Linq To SQL (.NET Platform) to query the database (the XML approach should be a problem since it would return an XElement which could be interpreted client-side)</p>
<p>So suggestion on database localization design patterns, and possibly comments on the XML thought, would be very apprechiated.</p>
http://stackoverflow.com/questions/1429435/com-interface-declarations1COM interface declarationsTheCodeJunkie2009-09-15T20:28:02Z2009-09-15T20:33:04Z
<p>Hi,</p>
<p>When creating COM interface declarations in C# are there any "rules" you have to stick to? I think there are and would like to get some info on it. For example I'm toying around with the ITaskbarList, ITaskbarList2 and ITaskbarList3 interfaces and it seems to me that I</p>
<ul>
<li>Have to declare the order of the members in the manages implementation exactly in the order that they appear in the unmanaged interface declaration.</li>
</ul>
<p>For example the following appears to work just fine</p>
<pre><code>[ComImport]
[Guid("56FDF342-FD6D-11D0-958A-006097C9A090")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ITaskbarList
{
void HrInit();
void AddTab([In] IntPtr hwnd);
void DeleteTab([In] IntPtr hwnd);
void ActivateTab([In] IntPtr hwnd);
void SetActiveAlt([In] IntPtr hwnd);
}
</code></pre>
<p>While reordering the members breaks the functionality</p>
<pre><code>[ComImport]
[Guid("56FDF342-FD6D-11D0-958A-006097C9A090")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ITaskbarList
{
void DeleteTab([In] IntPtr hwnd);
void HrInit();
void AddTab([In] IntPtr hwnd);
void SetActiveAlt([In] IntPtr hwnd);
void ActivateTab([In] IntPtr hwnd);
}
</code></pre>
<ul>
<li>Have to declare inherited unmanaged interfaces in a single managed interface declaration instead of using inheritance on the managed interfaces. I want to declare each of the unmanaged interfaces in their own managed interface (complete with Guid attributes etc) and use inheritance inbetween then, instead of redeclaring the parent declarations in each new interface.</li>
</ul>
<p>For example, this doesn't appear to work</p>
<pre><code>[ComImport]
[Guid("56FDF342-FD6D-11D0-958A-006097C9A090")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ITaskbarList
{
void HrInit();
void AddTab([In] IntPtr hwnd);
void DeleteTab([In] IntPtr hwnd);
void ActivateTab([In] IntPtr hwnd);
void SetActiveAlt([In] IntPtr hwnd);
}
[ComImport]
[Guid("602D4995-B13A-429B-A66E-1935E44F4317")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ITaskbarList2
: ITaskbarList
{
void MarkFullscreenWindow(
[In] IntPtr hwnd,
[In, MarshalAs(UnmanagedType.Bool)] bool fullscreen);
}
</code></pre>
<p>Instead I'm forced to do the following</p>
<pre><code>[ComImport]
[Guid("602D4995-B13A-429B-A66E-1935E44F4317")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ITaskbarList2
{
void HrInit();
void AddTab([In] IntPtr hwnd);
void DeleteTab([In] IntPtr hwnd);
void ActivateTab([In] IntPtr hwnd);
void SetActiveAlt([In] IntPtr hwnd);
void MarkFullscreenWindow(
[In] IntPtr hwnd,
[In, MarshalAs(UnmanagedType.Bool)] bool fullscreen);
}
</code></pre>
<p>I.e declare it in a single interface while still taking the member order into concideration. </p>
<p>So what are the guidelines for declaring managed interfaces for their unmanaged counterparts? Is there anyway to achive what I want, it interface inheritance on the managed side + declare the memebers in any order I want (I really just want to sort them alphabetically)</p>
http://stackoverflow.com/questions/289483/t4-not-working-in-visual-studio-20080T4 not working in Visual Studio 2008TheCodeJunkie2008-11-14T08:18:01Z2009-07-21T20:40:13Z
<p>Hi,</p>
<p>I have to machines setup to run Visual Studio 2008 (SP1) & NET Framework 3.5 (SP1). If I create a .tt file in a console appliaction on machine #1 it automatically creates the sub .cs file for me, however if I do the exact same on machine #2 then no sub .cs file is created.</p>
<p>I have tried toggeling the "Show All Files" option, restarting visual studio (multiple times), added new .tt files (with the same outcome), tried it in both a C# and a VB.NET project and google is drawing up blanks. </p>
<p>Is it possible for t4 to have been disabled somehow? If so then how the heck do I turn it back on, it's annoying :-)</p>
http://stackoverflow.com/questions/211169/cng-cryptoserviceprovider-and-managed-implementations-of-hashalgorithm1CNG, CryptoServiceProvider and Managed implementations of HashAlgorithmTheCodeJunkie2008-10-17T05:39:40Z2009-06-16T21:48:21Z
<p>So I was wondering if there are any major differences between the various implementations of the hash algorithms, take the SHA series of algorithms for example. All of them have 3 implementations each, 1 in managed code and 2 wrappers around different native crypto APIs, but are there any major differences between using any of them? I can imagine that the wrapper versions could have higher performance since its being executed in native code, but surley hey all need to perform the exact same calculations and thus provide the same output ie hey are interchangable. Is this correct?</p>
<p>For instance SHA512CNG cant be used on XP SP2 (docs are wrong) but SHA512MANAGED can.</p>
http://stackoverflow.com/questions/373873/check-if-a-dragdrop-is-in-progress1Check if a drag&drop is in progressTheCodeJunkie2008-12-17T07:14:45Z2009-06-07T11:00:01Z
<p>Hey,</p>
<p>Is there any way to check if a drag and drop is in progress? Some method or win32 api which can be checked? I know I can set AllowDrop and use events but it doesn't work in this case. Basically i want to check, with code, if <strong>any</strong> drag&drop is in progress.</p>
http://stackoverflow.com/questions/450238/to-underscore-or-to-not-to-underscore-that-is-the-question6To underscore or to not to underscore, that is the questionTheCodeJunkie2009-01-16T12:10:16Z2009-06-05T15:09:10Z
<p>Hi,</p>
<p>Are there any problems with not prefixing private fields with an underscore in C# if the binary version is going to be consumed by other framework languages? For example since C# is case-sensitive you can call a field "foo" and the public property "Foo" and it works fine.</p>
<p>Would this have <strong>any</strong> effect on a case-insensitive language such as VB.NET, will there by any CLS-compliance (or other) problems if the names are only distinguishable by casing?</p>
http://stackoverflow.com/questions/251460/can-i-run-visual-studio-2008-x86-on-windows-vista-x643Can I run Visual Studio 2008 x86 on Windows Vista x64?TheCodeJunkie2008-10-30T19:37:14Z2009-06-01T05:54:41Z
<p>Hi,</p>
<p>Is it possible to run the 32-bit version of Visual Studio 2008 Professional on a Windows Vista 64-bit system? </p>
<ul>
<li>Are there any known caveats that I would need to be aware of?</li>
<li>Would have to install the x64 version of the .NET Framework?</li>
<li>Would there be any issues on building software targeted for x86?</li>
<li>Would there be any (justifiable) arguments for getting the x64 version of VS2008 instead of reusing the current x86 license?</li>
</ul>
<p>Quite tempted on getting a x64 Vista rig to be able to take advantage of more RAM :)</p>
http://stackoverflow.com/questions/251711/fetching-items-which-has-a-specific-set-of-child-elements-advanced-query-possi2Fetching items which has a specific set of child elements (advanced query - possible?)TheCodeJunkie2008-10-30T20:47:25Z2009-05-09T05:54:00Z
<p>Hi,</p>
<p>I have a SQL database (SQL Server 2008) which contains the following design</p>
<h2>ITEM</h2>
<ul>
<li>ID (Int, Identity)</li>
<li>Name (NVarChar(50))</li>
<li>Description (NVarChar(200))</li>
</ul>
<h2>META</h2>
<ul>
<li>ID (Int, Identity)</li>
<li>Name (NVarChar(50))</li>
</ul>
<p>There exists a N-N relationship between these two, i.e an Item can contain zero or more meta references and a meta can be associated with more than one item. Each meta can only be assocated with the same item once. This means I have the classic table in the middle</p>
<h2>ITEMMETA</h2>
<ul>
<li>ItemID (Int)</li>
<li>MetaID (Int)</li>
</ul>
<p>I would like to to execute a LinqToSql query to extract all of the item entities which contains a specific set of meta links. For example, give me all the Items which have the following meta items associated with it</p>
<ul>
<li>Car</li>
<li>Ford</li>
<li>Offroad</li>
</ul>
<p>Is it possible to write such a query with the help of LinqToSql? Let me provide some more requirements</p>
<ul>
<li>I will have a list of Meta tags I want to use to filter the items which will be returned (for example in the example above I had Car, Ford and Offroad)</li>
<li>An item can have MORE meta items associated with it than what I provide in the match, i.e if an item had Car, Ford, Offroad and Red assocated to it then providing any combination of them in the filter should result in a match</li>
<li>However ALL of the meta names which are provided in the filter MUST be assocated with an item for it to be returned in the resultset. So sending in Car, Ford, Offroad and Red SHOULD NOT be a match for an item which has Car, Ford and Offroad (no Red) associated with itself</li>
</ul>
<p>I hope its clear what I'm trying to achieve, I feel Im not being quite as clear as I'd hoped =/ Let's hope its enough :)</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/673530/transactionscope-and-multi-threading3TransactionScope and multi-threadingTheCodeJunkie2009-03-23T14:15:28Z2009-03-23T16:25:15Z
<p>Hi,</p>
<p>I was wondering how you would use the TransactionScope class in the correct way when you are dealing with multithreading?</p>
<p>We create a new scope in our main thread and then we spawn of a couple of worker threads and we want these to participate in the main scope, so that for example the rollback is called on each worker if the scope is never completed.</p>
<p>I read something about TransactionScope using the ThreadStaticAttribute internally which made the above impossible / very difficult - could someone verify either way? If we run out code in a syncrhonized fashion then the rollbacks work, i.e the inner transactions are able to participate in the main transaction, but not if we switch over to a threaded execution.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/669066/setters-for-collection-type-properties/669087#6690873Answer by TheCodeJunkie for Setters for collection type propertiesTheCodeJunkie2009-03-21T10:26:22Z2009-03-21T10:26:22Z<p>Please read the FxCop recommondation CAS2227 "Collection properties should be read only"
<a href="http://msdn.microsoft.com/en-us/library/ms182327(VS.80).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms182327(VS.80).aspx</a></p>
<p>it contains good advice :)</p>
http://stackoverflow.com/questions/658929/winforms-with-mef/661352#6613521Answer by TheCodeJunkie for Winforms with MEFTheCodeJunkie2009-03-19T07:38:44Z2009-03-19T07:38:44Z<p>Before moving on I think your Compose method needs to be cleaned up. Why are you adding the container and catalog into the batch?</p>
<pre><code>batch.AddExportedObject(_container);
batch.AddExportedObject(catalog);
</code></pre>
<p><strong>AddExportedObject</strong> is used to add a pre-existing object instance as an export and it doesn't make much sense trying to use the container and catalog as exports</p>
<pre><code>privat void Compose()
{
var catalog =
new AssemblyCatalog(typeof(ITab).Assembly);
var batch =
new CompositionBatch();
batch.AddPart(this);
var container =
new CompositionContainer(catalog);
container.Compose(batch);
}
</code></pre>
http://stackoverflow.com/questions/569889/how-do-i-use-large-bitmaps-in-net/577009#5770090Answer by TheCodeJunkie for How do I use large bitmaps in .NET?TheCodeJunkie2009-02-23T09:28:37Z2009-02-23T09:28:37Z<p>One thing just struck me. Are you drawing the entire image and not only the visible part? You should not draw a bigger portion of the image than you are showing in your application, use the x, y, width and heigth parameters to restrict the drawn area.</p>
http://stackoverflow.com/questions/569889/how-do-i-use-large-bitmaps-in-net/571052#5710523Answer by TheCodeJunkie for How do I use large bitmaps in .NET?TheCodeJunkie2009-02-20T20:11:18Z2009-02-20T20:11:18Z<p>This is a two part question. The first question is how you can load large images without running out of memory (1), the second one is on improving loading performance (2).</p>
<p>(1) Concider an application like Photoshop where you have the ability to work with huge images consuming gigabites on the filesystem. Keeping the entire image in memory and still have enough free memory to perform operations (filters, image processing and so on, or even just adding layers) would be impossible on most systems (even 8gb x64 systems).</p>
<p>That is why applications such as this uses the concept of swap files. Internally I'm assuming that photoshop uses a proprietary file format, suitable for their application design and built to support partial loads from the swap, enabling them to load parts of a file into memory to process it.</p>
<p>(2) Performande can be improved (quite a lot) by writing custom loaders for each file format. This requires you to read up on the file headers and structure of the file formats you want to work with. Once you've gotten the hand of it its not <strong>**that**</strong> hard, but it's not as trivial as doing a method call.</p>
<p>For example you could google for FastBitmap to see examples on how you can load a bitmap (BMP) file very fast, it included decoding the bitmap header. This involved pInvoke and to give you some idea on what you are up against you will need to define the bitmap structues such as</p>
<pre><code> [StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct BITMAPFILEHEADER
{
public Int16 bfType;
public Int32 bfSize;
public Int16 bfReserved1;
public Int16 bfReserved2;
public Int32 bfOffBits;
}
[StructLayout(LayoutKind.Sequential)]
public struct BITMAPINFO
{
public BITMAPINFOHEADER bmiHeader;
public RGBQUAD bmiColors;
}
[StructLayout(LayoutKind.Sequential)]
public struct BITMAPINFOHEADER
{
public uint biSize;
public int biWidth;
public int biHeight;
public ushort biPlanes;
public ushort biBitCount;
public BitmapCompression biCompression;
public uint biSizeImage;
public int biXPelsPerMeter;
public int biYPelsPerMeter;
public uint biClrUsed;
public uint biClrImportant;
}
</code></pre>
<p>Possibly work with creating a DIB (<a href="http://www.herdsoft.com/ti/davincie/imex3j8i.htm" rel="nofollow">http://www.herdsoft.com/ti/davincie/imex3j8i.htm</a>) and oddities like data being stored "upside down" in a bitmap which you need to take into account or you'll see a mirror image when u open it :-)</p>
<p>Now that's just for bitmaps. Say you wanted to do PNG then you'd need to do similar stuff but decoding the PNG header, which in its simplest form isnt that hard, but if you want to get full PNG specification support then you are in for a fun ride :-)</p>
<p>PNG is different to say a bitmap since it uses a chunk based format where it has "headers" you can loacate to find the diffrent data. Example of some chunks I used while playing with the format was</p>
<pre><code> string[] chunks =
new string[] {"?PNG", "IHDR","PLTE","IDAT","IEND","tRNS",
"cHRM","gAMA","iCCP","sBIT","sRGB","tEXt","zTXt","iTXt",
"bKGD","hIST","pHYs","sPLT","tIME"};
</code></pre>
<p>You are also going to have to learn about Adler32 checksums for PNG files. So each file format you'd want to do would add a different set of challenges.</p>
<p>I really wish I could give more complete source code examples in my reply but it's a complex subject, and to be honest I've not implemented a swap myself so I wouldn't be able to give too much solid advice on that. </p>
<p>The short answer is that the image processing cababilities in the BCL isn't that hot. The medium answer would be to try and find if someone has written an image library that could help you and the long answer would be to pull up your sleeves and write the core of your application yourself.</p>
<p>Since you know me in real-life you know where to find me ;)</p>
http://stackoverflow.com/questions/472275/mef-on-mono-doesnt-work-properly/472293#4722933Answer by TheCodeJunkie for MEF on Mono doesn't work properly?TheCodeJunkie2009-01-23T08:54:25Z2009-01-23T08:54:25Z<p>So I'm assuming that the exports are defined in external assemblies, because you use the DirectoryPartCatalog.. either there is an issue with the file path handling in the catalog or the problem is in the AttributedAssemblyPartCatalog / AttributedTypesPartCatalog</p>
<p>Internally the DirectoryPartCatalog wraps each discovered assembly into an AttributedAssemblyPartCatalog which in turn uses a AttributedTypesPartCatalog</p>
<p>Your best bet is to add the MEF project into your solution, instead of the dll, and set a break point in the greediest constructors of DirectoryPartCatalog & AttributedAssemblyPartCatalog and step until u find the problem</p>
<p>Unfortunatly I do not have a mono machine setup so I can't help more than that</p>
http://stackoverflow.com/questions/373913/setting-the-parent-of-a-usercontrol-prevents-it-from-being-transparent0Setting the parent of a usercontrol prevents it from being transparentTheCodeJunkie2008-12-17T07:46:49Z2008-12-17T08:15:23Z
<p>I've created a simple user control which is manually created with something like</p>
<pre><code>MyUserControl ctrl = new MyUserControl();
</code></pre>
<p>The control have been designed to have <em>BackColor = Color.Transparent</em> and that works fine, until I set the <em>Parent</em> of the control to a form at which time it turns into the color of the form.</p>
<p>Might sound like its transparent but what it does is hide all the controls that exist on the form as well. I'm not 100% sure its the control that gets a solid background or something else thats happening when i hook it up, which prevents other controls from showing.</p>
<p>Basically if you do this</p>
<ul>
<li>Create a form</li>
<li>Drop a button on it</li>
<li>In the click handler for the button you do the following</li>
</ul>
<p>Example</p>
<pre><code>MyUserControl ctrl = new MyUserControl();
ctrl.Parent = this;
ctrl.BackColor = Color.Transparent;
ctrl.Size = this.Parent.ClientRectangle.Size;
ctrl.Location = this.Parent.ClientRectangle.Location;
ctrl.BringToFront();
ctrl.Show();
</code></pre>
<p>Basically I want the usercontrol to overlay the entire form, while showing the underlaying controls on the form (hence the transparent background). I do not want to add it to the forms control collection because it doesn't really belong to the form, its just being shown ontop of everything else</p>
<p>I tried doing the same, but without setting the parent, but then the control didnt show at all.</p>
<p>Thanks!</p>
<p>EDIT: If I override the OnPaintBackground method in the usercontrol and prevent the background from being painted then it works, however that messes up with the transparent parts of a PNG image im painting in the control using DrawImage, which makes sense.</p>
http://stackoverflow.com/questions/301230/using-the-greedy-route-parameter-in-the-middle-of-a-route-definition0Using the greedy route parameter in the middle of a route definitionTheCodeJunkie2008-11-19T07:21:59Z2008-11-26T21:01:17Z
<p>Hi,</p>
<p>I'm trying to create routes which follow the structure of a tree navigation system, i.e I want to include the entire path in the tree in my route. So if I had a tree which looked like this</p>
<ul>
<li>Computers
<ul>
<li>Software
<ul>
<li>Development</li>
<li>Graphics</li>
</ul></li>
<li>Hardware
<ul>
<li>CPU</li>
<li>Graphics cards</li>
</ul></li>
</ul></li>
</ul>
<p>Then I would like to be able to have routes that looks like this</p>
<ul>
<li>site.com/catalog/computers/software/graphics</li>
</ul>
<p>This, on it's own is not hard and can be caught by a route which looks like this</p>
<ul>
<li>catalog/{*categories}</li>
</ul>
<p>However I want to be able to add the product information at the end of that URL, something like this</p>
<ul>
<li>site.com/catalog/computers/software/graphics/title=Photoshop</li>
</ul>
<p>Which would mean I would requite routes that were defined like the following examples</p>
<ul>
<li>site.com/{*categories}/title={name}</li>
<li>site.com/{*categories}</li>
</ul>
<p>However the first of these routes are invalid since nothing else can appear after a greedy parameter such as {<em>categories} so I'm a bit stuck. I've been thinking of implementing regex routes or perhaps use IRouteContraint to work my way around this but I can't think of a decent solution that would enable me to also use the <strong>Html.ActionLink(...)</strong> method to generate outbount URLs which filled in both {</em>categories} and {name}</p>
<p>Any advice is greatly apprechiated!</p>
<p><em>Some of you may have seen a similar question by me yesterday but that was deleted, by me, since I've since given it more thought and the old question contained incomplete descriptions of my problem</em></p>
<p><strong>UPDATE 2008/11/26</strong> I posted the solution at <a href="http://thecodejunkie.blogspot.com/2008/11/supporting-complex-route-patterns-with.html" rel="nofollow">http://thecodejunkie.blogspot.com/2008/11/supporting-complex-route-patterns-with.html</a></p>
http://stackoverflow.com/questions/290007/how-would-you-design-a-hackable-url1How would you design a hackable urlTheCodeJunkie2008-11-14T13:01:54Z2008-11-23T04:02:18Z
<p>Imagine you had a group of product categories organized in a nice tree hierarchy and you wanted to provide hackable urls to browse these. You could do something like this</p>
<pre><code>/catalog/categorya/categoryb/categoryc
</code></pre>
<p>You could then quite easily figure out which category you should list the products for (note that the full URL is needed since you could have categories with the same name but at different locations in the hierarchy)</p>
<p>Now what would be a good approach to add product information in that as well? To give you an example, you wanted to display the product Oblivion for this category </p>
<pre><code>/catalog/games/consoles/playstation/adventure
</code></pre>
<p>It's tempting to just add the product at the end of the url</p>
<pre><code>/catalog/games/consoles/playstation/adventure/oblivion
</code></pre>
<p>but the moment you do so you loose the ability to know if its category or a product which is called oblivion. I personally feel that not being forced to add a suffix such as .html</p>
<pre><code>/catalog/games/consoles/playstation/adventure/oblivion.html
</code></pre>
<p>would be the nicest solution and using some sort of prefix, such as </p>
<pre><code>/catalog/games/consoles/playstation/adventure/product:oblivion
</code></pre>
<p>You could also add some sort of trigger like</p>
<pre><code>/catalog/games/consoles/playstation/adventure/PRODUCT/oblivion
</code></pre>
<p>not as nice either and you would (even though its very unlikely it would be a problem) restrict yourself from having a category called <em>product</em></p>
<p>So far a suffix solution looks like the most user-friendly approach that I can think of from the top of my head but I'm not fond of having to use an extension</p>
<p>What are your thoughts on this?</p>
http://stackoverflow.com/questions/308756/checking-an-assembly-for-a-strong-name3Checking an assembly for a strong nameTheCodeJunkie2008-11-21T13:30:07Z2008-11-21T16:49:01Z
<p>Is it possible to check if a, dynamically loaded, assembly has been signed with a specific strong name? Is it enough / secure to compare the values returned from <strong>AssemblyName.GetPublicKey()</strong> method?</p>
<pre><code>Assembly loaded =
Assembly.LoadFile(path);
byte[] evidenceKey =
loaded.GetName().GetPublicKey();
if (evidenceKey != null)
{
byte[] internalKey =
Assembly.GetExecutingAssembly().GetName().GetPublicKey();
if (evidenceKey.SequenceEqual(internalKey))
{
return extension;
}
}
</code></pre>
<p>Can't this be spoofed? Not sure if the SetPublicKey() method has any effect on a built assembly, but even the MSDN documentation shows how you can use this on a dynamically generated assembly (reflection emit) so that would mean you could extract the public key from the host application and inject it into an assembly of your own and run mallicious code if the above was the safe-guard, or am I missing something?</p>
<p>Is there a more correct and secure approach? I know if the revered situation was the scenario, i.e where I wanted to secure the assembly from only being called by signed hosts then i could tag the assembly with the StrongNameIdentityPermission attribute</p>
<p>Thanks</p>
http://stackoverflow.com/questions/308756/checking-an-assembly-for-a-strong-name/309429#3094291Answer by TheCodeJunkie for Checking an assembly for a strong nameTheCodeJunkie2008-11-21T16:49:01Z2008-11-21T16:49:01Z<p>I'll answer my own question. There is no managed way to check the signature of an assembly and checking the public key leaves you vulnerable to spoofing. You will have to use p/Invoke and call the <strong>StrongNameSignatureVerificationEx</strong> function to check the signature</p>
<pre><code>[DllImport("mscoree.dll", CharSet=CharSet.Unicode)]
static extern bool StrongNameSignatureVerificationEx(string wszFilePath, bool fForceVerification, ref bool pfWasVerified);
</code></pre>
http://stackoverflow.com/questions/299382/how-do-i-unit-test-object-serialization-deserialization-in-vb-net-1-1/299470#2994701Answer by TheCodeJunkie for How do I unit test object serialization/deserialization in VB.NET 1.1?TheCodeJunkie2008-11-18T17:27:51Z2008-11-18T17:27:51Z<p>If all you want to do is to ensure that they are serializable then all you should have to do it to do a serialization of an object and make sure no XmlSerializationException was thrown</p>
<pre><code>[Test]
public void ClassIsXmlSerializable()
{
bool exceptionWasThrown = false;
try
{
// .. serialize object
}
catch(XmlSerializationException ex)
{
exceptionWasThrown = true;
}
Asset.IsFalse(exceptionWasThrown, "An XmlSerializationException was thrown. The type xx is not xml serializable!");
}
</code></pre>
http://stackoverflow.com/questions/290007/how-would-you-design-a-hackable-url/290083#2900830Answer by TheCodeJunkie for How would you design a hackable urlTheCodeJunkie2008-11-14T13:32:13Z2008-11-14T13:32:13Z<p>@Lou Franco yeah either method needs a sturdy fallback mechanism and sending it to some sort of suggestion page or seach engine would be good candidates</p>
<p>@Stefan the problem with treating both as targets are how to distinguish them (like I described). At worst case scenario is that you first hit your database to see if there is a category which satisfies the path and if it doesn't then you check if there is a product which does. The problem is that for each product path you will end up making a useless call to the database to make sure its not a category.</p>
<p>@some yeah a delimiter could be a possible solution but then a .html suffix is more userfriendly and commonly known of. </p>
http://stackoverflow.com/questions/289892/what-icon-would-you-use-for-clear-as-in-clear-a-text-box/289970#2899700Answer by TheCodeJunkie for What icon would you use for 'Clear'? (As in clear a text box)TheCodeJunkie2008-11-14T12:47:01Z2008-11-14T12:47:01Z<p>Like mentioned by others, the tooltip is the most important thing no matter what sort of icon you'd choose. There are cultural differences which gives symbols and colors different meaning</p>
<ul>
<li>red are in some cultures a good thing</li>
<li>the meaning of an x and a checkmark has completly different meanings between cultures</li>
<li>and so on</li>
</ul>
<p>Try to go with "industry standards" and if there are any design guidelines for the platform you are building for, for example microsoft have very detailed design guidelines for visual elements and so on.</p>
http://stackoverflow.com/questions/289483/t4-not-working-in-visual-studio-2008/289507#2895070Answer by TheCodeJunkie for T4 not working in Visual Studio 2008TheCodeJunkie2008-11-14T08:32:36Z2008-11-14T08:32:36Z<p>That property is blank on machine 2 and manually typing it in and saving it does not trigger the generation of the cs file either. It's almost as if this tool is not working correctly on the second machine?</p>
<p>At the moment I do not have access to machine 1 (they are split between my home and office) so I cannot compare stuff =(</p>
http://stackoverflow.com/questions/277024/unused-namespaces-in-c/277162#2771623Answer by TheCodeJunkie for Unused Namespaces in C#TheCodeJunkie2008-11-10T06:00:19Z2008-11-10T06:47:58Z<p>The answer is yes and no. If the namespaces reference assemblies that you must have in your project either way then it's just a question about keeping things tidy. However if you are referencing a namespace that exists in an assembly you really do not need anymore you should remove the using-directives pointing to it and remove the assembly reference.</p>
<p>Depending on which version of Visual Studio you are using (I'm not sure if this was introduced in 2005 or 2008) you can right-click in your code and select the <strong>organize usings</strong> and get the option to</p>
<ul>
<li>Remove Unused Usings</li>
<li>Sort Usings</li>
<li>Remove and Sort</li>
</ul>
<p>Very handy!</p>
http://stackoverflow.com/questions/275920/asp-net-mvc-on-iis-6-wildcard-mapping-the-incoming-request-does-not-match-any/275928#2759281Answer by TheCodeJunkie for ASP.NET MVC on IIS 6 - wildcard mapping - the incoming request does not match any routeTheCodeJunkie2008-11-09T13:46:35Z2008-11-09T13:46:35Z<p>Unfortunatly IIS 6 needs a file extension to map the request to the right handler which means you will have to use the .mvc suffix on your controller names, such as <em>/{controller}.mvc/{action}</em></p>
<pre><code>routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
SimplyRestfulRouteHandler.BuildRoutes(routes);
routes.MapRoute(
"Default",
"{controller}.mvc/{action}/{id}",
new { controller = "Home", action = "Index", id = "" }
);
</code></pre>
<p>However, the are ways around this depending on your level of control on the IIS 6 server. Please refer to the following pages for more information</p>
<ul>
<li><a href="http://biasecurities.com/blog/2008/how-to-enable-pretty-urls-with-asp-net-mvc-and-iis6/" rel="nofollow">http://biasecurities.com/blog/2008/how-to-enable-pretty-urls-with-asp-net-mvc-and-iis6/</a></li>
<li><a href="http://www.flux88.com/UsingASPNETMVCOnIIS6WithoutTheMVCExtension.aspx" rel="nofollow">http://www.flux88.com/UsingASPNETMVCOnIIS6WithoutTheMVCExtension.aspx</a></li>
</ul>
http://stackoverflow.com/questions/251460/can-i-run-visual-studio-2008-x86-on-windows-vista-x64Comment by TheCodeJunkie on Can I run Visual Studio 2008 x86 on Windows Vista x64?TheCodeJunkie2009-10-07T07:52:42Z2009-10-07T07:52:42ZBeen running this for almost a year now with only one minor problem. Having a 32-bit COM reference screws things up if your build platform is "Any CPU" .. there are lots of posts about this online. Other than that, it's been smooth sailing.http://stackoverflow.com/questions/1517315/how-to-launch-exe-when-project-solution-studio-startsComment by TheCodeJunkie on How to launch EXE when project / solution / studio starts?TheCodeJunkie2009-10-04T21:51:45Z2009-10-04T21:51:45ZYeah that's what I think as well.. was hoping for some sort of hook anyway.. might do this as a VS add-in instead
http://stackoverflow.com/questions/1517315/how-to-launch-exe-when-project-solution-studio-starts/1517344#1517344Comment by TheCodeJunkie on How to launch EXE when project / solution / studio starts?TheCodeJunkie2009-10-04T20:51:02Z2009-10-04T20:51:02ZI guess I could use something like that but I'd rather use an MSBuild task or similar. It would mean I could check in the exe into the repository, as well as the launch instructions and have it propagate to all the team members without having to create the macro on each machine.http://stackoverflow.com/questions/1484404/check-if-handle-belongs-to-the-current-processComment by TheCodeJunkie on Check if handle belongs to the current process?TheCodeJunkie2009-09-27T20:49:23Z2009-09-27T20:49:23ZI'd like to say "any" but I get the impression that it would make it impossible or a lot harder. So I'll settle for a window handle :)http://stackoverflow.com/questions/1468803/documentation-for-implementors-of-com-interfaces/1468867#1468867Comment by TheCodeJunkie on Documentation for implementors of COM interfacesTheCodeJunkie2009-09-24T06:18:41Z2009-09-24T06:18:41ZBecause Microsoft just decided not to document it themselves? ;)http://stackoverflow.com/questions/1468803/documentation-for-implementors-of-com-interfaces/1468867#1468867Comment by TheCodeJunkie on Documentation for implementors of COM interfacesTheCodeJunkie2009-09-24T05:40:50Z2009-09-24T05:40:50ZLet's for get the whole managed interop scenario, it's not relevant to the question (it was just some background) and I know all about the IDL files, typelibs, import tools and so on
How would I, as a new and aspiring C++ developer, know about the concrete classes? Say I read the docs and see IShellLinkW interface and go "Hmm cooool, I want to use that!", then how would I know to create an instance of CLSID_ShellLink? Or more obscure, go from IObjectArray/IObjectColleciton -> CLSID_EnumerableObjectCollection?
It has to be mentioned somewhere in the docs, but where? :) thankshttp://stackoverflow.com/questions/1468803/documentation-for-implementors-of-com-interfaces/1468867#1468867Comment by TheCodeJunkie on Documentation for implementors of COM interfacesTheCodeJunkie2009-09-23T22:43:36Z2009-09-23T22:43:36ZI'm doing some manual interop declarations but far most I want to know, because I like to know how things work under the covers.. so the question remains.. taking a given com interface, how do I know which concreate classes that implementes them, so I know what to create..http://stackoverflow.com/questions/1429435/com-interface-declarations/1429463#1429463Comment by TheCodeJunkie on COM interface declarationsTheCodeJunkie2009-09-15T21:51:04Z2009-09-15T21:51:04ZI'll answer my own follow up question. The .NET interop does not support interface inheritance, thus you have to redefine the parent interface members in the child interface(s).http://stackoverflow.com/questions/1429435/com-interface-declarations/1429463#1429463Comment by TheCodeJunkie on COM interface declarationsTheCodeJunkie2009-09-15T20:40:36Z2009-09-15T20:40:36Z<quote>interfaces that inherit from other interfaces always have all the base entries in the vtable as well</quote>
Wouldn't this mean that if the order of the members in each of the interface is correct then the vtable entries for an interface, that inherits another interface, would end up correct?http://stackoverflow.com/questions/1429435/com-interface-declarations/1429463#1429463Comment by TheCodeJunkie on COM interface declarationsTheCodeJunkie2009-09-15T20:38:53Z2009-09-15T20:38:53ZSo .net doesn't pamper me with automatic mappings of the vtable entries based on names? Anyway to configure it using attributes etc? Also why wouldn't the inheritance work? Surly it would concatenate the vtables along the inheritance chain? I.e first the entries for ITaskbarList then for ITaskbarList2 and then for ITaskbarList3.. or do I only end up with the entries from the last interface in ITaskbarList3 despite the inheritance?http://stackoverflow.com/questions/472275/mef-on-mono-doesnt-work-properly/479235#479235Comment by TheCodeJunkie on MEF on Mono doesn't work properly?TheCodeJunkie2009-01-26T10:24:41Z2009-01-26T10:24:41ZI would start with the path you pass to the DirectoryPartCatalog - I only have a gutt feeling but it sure sounds like it could be a case of mono (perhaps on OSX) treating paths differently than NETFX on Windows.http://stackoverflow.com/questions/450238/to-underscore-or-to-not-to-underscore-that-is-the-question/450251#450251Comment by TheCodeJunkie on To underscore or to not to underscore, that is the questionTheCodeJunkie2009-01-16T12:35:05Z2009-01-16T12:35:05ZI've done both ways and I wanted to make up my mind, one and for all, based on knowledge :P
http://stackoverflow.com/questions/450238/to-underscore-or-to-not-to-underscore-that-is-the-question/450281#450281Comment by TheCodeJunkie on To underscore or to not to underscore, that is the questionTheCodeJunkie2009-01-16T12:34:16Z2009-01-16T12:34:16ZWell I <i>always</i> prefix with 'this' no matter if I'm accssing a field, property or method.http://stackoverflow.com/questions/450238/to-underscore-or-to-not-to-underscore-that-is-the-questionComment by TheCodeJunkie on To underscore or to not to underscore, that is the questionTheCodeJunkie2009-01-16T12:32:28Z2009-01-16T12:32:28ZWhops, yeah sorry. Mental slip-up =) Thanks for the edit Kev and to Gorpik for pointing it out as well
http://stackoverflow.com/questions/373913/setting-the-parent-of-a-usercontrol-prevents-it-from-being-transparent/373961#373961Comment by TheCodeJunkie on Setting the parent of a usercontrol prevents it from being transparentTheCodeJunkie2008-12-17T09:42:56Z2008-12-17T09:42:56ZNo I think you mean WS_EX_TRANSPARENT