Hi david,
he's a code example:
Private Sub Form_Load()
Dim strFields As String
Dim intCol As Integer
With List0
For intCol = 0 To .ColumnCount - 1
strFields = strFields & .Column(intCol, 0)
& ";"
Next intCol
End With
If Len(strFields) > 0 Then
' remove extra semicolon
strFields = Left(strFields, Len(strFields) - 1)
End If
Combo2.RowSource = strFields
' rowsource is set to value list
End Sub
Luck
Jonathan