Electricity Billing System Software Using C#

preview_player
Показать описание
Hello viewers, in this video you will learn how to create electricity billing system software using C# Don't forget to connect with sql server, and create tables. If you face any error please let me know in the comment section. Thank you for watching :)

Don't forget to Like & Subscribe

How to Search Data Using C# in DataGridView

Don't forget to Like & Subscribe

#Electricity Billing System Software Using C# & SQL
#ElectricityBillingSystemSoftware #System
Рекомендации по теме
Комментарии
Автор

this error ---->
'A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider,

in the code
void BindData()
{
SqlCommand cnn = new SqlCommand("select * from Table1", con);

SqlDataAdapter da = new SqlDataAdapter(cnn);

DataTable table = new DataTable();

da.Fill(table);

dataGridView1.DataSource = table;
}


what to do, sir, kindly help

twoorchid