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
krishnaraj s
NA
4
7.6k
Datagrid view control
Sep 13 2012 2:42 AM
Hi,
i am developing vb.net2010 application.my application share market based application.my question,i am using datagrid view control 4 row and 3 col ( stockname,price,select) last col add buttons.i need button click automatic values updated every second pls help me.
my code :
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Dim metaRTOpen As New Threading.Thread(AddressOf OpenData)
metaRTOpen.Priority = Threading.ThreadPriority.Highest
metaRTOpen.Start()
End Sub
Private Sub DGridStock_CellClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DGridStock.CellClick
If e.ColumnIndex = 2 Then
x = DGridStock.CurrentCellAddress.Y
y = DGridStock.CurrentCellAddress.X
DGridStock.Rows(x).Cells(y - 1).Value = ComboBox1.Text
DGridStock.Rows(x).Cells(y).Style.ForeColor = Color.Green
DGridStock.Rows(x).Cells(y).Style.BackColor = Color.Red
Symbol = ComboBox1.Text
Timer1.Start()
End If
End Sub
Reply
Answers (
0
)
Threading Problem in Vb.net