TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Goran Bibic
482
2.9k
197.1k
Auto create image inside button from sql table and dimensio?
Apr 6 2018 9:05 AM
Create
private
void
Form1_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'bssDataSet.roba_usluge' table. You can move, or remove it, as needed.
this
.roba_uslugeTableAdapter.Fill(
this
.bssDataSet.roba_usluge);
SqlConnection con =
new
SqlConnection(
"Data Source=.\\SQLEXPRESS;Initial Catalog=bss;Integrated Security=True"
);
SqlCommand cmd =
new
SqlCommand(
"SELECT Concat(ime, cijena_sa_porezom) FROM roba_usluge"
, con);
// Getting all the data to ItemTable
var da =
new
SqlDataAdapter(cmd);
var ItemTable =
new
DataTable();
da.Fill(ItemTable);
con.Open();
Int32 count = ItemTable.Rows.Count;
con.Close();
int
top = 50;
int
left = 50;
for
(
int
i = 1; i <= count; i++)
// for (int i = 0; i < count; i++)
{
Button button =
new
Button();
button.Left = left;
button.Top = top;
button.Text = ItemTable.Rows[i-1][0].ToString();
// button.Text = ItemTable.Rows[i][0].ToString();
this
.Controls.Add(button);
if
(i % 5 == 0)
{
left = 50;
top += button.Height + 2;
}
else
{
left += button.Width + 2;
}
// top += button.Height + 2;
}
}
Reply
Answers (
5
)
browser showing "the connection timeout " during preview
Deleting records from two tables using INNER JOIN delete