As rpeare said, "Clear as mud". 
It is still not clear as to what you want to do.... if we understood what you are trying to do (not how), we would be able make better recommendations
Here are three methods to fill the controls:
Your array:
Code:
Private Sub Command16_Click()
Dim x As Integer
Dim myFormstr
Dim v As Integer
myFormstr = Array("F_Value1", "F_Value2", "F_Value3", "F_Value4", "F_Value5", "F_Value6", "F_Value7")
v = UBound(myFormstr)
For x = 0 To UBound(myFormstr)
Me(myFormstr(x)) = Me.cboProduct
Next
End Sub
Brute force:
Code:
Private Sub Command17_Click()
F_Value1 = Me.cboProduct
F_Value2 = Me.cboProduct
F_Value3 = Me.cboProduct
F_Value4 = Me.cboProduct
F_Value5 = Me.cboProduct
F_Value6 = Me.cboProduct
F_Value7 = Me.cboProduct
End Sub
For...next loop:
Code:
Private Sub Command18_Click()
Dim x As Integer
For x = 1 To 7
Me("F_Value" & x) = Me.cboProduct
Next
End Sub
If the first column is the PK and the second column is text that you want in the controls, change Me.cboProduct to Me.cboProduct.Column(1)