<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/visual</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Wed, 22 May 2013 10:36:12 GMT</pubDate>
<item>
<title>(VB.NET) Get Page Source Code - nimblebits</title>
<link>http://snipplr.com/view/70724/get-page-source-code/</link>
<description><![CDATA[ <p>You can use this to get the page source code of any valid URL. Tested on VS2010.</p> ]]></description>
<pubDate>Tue, 09 Apr 2013 19:22:14 GMT</pubDate>
<guid>http://snipplr.com/view/70724/get-page-source-code/</guid>
</item>
<item>
<title>(SQL) Visual Representation of SQL Joins - hairajeshk</title>
<link>http://snipplr.com/view/70355/visual-representation-of-sql-joins/</link>
<description><![CDATA[ <p>http://www.codeproject.com/Articles/33052/Visual-Representation-of-SQL-Joins</p> ]]></description>
<pubDate>Mon, 11 Mar 2013 17:53:10 GMT</pubDate>
<guid>http://snipplr.com/view/70355/visual-representation-of-sql-joins/</guid>
</item>
<item>
<title>(VB.NET) VB.NET Method Perform Scalar - nimblebits</title>
<link>http://snipplr.com/view/68801/vbnet-method-perform-scalar/</link>
<description><![CDATA[ <p>This is a method that can be used to take a connection string and a valid oledb command and perform a scalar. This returns an Integer/Int32 value.</p> ]]></description>
<pubDate>Wed, 28 Nov 2012 21:19:37 GMT</pubDate>
<guid>http://snipplr.com/view/68801/vbnet-method-perform-scalar/</guid>
</item>
<item>
<title>(PHP) Add custom styles to visual editor Wordpress - bitsculptor</title>
<link>http://snipplr.com/view/65700/add-custom-styles-to-visual-editor-wordpress/</link>
<description><![CDATA[ <p>A little function to add custom styles to the tinymce editor in wordpress.</p> ]]></description>
<pubDate>Tue, 19 Jun 2012 08:18:05 GMT</pubDate>
<guid>http://snipplr.com/view/65700/add-custom-styles-to-visual-editor-wordpress/</guid>
</item>
<item>
<title>(AutoIt) Visual Studio Navigate Members - senpost</title>
<link>http://snipplr.com/view/55931/visual-studio-navigate-members/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 30 Jun 2011 08:03:04 GMT</pubDate>
<guid>http://snipplr.com/view/55931/visual-studio-navigate-members/</guid>
</item>
<item>
<title>(C#) Use a Visual Studio embedded resource to store binary blobs of data (like a ZIP file) - jimfred</title>
<link>http://snipplr.com/view/52866/use-a-visual-studio-embedded-resource-to-store-binary-blobs-of-data-like-a-zip-file/</link>
<description><![CDATA[ <p>Retrieve a byte array from an embedded resource.
 This function uses Assembly.GetManifestResourceStream() and Stream.Read() to read an embedded resource.
 The use of embedded resources allows the .EXE or assembly to be used as a container for data/blobs that might otherwise be stored in an external file.

Instructions:
 1) Add a file to the Visual Studio project e.g., MyData.bin, text.txt, database.mdb, final.hex etc.
 2) For that file, set its Properties / Build Action = Embedded Resource.    Other properties keep defaults (do not copy, blank tool, blank namespace).
 3) At runtime, retrieve resource using this static function.
  
 Notes:
 1) A re-build of the project includes any changes to the resource file - automatically.
  2) The resource editor isn't used and doesn't show the embedded resource.
  3) This technique can be used for 'blobs' or non-typical resources such as: Binary data, databases, information generated by external compilers/tools.
 4) To get a list of resource names during development, inspect this: System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceNames(). The resource name is the embedded file, prepended with the app name e.g., "MyApplication.MyData.bin" and the name passed to this function would be "MyData.bin" (without the app name).
 5) This function is static; can be accessed by forms, app etc.
 6) For big resources, consider using the stream rather than a byte[].
 7) resourceManager is an alternative approach to get a stream But, the resource name gets changed/mangled. ResourceManager resourceManager = new ResourceManager(assembly.GetName().Name + ".Properties.Resources", assembly); stream = resourceManager.GetStream(resourceNameArg); 
 8) A clumsy alternative to an embedded resource might involve converting data into C# code used to initialize a byte array.</p> ]]></description>
<pubDate>Mon, 02 May 2011 06:31:24 GMT</pubDate>
<guid>http://snipplr.com/view/52866/use-a-visual-studio-embedded-resource-to-store-binary-blobs-of-data-like-a-zip-file/</guid>
</item>
<item>
<title>(C#) Form helper in visual c# - tonatiuh</title>
<link>http://snipplr.com/view/49794/form-helper-in-visual-c/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 28 Feb 2011 15:29:07 GMT</pubDate>
<guid>http://snipplr.com/view/49794/form-helper-in-visual-c/</guid>
</item>
<item>
<title>(C#) HtmlString type which allow you to execute html tags - tonatiuh</title>
<link>http://snipplr.com/view/49784/htmlstring-type-which-allow-you-to-execute-html-tags/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 28 Feb 2011 06:24:58 GMT</pubDate>
<guid>http://snipplr.com/view/49784/htmlstring-type-which-allow-you-to-execute-html-tags/</guid>
</item>
<item>
<title>(C#) C# Unit Testing - Test arrays are equal - dmertl</title>
<link>http://snipplr.com/view/48045/c-unit-testing--test-arrays-are-equal/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 28 Jan 2011 13:16:44 GMT</pubDate>
<guid>http://snipplr.com/view/48045/c-unit-testing--test-arrays-are-equal/</guid>
</item>
<item>
<title>(Visual Basic) Random Password Generator - mreed72</title>
<link>http://snipplr.com/view/37969/random-password-generator/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 28 Jul 2010 05:25:06 GMT</pubDate>
<guid>http://snipplr.com/view/37969/random-password-generator/</guid>
</item>
<item>
<title>(CSS) CSS outline help for html coding - kanampo</title>
<link>http://snipplr.com/view/30770/css-outline-help-for-html-coding/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 02 Apr 2010 04:48:50 GMT</pubDate>
<guid>http://snipplr.com/view/30770/css-outline-help-for-html-coding/</guid>
</item>
<item>
<title>(Visual Basic) Tutorial 1 - Advanced Login System Tutorial Codes - Brendan_Chis</title>
<link>http://snipplr.com/view/30500/tutorial-1--advanced-login-system-tutorial-codes/</link>
<description><![CDATA[ <p>These are the codes I used in my tutorial (http://www.youtube.com/watch?v=qaOSHJo52XM)</p> ]]></description>
<pubDate>Tue, 30 Mar 2010 02:54:38 GMT</pubDate>
<guid>http://snipplr.com/view/30500/tutorial-1--advanced-login-system-tutorial-codes/</guid>
</item>
<item>
<title>(XHTML) XStandard and its (nearly) complete list of customization parameters - iroybot</title>
<link>http://snipplr.com/view/12315/xstandard-and-its-nearly-complete-list-of-customization-parameters/</link>
<description><![CDATA[ <p>You can use this as a starting point when integrating XStandard in your CMS.
There are 3 licensing options for XStandard: free Lite Version, Open Source CMS Partner License &amp; Pro Version. (btw: XStandard produces 100% valid markup against XHTML 1.1 Specification)</p> ]]></description>
<pubDate>Tue, 17 Feb 2009 16:30:34 GMT</pubDate>
<guid>http://snipplr.com/view/12315/xstandard-and-its-nearly-complete-list-of-customization-parameters/</guid>
</item>
<item>
<title>(C++) Visual Studio debug tools to detect and debug memory leaks by setting a breakpoint on a particular memory allocation. - jimfred</title>
<link>http://snipplr.com/view/9697/visual-studio-debug-tools-to-detect-and-debug-memory-leaks-by-setting-a-breakpoint-on-a-particular-memory-allocation/</link>
<description><![CDATA[ <p>The Visual Studio output window will display "Detected memory leaks!" with a memory allocation number, for example, {145}. See Memory Leak Detection Enabling.

Using the debugger (without changing code) see: http://msdn.microsoft.com/en-us/library/w2fhc9a3%28VS.80%29.aspx</p> ]]></description>
<pubDate>Wed, 12 Nov 2008 16:23:41 GMT</pubDate>
<guid>http://snipplr.com/view/9697/visual-studio-debug-tools-to-detect-and-debug-memory-leaks-by-setting-a-breakpoint-on-a-particular-memory-allocation/</guid>
</item>
<item>
<title>(Visual Basic) Message Box Pop up - jgarite</title>
<link>http://snipplr.com/view/4322/message-box-pop-up/</link>
<description><![CDATA[ <p>Just thought beginners might want this, its simple enough to not realize it...yes that was me :\</p> ]]></description>
<pubDate>Thu, 13 Dec 2007 12:11:53 GMT</pubDate>
<guid>http://snipplr.com/view/4322/message-box-pop-up/</guid>
</item>
</channel>
</rss>