Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Search and SET RELATION don't like each other
Message
From
02/05/2001 16:51:02
 
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00502705
Message ID:
00502760
Views:
19
This message has been marked as a message which has helped to the initial question of the thread.
Nadya,

Off the top of my head...

When setting up your data environment (e.g. in Load event), do the following:
USE Lender AGAIN ALIAS Lender2 IN 0
Then, in LendRev.Search()
local lnRecno
lnRecno=recno('Lender2')
thisform.DataEnvironment.InitialSelectedAlias="Lender2" && Search form uses this property
dodefault()
thisform.DataEnvironment.InitialSelectedAlias="BldMstr" && Restore it back
This is the code in AfterRowColChange for BldMstr grid:
LPARAMETERS nColIndex
local lnRecno
lnRecno=recno('BldMstr')
with this
   .parent.GrdHglt1.Highlight_Row()
   .statusbartext=space(20)+"Record "+ ;
	transform(m.lnRecno)+ ;
	" of "+transform(thisform.NumberOfRecords)+' in '+alias()   
endwith
thisform.navstand.navupdate()
This suggestion is simply to "keep it simple." By using 2 separate "views" of Lender -- you can use 1 for searching and the other for viewing without having to set up for one or the other. That should avoid the problem of the table being in the incorrect state for the desired operation.

Jay
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform