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
Mfwamba Tshimanga
NA
155
46k
Actualize a reportview on run time
Feb 9 2015 8:42 AM
Hi!
With these code I can actualize my datagrid.
conn.Open();
OleDbCommand cmd = conn.CreateCommand();
cmd.CommandType = CommandType.Text;
cmd.CommandText = "select [date],[name] from 1";
cmd.ExecuteNonQuery();
DataTable dt = new DataTable();
OleDbDataAdapter da = new OleDbDataAdapter(cmd);
da.Fill(dt);
conn.Close();
dgvPorData
.DataSource = dt;
Then I am asking question how can I actualize
on time
a reportview on my form. In other word if I update one data (or some datas) on the same form. How can actulize on
run time
.
Reply
Answers (
2
)
How to change color of gridview row?
Ms Access online....