Hi,
Fairly simple question that I want confirmation on, if I .Order a view then follow with a Do loop that where the first statement is a .Browse, does the view retain the order even after every .Browse or does the .Order need to be in the Do loop? For example I have scenario A, but want to make sure I shouldn't be doing scenario B
Scenario A
if view.fetch = true then
End if
Scenario B
if view.fetch = true then
End if
Fairly simple question that I want confirmation on, if I .Order a view then follow with a Do loop that where the first statement is a .Browse, does the view retain the order even after every .Browse or does the .Order need to be in the Do loop? For example I have scenario A, but want to make sure I shouldn't be doing scenario B
Scenario A
if view.fetch = true then
view.order = x
do
view.browse strBrowse, Trueloop while.fetch = true
End if
Scenario B
if view.fetch = true then
do
view.order = x
view.browse strBrowse, True
loop while view.fetch = true
End if