Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Visual MaxFrame pick list - HELP
Message
General information
Forum:
Visual FoxPro
Category:
Third party products
Miscellaneous
Thread ID:
00173613
Message ID:
00173673
Views:
26
I guess I'm a little confused as to what you're tyring to acomplish here. Are you using one of his PickListForm's gizmos? If you are, than in the CreateIndexTags() method of the grid you can put something like:

select sitems_lookup
if .f.
*
* index tags can be created explicitly referencing
* the tag name in THIS.iaColumnInfo[xx,3]
*
index on InvNum tag (THIS.iaColumnInfo[1,3])
index on Descrip tag Descrip
index on sitems_pk tag sitems_pk
endif
*
* or index tags can be created by indirectly
* referencing the tag name in THIS.iaColumnInfo[xx3]
*
index on InvNum tag (THIS.iaColumnInfo[1,3])
index on Descrip tag (This.iaColumnInfo[2,3])
index on sitems_pk tag (This.iaColumnInfo[3,3])


Then in the SetIndexTagInfo() method of the same grid put something like:
THIS.iaColumnInfo[1,3] = "InvNum"
THIS.iaColumnInfo[2,3] = "Descrip"
THIS.iaColumnInfo[3,3] = 'stiems_pk'

---> >VFP 4.0 - VFP 5.0
I'm assuming you mean VMP4 and VFP5.
1) Are you one of the beta testers for VMP4?
2) You should be doing some serious thinking about using VFP6 - VMP4 likes it much better.



>>Which version of MaxFrame are you using?
>>
>>>I've got a pick list that is using a LOOKUP() function in one of the columns. The problem is that I wan to index on that field. We have been able to index on LOOKUP() functions before but that would be only if we were using a view in the pick list, which we are not. We need to see all records in the pick list but this view takes much too long because of the number of records.
>>>
>>>We could actually override VMP's seek in the lookup form but I still could not have this column sorted. We have thought of having two grids. We have also thought of making the LOOKUP a permanent index. Neither of these solutions is very appealing. Please Help Me. :)
>>>
>>>TIA
>
>VFP 4.0 - VFP 5.0
ICQ 10556 (ya), 254117
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform