Go Back  Xtreme Visual Basic Talk > Legacy Visual Basic (VB 4/5/6) > Database and Reporting > Combobox help read data


Reply
 
Thread Tools Display Modes
  #1  
Old 07-05-2002, 12:43 PM
ssalomon
Guest
 
Posts: n/a
Default Combobox help read data


Hi

I use this code to call data into combobox
I use 4 combobox and read from Table1 / Table2 3 and 4

Is it poseble to chance this code so I only need to write only 1

and call combofill ??? to read from difrent table and record?

Dim Rcordset As ADODB.Recordset


Set Rcordset = New ADODB.Recordset
strSQL = "SELECT * FROM starfsmenn;"
Rcordset.Open strSQL, conTree, adOpenStatic, adLockOptimistic

With Rcordset 'Either ADO or DAO
Do While Not .EOF
txtdeild.AddItem Rcordset.Fields("deildir").Value 'String varible
txtdeild.ItemData(txtdeild.NewIndex) = .Fields("ID").Value 'Numeric varible
.MoveNext
Loop
End With
Reply With Quote
  #2  
Old 07-05-2002, 01:04 PM
Thinker Thinker is offline
Iron-Fisted Programmer

Retired Moderator
* Guru *
 
Join Date: Jul 2001
Location: Fayetteville Arkansas USA
Posts: 18,127
Default

I don't really understand the question. Are you asking if this
code can be done to work with any of four combobox controls?
__________________
Posting Guidelines
Reply With Quote
  #3  
Old 07-05-2002, 05:35 PM
ssalomon
Guest
 
Posts: n/a
Default

Hi

Yes I wana tray to usit in four combobox controls

I combo1 I will call from starfsmenn
strSQL = "SELECT * FROM starfsmenn;"

and Combo2
strSQL = "SELECT * FROM Conto;"

If is som way to usit in

'' Public Function Call_combo_data

and wnen I usit

I vill do ? Combofill 'Selectfrom' 'pun_into_combo?' .additemFields("Mynnisatriği")


som like this is it poseble or what way is best so I dont need to wrate same code into all four combo only call som Public Function
Reply With Quote
  #4  
Old 07-07-2002, 10:48 AM
Thinker Thinker is offline
Iron-Fisted Programmer

Retired Moderator
* Guru *
 
Join Date: Jul 2001
Location: Fayetteville Arkansas USA
Posts: 18,127
Default

What you would have to do is actually pass the combobox itself
to the Call_combo_data function.
Public Sub Call_combo_data(TheCombobox As VB.ComboBox, _
strSQL As String)
Then you can use TheCombobox.AddItem
__________________
Posting Guidelines
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->