New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of ie
• 4-Starred Ladybug Of Doom 83994646 
• 7 Colored Fish 23771716 
• 7 Completed 86198326 
• Abyss Flower 40387124 
• Acid Crawler 77568553 
• Acid Trap Hole 41356845 
• Air Marmot of Nefa 75889523 
• Akakieisu 38035986 
• Akihiron 36904469 
• Alinsection 70924884 
by cris   July 16, 2010 @ 8:14pm
61 Views
no comments
 
 
 
1 Card 1 301D0250 0063
2 Card 2 301D0251 0063
3 Card 3 301D0252 0063
4 Card 4 301D0253 0063
5 Card 5 301D0254 0063
6 Card 6 301D0255 0063
7 Card 7 301D0256 0063
8 Card 8 301D0257 0063
by cris   July 16, 2010 @ 8:11pm
20 Views
no comments
 
<Page
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Jerry Nixon">
  <Page.Resources>
 
   <Style TargetType="Border" x:Key="BorderStyle">
   
      <!-- Outer Border Style -->
      <Setter Property="Opacity" Value=".5" />
by Jerry Nixon   June 30, 2010 @ 10:06pm
237 Views
no comments
 
C#
public static PerpetualEnumerator<T> GetPerpetualEnumerator<T>(this IEnumerable<T> items)
{
    return new PerpetualEnumerator<T>(items);
}
51 Views
no comments
 
C#
using System.Collections;
using System.Collections.Generic;
 
namespace nl4net
{
    /// <summary>
    /// Wraps a standard IEnumerator&lt;T&gt; to provide
    /// iteration over a generic collection that automatically 
    /// resets to the beginning once it reaches the end.
    /// </summary>
by Al Gonzalez   June 17, 2010 @ 9:08pm
35 Views
no comments
 
C++
#ifndef DATABASE_HPP
#define DATABASE_HPP
 
#include <QObject>
#include <QHash>
#include <QSet>
#include <QStack>
 
class GeoObject;
by mageta   June 17, 2010 @ 1:07pm
40 Views
no comments
 
C#
private static bool AttemptInsertUniqueItem<T>(T item, Action<T> insert)
{
    bool success = false;
 
    try
    {
        insert(item);
        success = true;
    }
    catch (SqlException sqlEx)
by Jon Sagara   May 26, 2010 @ 11:20pm
62 Views
no comments
 
http://uploading.com/files/c9397337/fr.ps.wluv.2010.R5rip.V2.iCopy.mkv.001/
http://uploading.com/files/5125422m/fr.ps.wluv.2010.R5rip.V2.iCopy.mkv.002/
http://uploading.com/files/f9mff536/fr.ps.wluv.2010.R5rip.V2.iCopy.mkv.003/
 
http://www.imdb.com/title/tt1179034/
 
[FORMAT]:…………………..[ Matroska
[GENRE]:……………………[ Action | Crime | Thriller
[FILE SIZE]:………………..[ 300 MB
[NO OF CDs]:………………..[ 1
by iomega   May 19, 2010 @ 5:09am
Tags: movies
36 Views
no comments
 
C#
/// <summary>
/// Implements a projection strategy that select an "identity" property from an object 
/// and uses the default comparer to implement IEqualityComparer<typeparamref name="T"/>
/// </summary>
/// <typeparam name="T">Type of object to extract identity from</typeparam>
/// <typeparam name="TRet">Type of the extracted identity value</typeparam>
public class IdentityProjectionEqualityComparer<T, TRet> : IEqualityComparer<T> where TRet : IComparable<TRet>
{
    private readonly Func<T, TRet> _projector;
    private readonly IEqualityComparer<TRet> _comparer;
by Marc Brooks   May 18, 2010 @ 2:26pm
176 Views
2 comments
 
<html>
<head>
    <title>Css Test</title>
</head>
<body>
    <div style="margin-left: 50px; float: left;">
        <label for="text">
            Label</label><br />
        <input type="text" />
    </div>
by Andrea Balducci   May 11, 2010 @ 3:43am
Tags: css, ie
62 Views
no comments
 
C#
namespace Nowcom.Quicksilver
{
    using System;
    using System.Reflection;
    using System.Windows;
    using System.Collections.Generic;
    using System.ComponentModel.Composition;
 
    [Export]
    public class ViewContainer 
by Robert Kozak   April 07, 2010 @ 4:25pm
188 Views
no comments
 
//Document Ready
$(document).ready(function() {
 
});
 
//Add ie6 class
if ($.browser.msie && $.browser.version == "6.0") $('body').addClass("ie6");
 
 
//Jquery loaded check
by Arjan   April 03, 2010 @ 4:19am
50 Views
no comments
 
C#
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Windows.Data;
 
namespace VMLocatorSample.ViewModels
{
    public class ViewModelLocator
by Bobby Diaz   March 31, 2010 @ 8:44am
277 Views
no comments
 
public class BinaryTree
{
    private BinaryTree start, left, right;
    private int data;
    
    public BinaryTree ()
    {
        while(true)break; //Do nothing.
    }
    
by Angad   March 31, 2010 @ 5:29am
36 Views
no comments
 
C#
 
/*

Author: Mohammad Azam 
http://www.highoncoding.com 

This is a much better version than I demonstrated in the screencast! 

*/
by Mohammad Azam   March 29, 2010 @ 11:51am
225 Views
no comments
 
C#
private void dataGridViewOrders_SelectionChanged(object sender, EventArgs e)
{
    dataGridViewOrderDetails.DataSource = null;
    if (dataGridViewOrders.SelectedRows.Count == 0) return;
 
    DataGridViewRow row = dataGridViewOrders.SelectedRows[0];
    if (row == null) return;
 
    int orderId = int.Parse(row.Cells["OrderId"].Value.ToString());
by dereklawless   February 12, 2010 @ 9:43pm
36 Views
no comments
 
C#
private void treeViewCustomer_MouseUp(object sender, MouseEventArgs e)
{
    if (e.Button == MouseButtons.Right)
    {
        treeViewCustomer.SelectedNode =
            treeViewCustomer.GetNodeAt(e.Location);
 
        contextMenuStripCustomer.Show((Control)sender, e.Location);
    }
}
by dereklawless   February 12, 2010 @ 9:41pm
Tags: TreeView
36 Views
no comments
 
 /*database name here*/
 $database = '';
 /*host name for MySQL*/
 $hostname = 'localhost';
 /*user name for MySQL*/
 $username = '';
 /*password for MySQL*/
 $password = '';
 
 //Get the h3fileid
by CodeMonkey76   February 10, 2010 @ 10:58pm
61 Views
no comments
 
<h3 style="text-align:center;"><?=_l('Amount Due');?> <?=dollar($payment['outstanding']);?></h3>
                        <?=_l('
                    <strong>Maak Overboekingen over aan:</strong><br />
                    Company name<br />
                    Rekening nr: your.bank.number<br /><br />
                    <strong>Indien u vragen heeft aangaande deze factuur, bel:</strong><br />
                    your name, phone number<br /><br />
                    <strong>Dank u wel voor het zaken doen met Company name!</strong>
');?> <br><br>
                        
by Ruben-RY   January 29, 2010 @ 5:02am
94 Views
no comments
 
http://d01.megashares.com/dl/08a6442/lap-storm.avi
or
http://hotfile.com/dl/25411796/8e6c1bf/Storm.2009.DVDRip.XviD-LAP.part1.rar.html
http://hotfile.com/dl/25411892/aa0fd02/Storm.2009.DVDRip.XviD-LAP.part2.rar.html
http://hotfile.com/dl/25412054/5391f06/Storm.2009.DVDRip.XviD-LAP.part3.rar.html
http://hotfile.com/dl/25412196/3d9f05c/Storm.2009.DVDRip.XviD-LAP.part4.rar.html
or
http://rapidshare.com/files/339603211/Storm.2009.DVDRip.XviD-LAP.part1.rar
http://rapidshare.com/files/339603419/Storm.2009.DVDRip.XviD-LAP.part2.rar
http://rapidshare.com/files/339603485/Storm.2009.DVDRip.XviD-LAP.part3.rar
by RomaniaBV   January 23, 2010 @ 5:18am
Tags: Movie
83 Views
no comments
 
http://d01.megashares.com/dl/a6c1a0f/the.informant.2009.bdrip.xvid-imbt-cd1.avi
http://d01.megashares.com/dl/2990c0a/the.informant.2009.bdrip.xvid-imbt-cd2.avi
or
http://www.superfastfile.com/xarwcaw3tg2x/the.informant.2009.bdrip.xvid-imbt-cd1.avi
http://www.superfastfile.com/pxhzhw896cw6/the.informant.2009.bdrip.xvid-imbt-cd2.avi
or
http://x7.to/0akmkl/the.informant.2009.bdrip.xvid-imbt-cd2.avi
http://x7.to/b6fo96/the.informant.2009.bdrip.xvid-imbt-cd1.avi
or
http://depositfiles.com/en/files/gl3mgvt07
by RomaniaBV   January 23, 2010 @ 4:41am
Tags: Movie
118 Views
no comments
 
http://www.superfastfile.com/odxq9lut63on/Alvin.and.the.Chipmunks.The.Squeakquel.REPACK.R5.LINE-D3M0NZ.avi
or
http://www.storage.to/get/0v1noLfv/Alvin.and.the.Chipmunks.The.Squeakquel.REPACK.R5.LINE-D3M0NZ.avi
or
http://vip-file.com/download/1676.133e214e385724cba47a1fda8f/Alvin.and.the.Chipmunks.The.Squeakquel.REPACK.avi.html
or
http://d01.megashares.com/dl/452e3a6/d3m-ach2r5r-xvid.avi
or
http://ugotfile.com/file/783788/Alvin.and.the.Chipmunks.The.Squeakquel.2009.R5.XviD.part1.rar
http://ugotfile.com/file/783789/Alvin.and.the.Chipmunks.The.Squeakquel.2009.R5.XviD.part2.rar
by RomaniaBV   January 23, 2010 @ 3:45am
Tags: Movie
192 Views
no comments
 
http://d01.megashares.com/dl/ee23349/nedivx-lovehappens-cd1.avi
http://d01.megashares.com/dl/f26c8ae/nedivx-lovehappens-cd2.avi
or
http://x7.to/tadbvb
http://x7.to/qyrr6v
or
http://uploading.com/files/5cb9me49/Love.Happens.DVDRip.XviD-NeDiVx.cd1.avi/
http://uploading.com/files/a6135c6m/Love.Happens.DVDRip.XviD-NeDiVx.cd2.avi/
or
http://www.storage.to/get/cHT2GOFZ/nedivx-lovehappens-cd1.avi
by RomaniaBV   January 20, 2010 @ 5:09am
Tags: Movie
175 Views
no comments
 
C#
public partial class _Default : System.Web.UI.Page
{
    private bool mInserted = false;
 
    protected void Page_Load(object sender, EventArgs e) {
        mInserted = false;
    }
    protected void ASPxGridView1_CustomJSProperties(object sender, ASPxGridViewClientJSPropertiesEventArgs e) {
        e.Properties["cpIsInserted"] = mInserted.ToString();
    }
by Mehul Harry   January 08, 2010 @ 4:08pm
205 Views
no comments
 
    <dxwgv:ASPxGridView ID="ASPxGridView1" runat="server" AutoGenerateColumns="False"
        DataSourceID="AccessDataSource1" KeyFieldName="CategoryID" 
        OnCustomJSProperties="ASPxGridView1_CustomJSProperties" 
        onrowinserted="ASPxGridView1_RowInserted">
        <ClientSideEvents EndCallback="function(s, e) {
    if (s.cpIsInserted == 'True') alert('Inserted!');
}" />
by Mehul Harry   January 08, 2010 @ 4:07pm
350 Views
no comments
 
brought to you by:
West Wind Techologies


If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate