View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Neal Neal is offline
external usenet poster
 
Posts: 63
Default what does pvargColumn and pvargIndex mean?

Dim searchRow As Integer
Dim searchCol As Integer

searchRow = 12
searchCol = miscCol

While (Cells(searchRow, searchCol) < "")
UserForm1.ListBox1.ColumnCount = 2
UserForm1.ListBox1.AddItem Cells(searchRow, searchCol)
UserForm1.ListBox1.Column (

when I start typing this in, a box appears by my typer icon, saying i need
to add ([pvargColumn), pvargIndex)) or something like that. Any ideas?
I've never used this function or method before.

thanks!