Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
te rog pentru a simplifica lucrurile, ... poti face acest lucru cu o baza de date din Acces?Multumesc anticipat!
thank you very much!!!!!!
You're welcome. Thank you !
@@foxlearn Sorry it doesn't work for me Could you Show me in other way or more clear way??? thanks more .Am Waiting your great legend code....
if i use this method to show selected rows... what modification would i do ?
please reply fast . TY
can i do the same using MYSQL,? because i have some errors logging in SQL SERVER..!!
Hi, Yes you can do the same with mysql. thanks
if table 1500 columns ********** SqlConnection cn = new SqlConnection(); SqlCommand cmd = new SqlCommand(); SqlDataReader dr; public NastrGrid() { InitializeComponent(); } private void loaddata () { cmd.CommandText = "Select column_name FROM information_schema.columns WHERE table_name= 'You table' ORDER BY ordinal_position"; cn.Open(); dr = cmd.ExecuteReader(); if (dr.HasRows) { while (dr.Read()) { checkedListBox1.Items.Add(dr[0].ToString()); } dr.Close(); cn.Close(); } }
te rog pentru a simplifica lucrurile, ... poti face acest lucru cu o baza de date din Acces?
Multumesc anticipat!
thank you very much!!!!!!
You're welcome. Thank you !
@@foxlearn Sorry it doesn't work for me Could you Show me in other way or more clear way??? thanks more .Am Waiting your great legend code....
if i use this method to show selected rows... what modification would i do ?
please reply fast . TY
can i do the same using MYSQL,? because i have some errors logging in SQL SERVER..!!
Hi, Yes you can do the same with mysql. thanks
if table 1500 columns
**********
SqlConnection cn = new SqlConnection();
SqlCommand cmd = new SqlCommand();
SqlDataReader dr;
public NastrGrid()
{
InitializeComponent();
}
private void loaddata ()
{
cmd.CommandText = "Select column_name FROM information_schema.columns WHERE table_name= 'You table' ORDER BY ordinal_position";
cn.Open();
dr = cmd.ExecuteReader();
if (dr.HasRows)
{
while (dr.Read())
{
checkedListBox1.Items.Add(dr[0].ToString());
}
dr.Close();
cn.Close();
}
}