Ask a Question related to FileMaker, Design and Development.
-
Matt Revenaugh #1
Breaking Relationships
Does anyone know of a way to "lock" relationships?
If a db is related to second db on the network, and the network is down or
unavailable, the user is prompted to find the db. More than once a user has
picked the first file he sees which is always wrong. Then it breaks the
relationship and the entire chain of links. What a pain!
I can't error trap around the the problem. Any suggestions?
All these FileMaker Pros, I can't imagine I'm the only one who has run into
this problem.
Matt Revenaugh
Matt Revenaugh Guest
-
MS SQL Relationships
i cant seem to find a visual tool ( like access ) in ms sql enterprise manger that allows me to setup relationships im sure its somewhere obvious... -
table relationships
How do I programmtically get the relationships of a table?? I can get the list of columns: dtFields = conn.GetOleDbSchemaTable(OleDbSchemaGuid.,... -
Relationships in FMP5.5
I recently upgraded us from FMP4.1 running peer to peer over TCP/IP using clients on win98, win2000, winxp pro. Used to work fine. Then I upgraded... -
Resolving field relationships
Hi all, I'm trying to build a sort of datagrid control by which i wish to edit/delete/update data in a table. Since I'm using foreign-keys for... -
Creating relationships
Hello, thank you for taking the time to read this, I appreciate it very much. Im creating a database the allows an individual/student to... -
Glenn Schwandt #2
Re: Breaking Relationships
Don't allow FileMaker to search for the required database itself. Before
the user is prompted to find the database (whatever process is causing that
in your database), run a script like the following:
Set Error Capture [on]
Perform Script [Sub-scripts, YourNetworkDB]
- select a script that has one step: Toggle Window [minimize]
If [Status (CurrentError) <> 0]
Show Message ["YourNetworkDB is not available"]
Halt Script
End If
You could also substitute the Open script step for the Perform Script above,
which will cause the startup script (if any) to run (assuming the database
is not already open).
"Matt Revenaugh" <mrevenaugh@bak.rr.com> wrote in message
news:BB42D9F8.19CC8%mrevenaugh@bak.rr.com...has> Does anyone know of a way to "lock" relationships?
>
> If a db is related to second db on the network, and the network is down or
> unavailable, the user is prompted to find the db. More than once a userinto> picked the first file he sees which is always wrong. Then it breaks the
> relationship and the entire chain of links. What a pain!
>
> I can't error trap around the the problem. Any suggestions?
>
> All these FileMaker Pros, I can't imagine I'm the only one who has run> this problem.
>
> Matt Revenaugh
>
Glenn Schwandt Guest
-
Glenn Schwandt #3
Re: Breaking Relationships
Then run the script before you allow the portal to be displayed.
"Matt Revenaugh" <mrevenaugh@bak.rr.com> wrote in message
news:BB42E5C7.1A165%mrevenaugh@bak.rr.com...Before> I display a portal with the related records. So FM automatically opens the
> related file.
>
> Matt Revenaugh
>
> --------
>
> On 7/22/03 12:44 PM, in article [email]vhr515rfnkve61@corp.supernews.com[/email], "Glenn
> Schwandt" <schwandtgat@aoldot.com> wrote:
>> > Don't allow FileMaker to search for the required database itself.that> > the user is prompted to find the database (whatever process is causingabove,> > in your database), run a script like the following:
> >
> > Set Error Capture [on]
> > Perform Script [Sub-scripts, YourNetworkDB]
> > - select a script that has one step: Toggle Window [minimize]
> > If [Status (CurrentError) <> 0]
> > Show Message ["YourNetworkDB is not available"]
> > Halt Script
> > End If
> >
> > You could also substitute the Open script step for the Perform Scriptdatabase> > which will cause the startup script (if any) to run (assuming the>> > is not already open).
> >
Glenn Schwandt Guest



Reply With Quote

