Post Tagged with: "coding"

Gyp ERR! Stack Error: Could Not Find Any Visual Studio Installation To Use
Visual C# (.NET)

Gyp ERR! Stack Error: Could Not Find Any Visual Studio Installation To Use

If you get error something like at below you should use the Visual Studio Installer to get the Desktop development with C++ workload in one of the Visual Studio versions you have installed in your machine. When […]

Make Uppercase or Lowercase at Microsoft Visual Studio C#
Visual C# (.NET)

Make Uppercase or Lowercase at Microsoft Visual Studio C#

These are shortcuts of making uppercase or lowercase in the editor of Microsoft Visual Studio. Keyboard: CTRL + SHIFT + U (upper); CTRL + U (lower) Menu: Edit -> Advanced […]

system.web.httpexception: The GridView ‘NameOfGridView’ fired event RowDeleting which wasn’t handled
Visual C# (.NET)

system.web.httpexception: The GridView ‘NameOfGridView’ fired event RowDeleting which wasn’t handled

If you get the “system.web.httpexception: The GridView ‘NameOfGridView’ fired event RowDeleting which wasn’t handled” error: If you have a DELETE button, or whatever button which “CommandName“s property is “DELETE” in […]

C# ASP.NET DataGridView’i Temizlemek (Clear)
Visual C# (.NET)

C# ASP.NET DataGridView’i Temizlemek (Clear)

Merhaba arkadaşlar, C# ASP.NET projelerinizde DataGridView’i temizlemek için kullanabileceğiniz yöntemler tüm detaylarıyla aşağıdaki gibidir: 1) Aşağıdaki gibi satırları silebilirsiniz.*(1) 2) Aşağıdaki gibi DataTable’yi komple silebilirsiniz.*(2) 3) public void FillGrid(){…} tarzında […]