User Tag List

Results 1 to 7 of 7

Thread: Is this application possible?

  1. #1
    Clicker Multimedia Fusion 2

    Join Date
    Mar 2012
    Posts
    44
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Question Is this application possible?

    Hi everybody:

    I know how powerful MMF2 is for games and also for Apps.

    What I want to know, is if a Windows application like the screenshot attached is possible to make in MMF2.

    Basically, is for making an employees database with names, phones, address, salary, date entering the company, date leaving the company (when they don't work there anymore), photo, etc.

    I guess it is possible but, will it be to hard to program? How can I save the information entered for each employee? And how to just "open" this info in another frame without being able to edit?

    Thanks a lot!

    employ.jpg

  2. #2
    Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleSWF Export ModuleXNA Export ModuleUnicode Add-onInstall Creator Pro

    Join Date
    Jun 2011
    Posts
    628
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Yes it is possible. You can use sqlite pro object to save/load data.

  3. #3
    Clicker Fusion 2.5 DeveloperHTML5 Export ModuleiOS Export ModuleUnicode Add-onInstall Creator Pro
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)

    Join Date
    Jul 2006
    Posts
    574
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    As Coldfire says SQLite is a good option for this. Your app doesn't appear to be too complex so SQLite should work fine. You can also use the ODBC object to load a MDB file if you preferred. Both use query language commands.

    I wouldn't go using arrays or a custom binary data file format. A query language database is definitely the way to go. They also have multi client support.

    So I would recommend doing some reading on SQLite or MDB (Microsoft Access DB format). Get familiar with adding/removing/updating data to the database using queries. You can then apply that knowledge to making your app.

    Alternatively you could make such a thing in something like Microsoft Access (the design will need MS Access but clients can use the Access runtime which is free) or Filemaker. But where's the challenge in that?

  4. #4
    Clicker Multimedia Fusion 2

    Join Date
    Mar 2014
    Posts
    30
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just curious; what advantages would SQL have over an array or binary data file?

  5. #5

  6. #6
    Clicker Fusion 2.5 DeveloperHTML5 Export ModuleiOS Export ModuleUnicode Add-onInstall Creator Pro
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)

    Join Date
    Jul 2006
    Posts
    574
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    The SQL engine does the look ups on the data. If you wanted to search a binary data file for all users aged 30 or older for example you would need to parse through each record for it. If you were using a binary file. With SQL you just use a query like "select * from myTable where age >= 30;" It'll only return with the records of users that are 30 or older. So less work for your app to do.

    Here are just a few reasons to use SQL for a database:

    SQL will be faster.
    SQL will be easier to implement.
    The chances of corruption of Binary datafiles is much higher than SQL. (SQL is pretty much no chance of corruption)
    SQL allows multiple clients to update the database at the same time.
    SQL can have transaction logs so that you can roll back changes.
    SQL Tables can easily have additional columns added with little changes to be made to your app. If you decided to add a column in a binary data file you'll have a job on your hands.

    These are just a few reasons why you should go down the query language route.

    Binary has it place. For saving game's and such. But I wouldn't use it for database storage.

  7. #7
    Clicker Fusion 2.5HTML5 Export Module
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)SWF Export Module (Steam)Firefly 3D Module (Steam)
    alexmx's Avatar
    Join Date
    Sep 2013
    Location
    Mexico City
    Posts
    35
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello!

    Did you make the App for Windows for the Employee Database?

    How did you manage to do it?, I want to look
    Can you give me the source (.cca or .mfa)?

    I thank you in advance

    Regards, Alex

Similar Threads

  1. MMF Flash Application. Click on the Application to set the focus?
    By KLiK-iT in forum Multimedia Fusion 2 - Technical Support
    Replies: 2
    Last Post: 2nd April 2013, 02:31 PM
  2. Build Application crashes when trying to run a sub-application
    By Arnax in forum Multimedia Fusion 2 - Technical Support
    Replies: 9
    Last Post: 10th July 2012, 04:17 AM
  3. Application
    By nantouillet in forum SWF/Flash Export Module Version 2.0
    Replies: 2
    Last Post: 28th June 2011, 10:28 PM
  4. calling another application inside the application
    By Cody in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 11th June 2010, 03:38 AM
  5. Save application as Internet Application?
    By Pyrasia in forum Multimedia Fusion 2 - Technical Support
    Replies: 5
    Last Post: 15th February 2009, 04:04 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •