Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by kbalaji

  1. kbalaji

    Dynamic tab ordering

    You can use the text box leave event and set the focus to the button in there. E.g., Private Sub TextBox1_Leave(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox1.Leave Button1.Focus() End Sub
  2. kbalaji

    Populate Listbox from Dataview

    I have used datarow and iterated through the rows and populated the listbox. I tried this method below and works fine for me. This might not be the most efficient method, but it works Private Sub loadListbox(ByVal selectString As String) oConn.Open() oQuery = "Select *...
  3. kbalaji

    Kill application?

    Is it possible to kill an application from a different machine on the network, if so how can it be done using VB.NET? E.g, I have an application running in one machine when the user logs into another machine and starts this app it should automatically kill the previous application running in...

Part and Inventory Search

Back
Top