Skip to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Welcome To FMForums

Welcome to our community, full of great ideas on developing your FileMaker solutions effectively,
 for peer-to-peer support of the FileMaker Platform and related products and services.

Register and join the conversation!

 

Affiliate Blogs

Featured Entries

Expanding on a recently released article about Incredibly Easy Menus, which used a Card Window and showcased minimal use of popovers, I've now created a new dedicated setup specifically for use with popovers. Using this method, you can implement the technique and manage your solution-wide popovers from a single location for code. Solution maintenance becomes vastly simplified with this approach. Remember, our goal as developers is to create DRY (Don't Repeat Yourself) code. This is exactly what
JSON, JSON, JSON! If you haven't gotten used to it yet, you'd better start. It's the way you communicate with the web. It's the structure that's winning. XML is too verbose, and .tab and .csv aren't always clear enough. So, what are some of the ways you can create JSON within FileMaker? Here are just a few: 1. Create a calculated field of it. 2. Use ExecuteSQL() to return it. 3. Use Execute FileMaker Data API [ ]. 4. Write a looping script. 5. Or... you can just export it. This last metho
In a relationally sound FileMaker database solution, you will definitely need portals. When you have a one-to-many relationship, the most common way to display the many related records from a layout based on the parent is to employ a portal. But portals don't always do what we want. Sometimes you need to enhance them or reformat the data displayed in a portal. In this article, we'll explore a method for gathering the data from a portal and displaying it in a comma-separated list using the power
While some of the excitement around AI deals with using the technology within your FileMaker solution, it's likely that, as a developer, you should be more excited about how AI changes what you do as a developer. In fact, it's theorized that the occupation of being a developer will be one of the careers most affected by AI. So, what do you do while we wait and see if this is truly the case? Well, you use AI, of course! If you haven't yet dipped your toes into the world of using AI to compose s
If there's one thing you shouldn't ignore from the start of any FileMaker solution, it's the way security is going to factor into your creation. You need to know who the users and groups are and what their access rights are. These access rights are called privilege sets within FileMaker. All too often, security may be an afterthought because most of the fun typically lies in creating solutions to the problems. The real trick is to create the solution to the problem while simultaneously consider
Watch our video to look at a new feature in FileMaker 2024: WebRTC (Web Real-Time Communications). WebRTC brings real-time video and chat capabilities directly into your FileMaker solutions. This opens up a world of opportunity in your FileMaker solutions. In this one focused example, we demonstrate how you can embed a Zoom meeting within a FileMaker web viewer, showcasing the enhanced functionality and seamless integration. Zoom is but one example of an application that requires the advance
With the release of Claris FileMaker 2024, a number of new AI script steps have been introduced, marking a significant advancement in the ability to find data. We demo the new FileMaker features that utilize AI to perform finds on data. Includes a video and sample file. AI Search Functionality in Claris FileMaker 2024 dbservices.com
Great news! FileMaker 2024 has arrived, bringing with it a host of exciting new features! From advanced AI integration to the “Open Quickly” feature, this release is all about making your development process smoother and more efficient. Script enhancements and improved JSON handling also are featured.  Watch our video to explore the latest enhancements and tools that will revolutionize your development workflow. This blog post provides a summary of the topics discussed in the v
Companies release new versions of software all the time. One of the issues we may face as developers is that not everything is documented and the "marketing spin" might not provide all the technical details. In this video I showcase how I go about the process by performing and ad hoc discover of some of the new features in the Claris FileMaker 2024 release. Click the title or link to this article to view the video. View the full article
Claris and Productive Computing have teamed up to help developers earn a free FileMaker Pro certification. The revised Claris Certification program, launched in 2023, allows you to obtain the FileMaker Pro Associate certification for free through Claris Academy. Claris FileMaker Pro Associate is one in a series of certification courses offered through Claris Academy and provides you with the basic skills to build a starter app from the ground up. The course is taught by Productive Comput
Explore the exciting new JSON features in Claris FileMaker 2024! This article delves into the enhanced JSONGetElement, JSONSetElement, and JSONMakeArray functions, showcasing how these updates simplify data handling for developers. Learn how the latest enhancements make JSON manipulation more intuitive, efficient, and powerful, enabling developers to innovate with ease. JSON Enhancements in Claris FileMaker 2024 dbservices.com
Error handling just got even easier Introduction We have been discussing the use of transactions since Todd Geist’s post in 2014. We introduced a complete framework with the Karbon project in 2018. We then revisited this framework with the introduction of the new script steps introduced in version 19.6. Transactions have proven to be useful […] The post Revert Transaction is now supported in subscripts!  appeared first on Proof+Geist. View the full article
FileMaker 2024 was just released. While the features likely to get the most attention center around AI, many other useful features also deserve notice. In fact, there is so much to cover that it would take a dozen blog posts to give them the coverage they deserve. In this post, we will cover the highlights […] The post FileMaker 2024 – AI and More appeared first on Proof+Geist. View the full article
Claris has just announced the release of FileMaker 2024, a major new version of its low-code application development platform, packed with innovative features for both FileMaker Pro/Go and FileMaker Server. FileMaker Pro 2024: AI-powered applications Powered by artificial intelligence, FileMaker 2024 introduces seamless integration with large language models like ChatGPT, Gemini, a
Over one's development career, you'll come across a number of people who "think" they know how something really works. You then proceed to show them some of the cool things they can really do, like a "context jump" within FileMaker. You then smile at their surprise, because what they thought was possible isn't even the start of it. If you don't even know about, or truly understand, FileMaker's ability to jump from one context to another, then you're missing a critical piece to the FileMaker puz
I've been using pickers in customer solutions for years but always as a single choice interface. It dawned on me, after reading a post in a forum, that it's often advantageous to make multiple selections, instead of having to keep clicking the picker buttons for multiple single choices. In this article, I'll use a simple invoicing solution to demonstrate how to enhance a picker to make multiple choices.View the full article
Many technologies that used to be restricted to a dedicated software have begun moving online, including Claris FileMaker. FileMaker WebDirect is one way you can bring your FileMaker solution straight to the web. We discuss the comparison between FileMaker WebDirect and building a custom web app. Includes demo video. Claris FileMaker WebDirect vs. Custom Web Applications dbservices.com
Our recent Engage presentation of the new 19.6 transactional script steps purposefully focused on the topic of error handling, because once you’ve put the transactional “bookends” in your script, your focus immediately turns to errors: handling, throwing, and passing them back to calling scripts or processes. The Contract When you add Set Error Capture On […] The post Set Error Capture On. Now What? appeared first on Proof+Geist. View the full article
Explore the benefits of a FileMaker CRM for free! Great news – our updated Core CRM Pro solution is now available as a free, fully unlocked CRM template! If you own a business or manage any kind of organization, chances are you have – or need – a CRM, a Customer Relationship Management system. Productive Computing University’s Core CRM Pro is the ultimate free FileMaker CRM template for the Claris FileMaker Community! The Core CRM Pro is a streamlined FileMaker CRM solution that lets

Recently Browsing 0

  • No registered users viewing this page.

Important Information

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

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.