amrelgarhy

Stories submitted by amrelgarhy

Trick to resize transparent images(amrelgarhy.com)

submitted by amrelgarhyamrelgarhy(825) 2 years, 1 month ago

Small trick to resize transparent .gif and .png images using asp.net c# read more...

add a comment |category: |Views: 68

tags: another

Serverfault.com is in beta test (igurr.com)

submitted by amrelgarhyamrelgarhy(825) 2 years, 9 months ago

Serverfault.com is currently in private beta testing. Server Fault is for system administrators and IT professionals, people who manage or maintain computers in a professional capacity. If you are in charge of … read more...

2 comments |category: |Views: 7

tags: another

Top VB.Net to C#, C# to VB.Net TOOLS(igurr.com)

submitted by amrelgarhyamrelgarhy(825) 2 years, 10 months ago

List of VB.Net to C#, C# to VB.Net TOOLS read more...

add a comment |category: |Views: 11

tags: another

List Of ORM tools ".Net"(igurr.com)

submitted by amrelgarhyamrelgarhy(825) 2 years, 10 months ago

ORM tools ".Net" read more...

add a comment |category: |Views: 28

tags: another

List Of Top Javascript Libraries (igurr.com)

submitted by amrelgarhyamrelgarhy(825) 2 years, 10 months ago

Top Javascript Libraries read more...

add a comment |category: |Views: 8

tags: another

List Of Asp.Net Developer applications and tools(igurr.com)

submitted by amrelgarhyamrelgarhy(825) 2 years, 10 months ago

ASP.Net developers use some/all of these applications and tools read more...

add a comment |category: |Views: 12

tags: another

8 New IIS for Developers Videos(igurr.com)

submitted by amrelgarhyamrelgarhy(825) 2 years, 10 months ago

In this video series, learn about working with Microsoft Internet Information Server from the application architecture and development perspective. read more...

add a comment |category: |Views: 14

tags: another

Hint: Variables scope “Javascript” (igurr.com)

submitted by amrelgarhyamrelgarhy(825) 2 years, 11 months ago

All variables declared in a function are defined throughout the function read more...

add a comment |category: |Views: 3

tags: another

Search Anywhere inside you windows "IGurrForSearch"(igurr.com)

submitted by amrelgarhyamrelgarhy(825) 2 years, 11 months ago

IGurrForSearch is just released, it a light weight windows application to help users search the internet faster. read more...

add a comment |category: |Views: 4

tags: another

I love books "Free Programming eBooks"(igurr.com)

submitted by amrelgarhyamrelgarhy(825) 2 years, 11 months ago

The biggest collection of free programming ebooks, read more...

add a comment |category: |Views: 29

tags: another

JQuery Visual studio documentation(igurr.com)

submitted by amrelgarhyamrelgarhy(825) 2 years, 11 months ago

JQuery version 1.3.2 Visual Studio documentation is available for download read more...

1 comment |category: |Views: 295

tags: another

IGurr Shared Items(igurr.com)

submitted by amrelgarhyamrelgarhy(825) 3 years ago

Technical shared items read more...

add a comment |category: |Views: 2

tags: another

Get Millisecond difference(igurr.com)

submitted by amrelgarhyamrelgarhy(825) 3 years ago

See System.Diagnostics.Stopwatch class, intermally it uses high precision timer. read more...

add a comment |category: |Views: 14

tags: another

DrawImage(..) Method decrease the performance too much(igurr.com)

submitted by amrelgarhyamrelgarhy(825) 3 years ago

using the DrawImage Method to drow multi Images on a pictureBox control using a timer but i found that this method make the performance too bad, There is another method in .Net i can use instead read more...

add a comment |category: |Views: 16

tags: another

KeyUp event problem on a form(igurr.com)

submitted by amrelgarhyamrelgarhy(825) 3 years ago

Implement IMessageFilter: Public Class WindowsKeyFilter Implements IMessageFilter Public Event KeyDown As KeyEventHandler Public Function PreFilterMessage(ByRef m As System.Windows.Forms.Messa ge) As Boolean Implements System.Windows.Forms.IMessageFilter.PreFilterMessage Const WM_KEYDOWN = &H100 Select Case m.Msg Case WM_KEYDOWN RaiseEvent KeyDown(Me, New KeyEventArgs(m.WParam.ToInt32)) End Select End Function End Class read more...

add a comment |category: |Views: 15

tags: another

Process.Start("EXCEL.EXE", filepath)(igurr.com)

submitted by amrelgarhyamrelgarhy(825) 3 years ago

Public Sub RunExcel(ByVal filepath As String) Dim p As New Process p.StartInfo.FileName = "Excel.exe" If Not filepath.StartsWith(Chr(34)) Then filepath = Chr(34) & filepath & Chr(34) End If p.StartInfo.Arguments = filepath p.Start() End Sub read more...

add a comment |category: |Views: 16

tags: another