This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Drawing; | |
using System.Windows.Forms; | |
public partial class browserwrapper : System.Windows.Forms.WebBrowser | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
FOR /D /R %%X IN (debug,release,bin,obj,ipch) DO RD /S /Q "%%X" | |
del /S /F /AH *.suo | |
del /S /F *.user | |
del /S /F *.ncb | |
del /S /F *.sbr | |
del /S /F *.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.ComponentModel; | |
using System.Xml.Schema; | |
using System.Xml.Serialization; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.IO; | |
namespace XmlFile | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string newValue = System.Text.RegularExpressions.Regex.Replace(oldValue, "[^.0-9]", ""); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace eventpattern { | |
public delegate void AllPropertiesDetailsParsedEventHandler(object sender, AllPropertiesDetailsParsedEventArgs e); | |
public class AllPropertiesDetailsParsedEventArgs : EventArgs | |
{ | |
} | |
public partial class Controller | |
{ | |
public event AllPropertiesDetailsParsedEventHandler AllPropertiesDetailsParsed; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Select a range of cells to format ... | |
Click Conditional Formatting - Click New Rule | |
For the rule, enter this ... | |
=MOD(ROW(),2)=1 | |
Click the format button and select your formatting. | |
Click OK twice and there you go! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.borders { | |
-webkit-box-shadow: 0px 1px 3px #666666; | |
-moz-box-shadow: 0px 1px 3px #666666; | |
box-shadow: 0px 1px 3px #666666; | |
-webkit-border-radius: 10; | |
-moz-border-radius: 10; | |
border-radius: 10px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container1"></div> | |
<div class="container2 zigzag"></div> | |
<div class="container3 zigzag"></div> | |
<div class="container4 zigzag"></div> | |
/* Zig-Zag Border | |
Credit to http://bradsknutson.com/blog/css-zig-zag-border/ | |
*/ | |
.container1 { | |
width: 100%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* You can remove the above opening php tag | |
when pasting this code inside your | |
functions.php file. | |
*/ | |
/* The following code adds your custom stylesheet | |
to the wordpress login screen, allowing you to | |
customize the background, colors and fonts of the | |
page to match your custom theme. |
OlderNewer