Search results for query: *

  1. M

    Question Displaying SQL search results in Textbox

    Hello, Could someone help me to display the result of a search in textbox? I have a table ("TBClient"), with two columns "Company" and "Name". My form has a combox to select the name of a column, and a textbox to write what i'm looking for. Below this, i have a textbox to display the result...
  2. M

    Question Searching in 3 tables ?

    Hello Herman, Thanks for your information! Now I understand the logic I add a foreign key in other two tables ("FK_IDClient"). My primary key from TBClient is "PK_IDClient". I developed the following code to search just on TBClient: Dim strSearch As String = txtPesquisa.Text 'My text box If...
  3. M

    Question Searching in 3 tables ?

    Hello, I'm trying to develop an application in VB.net, for search informations in 3 tables (TBClient with 3 columns "Company", "Address" and "Fone", TBContact with 2 columns "Name" and "Email" and TBContract with 2 columns "ContractNumber" and "Date"). I'm using a combo box (for select the...
  4. M

    Question TreeView and TabControlPanel

    Yes, It's a regular TabControl. I trying my code getting the index of the node and Works very well! Thanks for help and sorry about my poor english!!
  5. M

    Question TreeView and TabControlPanel

    Hello, I'm a beginner on VB.net, and I have a form with a Treeview on left side (3 nodes), and a TabControlPanel on right side (3 tabs). My question is, how can I select the tab using the nodes. For example: I need select the node0 and show the tab1, select the node1 and show the Tab2...
Back
Top