Search results for query: *

  • Users: Olgun
  • Order by date
  1. Olgun

    Listbox TopIndex

    And with AutoPostBack = True
  2. Olgun

    Listbox TopIndex

    I found a solution like this, now i dont need TopIndex, thank you.. ListBox6.SelectedIndex = ListBox7.SelectedIndex ListBox8.SelectedIndex = ListBox7.SelectedIndex ListBox9.SelectedIndex = ListBox7.SelectedIndex ListBox10.SelectedIndex = ListBox7.SelectedIndex...
  3. Olgun

    Listbox TopIndex

    Hello everyone, I am using some listboxes in my vb.net program but i need a solution like listbox topindex. I learned that it is not available for some times. I have many items in my list boxes and when i choosed any of them i want to see all corresponding items in each listbox easily... Any...
  4. Olgun

    Combining multiple sql tables into one

    You are right, please disregard my wrong sentences since English is not my first language:)
  5. Olgun

    Combining multiple sql tables into one

    Ok, I found another solution, please dont take into account...
  6. Olgun

    Combining multiple sql tables into one

    Ok, thank you for reply, those links are really so usefull. Now i can execute .sql file from a button. Now i need to change the table name in .sql file within vb.net. Is it possible?
  7. Olgun

    Combining multiple sql tables into one

    I have one more question please. Is it possible to execute this query in button clic
  8. Olgun

    Combining multiple sql tables into one

    Thank you jmcilhinney, I used varchar instead of text, then problem is ok... Regards
  9. Olgun

    Combining multiple sql tables into one

    Thank you, but i am getting this error The data type text cannot be used as an operand to the UNION, INTERSECT or EXCEPT operators because it is not comparable.
  10. Olgun

    Combining multiple sql tables into one

    I created this query It worked succesfully, but dbo didnot change... SELECT * FROM maintable AS f INNER JOIN table1 AS a ON a.IDNo = f.IDNo INNER JOIN table2 AS b ON b.IDNo = f.IDNo INNER JOIN table3 AS c ON c.IDNo = f.IDNo INNER JOIN table4 AS d ON d.IDNo = f.IDNo
  11. Olgun

    Combining multiple sql tables into one

    I have an sql database with multiple tables. I am using all of them in a vb.net program. All of them has the same field names. But i want one of them to have whole data which the other 4 tables have. Any suggestions please...
Back
Top