Click here to Skip to main content
15,899,754 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Crystal Reports Problem Pin
fizzer6662-Jul-04 4:04
fizzer6662-Jul-04 4:04 
GeneralRe: Crystal Reports Problem [EDITED] Pin
Dave Kreskowiak2-Jul-04 4:15
mveDave Kreskowiak2-Jul-04 4:15 
GeneralRe: Crystal Reports Problem [EDITED] Pin
fizzer6662-Jul-04 4:54
fizzer6662-Jul-04 4:54 
GeneralRe: Crystal Reports Problem [EDITED] Pin
fizzer6665-Jul-04 4:13
fizzer6665-Jul-04 4:13 
GeneralRead the decibel from a mic. Pin
sybux20001-Jul-04 1:36
sybux20001-Jul-04 1:36 
GeneralRe: Read the decibel from a mic. Pin
Dave Kreskowiak1-Jul-04 4:02
mveDave Kreskowiak1-Jul-04 4:02 
QuestionHow to fill the list of one combo box to another combo box? Pin
Ravi S.V.30-Jun-04 21:08
Ravi S.V.30-Jun-04 21:08 
AnswerRe: How to fill the list of one combo box to another combo box? Pin
Dave Kreskowiak1-Jul-04 4:15
mveDave Kreskowiak1-Jul-04 4:15 
The easiest way to do it would be to copy the items, one at a time, from one combobox to the other.
Dim index As Integer
ComboBox2.Items.Clear()
For Index = 0 To ComboBox1.Items.Count() - 1
    ComboBox2.Items.Add( ComboBox1.Items(Index) )
Next


Or you could bind the Items collection of one Combobox to the other.
ComboBox2.DataBindings.Add(New _
     Binding("Items", ComboBox1.Items, "")



RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

GeneralRe: How to fill the list of one combo box to another combo box? Pin
beowulfagate1-Jul-04 20:18
beowulfagate1-Jul-04 20:18 
GeneralRe: How to fill the list of one combo box to another combo box? Pin
Ravi S.V.1-Jul-04 21:11
Ravi S.V.1-Jul-04 21:11 
GeneralRe: How to fill the list of one combo box to another combo box? Pin
Dave Kreskowiak2-Jul-04 2:37
mveDave Kreskowiak2-Jul-04 2:37 
QuestionWindows or Web Service, Which? Pin
leadpencil30-Jun-04 19:53
leadpencil30-Jun-04 19:53 
AnswerRe: Windows or Web Service, Which? Pin
Dave Kreskowiak1-Jul-04 3:28
mveDave Kreskowiak1-Jul-04 3:28 
Questionhow to capture an exe file file name into vb form Pin
saimram30-Jun-04 18:50
saimram30-Jun-04 18:50 
AnswerRe: how to capture an exe file file name into vb form Pin
Dave Kreskowiak1-Jul-04 3:21
mveDave Kreskowiak1-Jul-04 3:21 
Generalurgent......Pocket Pc volume Pin
Prowess30-Jun-04 17:54
Prowess30-Jun-04 17:54 
GeneralRe: urgent......Pocket Pc volume Pin
Dave Kreskowiak1-Jul-04 3:17
mveDave Kreskowiak1-Jul-04 3:17 
QuestionHow to get current user login time by Registry key Pin
Valyn30-Jun-04 16:24
Valyn30-Jun-04 16:24 
AnswerRe: How to get current user login time by Registry key Pin
Dave Kreskowiak1-Jul-04 3:15
mveDave Kreskowiak1-Jul-04 3:15 
QuestionHow come to notifyicon1_double click doesn't work?? Pin
mythinky30-Jun-04 15:39
mythinky30-Jun-04 15:39 
GeneralUsing Magic for Toolbar... Pin
federalprogrammer230-Jun-04 12:18
federalprogrammer230-Jun-04 12:18 
GeneralRe: Using Magic for Toolbar... Pin
Dave Kreskowiak1-Jul-04 2:48
mveDave Kreskowiak1-Jul-04 2:48 
Generalmenuitem name Pin
williewillie30-Jun-04 10:32
williewillie30-Jun-04 10:32 
GeneralRe: menuitem name Pin
ccotton33330-Jun-04 10:41
ccotton33330-Jun-04 10:41 
GeneralRe: menuitem name Pin
williewillie30-Jun-04 10:48
williewillie30-Jun-04 10:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.