Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Setup a relationship between 2Cursors
Message
From
01/07/2000 21:25:52
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Setup a relationship between 2Cursors
Miscellaneous
Thread ID:
00387476
Message ID:
00387476
Views:
41
I'm trying to setup a relationsship between 2 cursors. What I want to do is when I'm scrolling through 1 grid I want the other one to update its records occording to which record im currently on in grid 1. Here is my code
SELECT Tickets.ticket, Tickets.loandate, Tickets.loanamt,;
Tickets.paiddate, Tickets.paidamt, tickets.ptype, tickets.trnstype;
FROM tickets;
WHERE Tickets.custnr = "SD00357";
into cursor ticketdata
index on tickets.ticket tag tick

SELECT item.ticket, Item.item;
FROM item INNER JOIN ticketdata ;
ON Item.ticket = Ticketdata.ticket;
into cursor itemdata
index on item.ticket tag tick

select ticketdata
set relation to tick into itemdata

I get an error tha says "varibal ticket not found" in my set relation to tick into intemdata code.

Thanks
Kelly
Next
Reply
Map
View

Click here to load this message in the networking platform