DB column to PopupMenu?

Hi,

I cannot work out how to populate a PopupMenu from a database column
I have a recordset which returns all entries from 1 column in my database, but I have no idea what I replace the ??? with, in the code below?

While not recordset EOF PopupMenu1.Addrow????? Wend

Can anyone help me?
Thank you all in advance.

[code]if rs <> Nil and rs.RecordCount > 0 Then

while not rs.EOF
  PopupMenu1.AddRow rs.Field("rowName").StringValue
  rs.MoveNext
wend

end if[/code]

Ahhhhhhh. Thanks Roger!
Much appreciated.