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
479
2.9k
197.9k
Constructor change if I wrong and auto generate field
Mar 13 2018 3:22 PM
I want to change in constructor type od ,,izmeni,, I have Created form with name izmeni, but I am wrong and automaticly put izmeni new class...auto generate. I want to change to existing form ,,izmeni,, ...this colorised is problem...I want with
izmjeniPrijavnicuButton_Click open existing form izmeni, but app open new empty form
private
void
izmjeniPrijavnicuButton_Click(object sender, EventArgs e)
{
if
(prijava_radnikaDataGridView.SelectedRows.Count > 0)
{
izmeni dodaj =
new
izmeni
(Convert.ToInt32(prijava_radnikaDataGridView.SelectedRows[0].Cells[
"dataGridViewTextBoxColumn1"
].Value.ToString()));
dodaj.Show();
}
else
{
MessageBox.Show(
"Selektujte prijavu za izmjenu!"
,
"Greška"
,
MessageBoxButtons.OK,
MessageBoxIcon.Error,
MessageBoxDefaultButton.Button1);
}
}
Reply
Answers (
2
)
i have json file i want show the json data in list
Compiled time error in .net framework 4.6.1 ?