2014-02-10 05:43 AM
ch1 = OPEN ("DATA", "RevisionControl.txt", "MODE = WA") OUTPUT ch1, GLOB_INTGUID, 1, LayoutID, LayoutNumber, LayoutName, RevID, RevSub, RevNote, RevDate, RevPerson CLOSE ch1I'm using the GLOB_INTGUID as the data key because this is then a unique number for each marker that can be updated in the database if the marker object is modified. The LayoutID, LayoutNumber and LayoutName variables are requested from the layout page by the object and the various Rev__ variables are user entered data.
ch1 = OPEN ("DATA", "RevisionControl.txt", "MODE = RO") RevData = INPUT (ch1, "???", 1, LayoutID, LayoutNumber, LayoutName, RevID, RevSub, RevNote, RevDate, RevPerson) CLOSE ch1Once I find a way to get multiple rows of data in (to an array?) I then need to be able to filter down to just the marker data for objects on this page of the layout book.
2014-02-11 08:27 PM
2014-02-12 05:50 AM
2017-10-25 09:58 AM