Tag: code

Asp.net GridView example using C#

Below is a sample code snippet for Asp.net GridView example using C#. The code snippet shows how to populate the GridView with a List of Employees. Asp.net GridView example using C# ASP.NET WebForms <asp:GridView ID=”GridView1″ runat=”server”> </asp:GridView> C# protected void Page_Load(object sender, EventArgs e) { List<Employee> employees = new List<Employee>(); employees.Add(new Employee { Name = “Test1”, Designtaion = “Software Engineer” }); employees.Add(new Employee { Name…

Tools to Convert Java to C# Source Code

There are times when a developer would have done a project using Java and would want to reuse some of the data classes or business logic to C# for developing application on different platform. Tools to Convert Java to C# Source Code Below are some of the tools that can be used to convert the code from Java to C# . Sharpen This is a…

PHP Code Refactoring Tools

Here’s a list of some of the Refactoring tools for the PHP developers. PHP Code Refactoring ToolsRephactor – Rephactor is a command line refactoring tool for php5. It is an automated tool that provides the developers an easy way to make changes to the sources in different codebases. Scisr– Scisr is one of the simple refactor tool for Php developers. Scisr is written in PHP….

How to hide the status bar in Microsoft Excel with the VBA Code?

Do you want to hide the status bar in Microsoft Excel ?. You can use the VBA code to do it quickly. How to hide the status bar in Microsoft Excel with the VBA Code? 1. Open the excel workbook in Microsoft Excel 2016 and press the keyboard shortcut key “Alt + F11” to open the Microsoft Visual Basic for Applications window. 2. Click the…