Hope this is something simple. In VFP 8 I have two identical
listboxes on a form. Both using their own seperate view data, both
bound the same way to different views:

BoundTo = T
BoundColumn = 2
ColumnCount = 1
Row Source = v_view.field1, field2
Row Source Type = Alias


Both views has data in them. One of the list boxes diplays the value
and one does not until you click on it at run time - then it refreshes
with the correct data. I have tried refreshing no no avail. What
would cause such an odd behavior.

Rick

Re: Listbox Not displaying Util it is Clicked by Jacobus

Jacobus
Thu Jul 31 17:54:09 CDT 2003

I had a simular problem with a combobox today
The fix was to add "this.RowSourceType = 6" to the Refresh event...

Jacobus

"Chester Deja" <dejaemail@yahoo.com> wrote in message
news:7de036b7.0307311303.6cd4ae52@posting.google.com...
> Hope this is something simple. In VFP 8 I have two identical
> listboxes on a form. Both using their own seperate view data, both
> bound the same way to different views:
>
> BoundTo = T
> BoundColumn = 2
> ColumnCount = 1
> Row Source = v_view.field1, field2
> Row Source Type = Alias
>
>
> Both views has data in them. One of the list boxes diplays the value
> and one does not until you click on it at run time - then it refreshes
> with the correct data. I have tried refreshing no no avail. What
> would cause such an odd behavior.
>
> Rick



Re: Listbox Not displaying Util it is Clicked by dejaemail

dejaemail
Tue Aug 05 08:20:13 CDT 2003

"Jacobus" <subscr2000@hotmail.com> wrote in message news:<O8L2oa7VDHA.452@TK2MSFTNGP10.phx.gbl>...
> I had a simular problem with a combobox today
> The fix was to add "this.RowSourceType = 6" to the Refresh event...
>
> Jacobus


Now that is interesting. It worked. Where is that in the VFP80 Help file? lol!

Thanks!

Rick