December 2, 200916 yr Is there a way to determine if a user is accessing my database by either iwp or filemaker? Reason is: I would like to only have one user name and password for each of my users. Depending on how my users are accessing the database (either iwp or filemaker)I will use my "opening script" to send them to either my iwp layout or standard layout. Any suggestions?
December 2, 200916 yr Use the Get( ApplicationVersion ) function, it returns "Web (version)" if the use is a web client. Put this in an If statement in the opening script. It would be something like If[ PatternCount( Get( ApplicationVersion ) ; "web" ) > 0 ] #web client Else #FMP client End IF
Create an account or sign in to comment