Possible to fill a combobox with this array value?
Set RS = New ADODB.Recordset
RS.CursorLocation = adUseClient
SQL = "SELECT * FROM COMUNI UNION SELECT * FROM STATI"
RS.Open Source:=SQL, _
ActiveConnection:=CON, _
CursorType:=adOpenForwardOnly, _
LockType:=adLockReadOnly
RS.Sort = ("PROVINCIA, DESCRIZIONE")
RS.MoveFirst
Erase strDBRows()
strDBRows = RS.GetRows()
RS.Close
Set RS = Nothing
Me.CCOMNASC.List = strDBRows<<<<
Set RS = New ADODB.Recordset
RS.CursorLocation = adUseClient
SQL = "SELECT * FROM COMUNI UNION SELECT * FROM STATI"
RS.Open Source:=SQL, _
ActiveConnection:=CON, _
CursorType:=adOpenForwardOnly, _
LockType:=adLockReadOnly
RS.Sort = ("PROVINCIA, DESCRIZIONE")
RS.MoveFirst
Erase strDBRows()
strDBRows = RS.GetRows()
RS.Close
Set RS = Nothing
Me.CCOMNASC.List = strDBRows<<<<