Jump to content
Server Maintenance This Week. ×

Upgrade FMD6 runtime?


This topic is 5289 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • Newbies

I have avoided upgrading my FMD6 runtime app for a long time because I have a number of users on older operating systems, but now I must upgrade.

Does anyone have hints about how to script a solution so that it makes it simple to import the FM6 data?

Right now the only thing I can think of doing is creation a FM6 runtime that will go through each file, export the data to an Excel or TXT file and then import the data into the newer application but the data is extremely sensitive and I don't want to risk having unsecured data.

Thanks,

JEAG

Link to comment
Share on other sites

Have you thought about applescript in this case? The runtime would very likely share layouts with the newer version ... Switching between the two would then be:


tell application "MyRuntime"

	tell layout 1

		set sourceRec to (get current record)

	end tell

end tell

tell application "FileMaker Pro Advanced"

	tell layout 1

		create new record with data sourceRec

	end tell

end tell

This will work even with a large samples of data stashed away in portals....

--sd

Link to comment
Share on other sites

This topic is 5289 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.