Skip to main content

stefan stoichev's Library tagged asp.net   View Popular, Search in Google

Apr
3
2009

Are you searching for webcasts to learn about Microsoft Silverlight 2.0 ? well then, here is a good news for you all.Mike Taulty recently uploaded and amazing collection of Silverlight 2.0 screencasts on how Silverlight works, controls, File IO, networking, UI design, data-binding, interacting with HTML pages, and more.if you want to have a good start on Silverlight, then go get them!. it will help you for sure.

asp.net silverlight 2.0 videos

in list: C# and VB .net Programing

Sep
2
2008

DotNetZip is a small, easy-to-use class library for manipulating .zip files. It can enable .NET applications written in VB.NET, C#, any .NET language, to easily create, read, and update zip files. It supports these kinds of scenarios:
- creating a zip archive, adding files or directories into the archive
- extracting files from an existing archive
- modifying an existing archive - removing entries from an archive or adding new entries to an archive
- password protecting entries in the archive
- getting entry input from a file or a stream
- reading a zip file from a file or a stream
- extracting an entry into a file or a stream

asp asp.net c# zip dotnetzip archive

in list: C# and VB .net Programing

Aug
25
2008

In the previous article, 30 Common String Operations in C# and VB.NET – Part I, we explored 15 common String operations while working with the String class. In Part II of the article, we will continue with the series and cover 15 more.

asp asp.net c# string operators

in list: C# and VB .net Programing

In this article, I have compiled some common String operations that we encounter while working with the String class. In Part I, I have covered 15 common string operations. In the next article, I will continue this article and cover 15 more.

asp asp.net c# string operators

in list: C# and VB .net Programing

Jul
17
2008

  • public partial class frmMain : Form
    {
    private gma.System.Windows.UserActivityHook actHook;
    private bool bCtrl = false;
    private bool bAlt = false;

    private void frmMain_Load(object sender, EventArgs e)
    {
    actHook = new gma.System.Windows.UserActivityHook(false, true);

    actHook.KeyDown += new KeyEventHandler(actHook_KeyDown);
    actHook.KeyUp += new KeyEventHandler(actHook_KeyUp);
    }

    void actHook_KeyUp(object sender, KeyEventArgs e)
    {
    if (e.KeyCode == Keys.LControlKey || e.KeyCode == Keys.RControlKey)
    {
    bCtrl = false;
    }
    if (e.KeyCode == Keys.LMenu || e.KeyCode == Keys.RMenu)
    {
    bAlt = false;
    }
    }

    void actHook_KeyDown(object sender, KeyEventArgs e)
    {
    if (e.KeyCode == Keys.LControlKey || e.KeyCode == Keys.RControlKey)
    {
    bCtrl = true;
    }
    if (e.KeyCode == Keys.LMenu || e.KeyCode == Keys.RMenu)
    {
    bAlt = true;
    }
    if (e.KeyCode == Keys.D1 && bAlt && bCtrl)
    {
    // Handle "ctrl + alt + 1" here
    }
    }
    }
1 - 20 of 38 Next ›
Showing 20 items per page

Highlighter, Sticky notes, Tagging, Groups and Network: integrated suite dramatically boosting research productivity. Learn more »

Join Diigo
Move to top