December 26th, 2006 at 12:33 am (General)
Hi
Today when i was searching internet to get a regular expression to Get the URL from a hyperlink classes, I found it in the site www.regexlib.com , a cool site for regular expression, it has around 1000 expressions. If you need any regular expression, just visit the site you can find it
Regards
Elam,
Comments
December 19th, 2006 at 11:44 pm (General)
Guys
This video is reallly so cool ……Â
http://www.youtube.com/watch?v=34-mz-wEHCs
Regards,
Elam
Comments
December 19th, 2006 at 11:23 pm (General)
Today when I was checking some blog  I moved my mouse cursor  over a link I saw a preview of the page.
So I checked it out and it was using Snap Preview anywhere –  It’s just a insert a java script in the code , But we need to sign up for that ..
Â
And also we have plug-in for word press; you can download the Plug-in here Â
Really this tool is too cool
Sign up - its free.
Â
Regards,
Elam
Â
Comments
December 18th, 2006 at 10:36 am (General)
Imagine you have an event handler in a file Form1.cs, e.g.
private void button1_Click( object sender, EventArgs e )
{
// … some code …
}
Deleting only this method obviously results in a compiler error as there’s a line
this.button1.Click += new System.EventHandler( this.button1_Click );
in the file Form1..Designer.cs that has to be deleted as well. To delete the event handler properly in Visual Studio 2005, using only the keyboard, perform the following steps:
- In the Form1..cs file, move the cursor on the name of the method file (i.e. Button1_Click) and press Shift-F12 (command Edit.FindAllReferences), which will bring you to the Find Symbols Results window.
- press the Cursor Down key to move to the second line showing the
occurrence of Button1_Click in the designer-generated code that
connects the event with the handler method
- press Enter to jump to the Form1..Designer.cs file
- delete the current line by pressing Ctrl-Shift-L (command Edit.LineDelete)
- jump back to the MyForm.cs by pressing Ctrl-Tab
- and finally delete the code of the event handler method.
The description of the steps may sound a bit complicated at first, but the keystrokes will come Easy on flow.
Regards,
Elam
Comments