Article ID: 137124
Article Last Modified on 6/29/2004
SELECT customer.city FROM tastrade!customer ;
WHERE customer.country = ?ThisForm.PageFrame1.Page1.List1.Value
View List3:
SELECT customer.company_name FROM tastrade!customer ;
WHERE customer.city = ?ThisForm.PageFrame1.Page2.List1.Value
View List4:
SELECT customer.customer_id FROM tastrade!customer WHERE ;
customer.company_name = ?ThisForm.PageFrame1.Page3.List1.Value
This.DataEnvironment.OpenTables
This.PageFrame1.Page2.List1.RowSource='List2'
This.PageFrame1.Page2.List1.RowSourceType=2
This.PageFrame1.Page3.List1.RowSource='List3'
This.PageFrame1.Page3.List1.RowSourceType=2
This.PageFrame1.Page4.List1.RowSource='List4'
This.PageFrame1.Page4.List1.RowSourceType=2
SELECT distinct Country from Customer into Cursor abc
Page1.List1.RowSourceType
3 - SQL Statement
*This is for the List on Page 1
= REQUERY("List2")
ThisForm.PageFrame1.Page2.List1.RowSource='List2'
ThisForm.PageFrame1.Page2.List1.RowSourceType=2
ThisForm.PageFrame1.Page2.List1.requery( )
*This is for the ListBox on Page 2
= REQUERY("List3")
ThisForm.PageFrame1.Page3.List1.RowSource='List3'
ThisForm.PageFrame1.Page3.List1.RowSourceType=2
ThisForm.PageFrame1.Page3.List1.requery( )
*This is for the ListBox on Page 3
= REQUERY("List4")
ThisForm.PageFrame1.Page4.List1.RowSource='List4'
ThisForm.PageFrame1.Page4.List1.RowSourceType=2
ThisForm.PageFrame1.Page4.List1.Requery( )
1. Customer table
2. View List2
3. View List 3
4. View List 4
Keywords: kbhowto kbcode KB137124