How to write a program whose input various information of the companies

Discussion in 'Programming' started by niksirat, Aug 23, 2022.

  1. #1
    Hi,
    I want to write a program whose input is the names of the companies and when adding the name of each company, it will take various information from that company of different types,
    1- TextBox (daily production rate),
    2- CheckBox (select product features),
    3- OptionButton (the gender of the company owner),
    4- Date (Product delivery time, yy/mm/dd), ... in a form and store all that information in the profile of that company.

    I just started programming. Of course, I have an average familiarity with Matlab, which I know is not suitable for writing this program.

    What programming language should I use for this task so that I can design a beautiful appearance (GUI) for entering information and this information can be entered easily by the user?

    Is there a pre-written program that is close to my goal so that I can improve it to suit my needs?

    Thanks in advance.
     
    niksirat, Aug 23, 2022 IP
  2. Mark Elijah

    Mark Elijah Banned

    Messages:
    145
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    18
    #2
    For this project, consider Python with libraries like Tkinter for a user-friendly graphical interface (GUI) with text boxes, checkboxes, radio buttons (for options like gender), and date pickers.
    While Python itself is beginner-friendly, building a full-fledged program might require some learning. There likely isn't a pre-written program that perfectly fits your needs, but searching for "Python GUI application template" might give you a good starting point to customize for company information.
     
    Mark Elijah, May 14, 2024 IP
  3. mike30

    mike30 Well-Known Member

    Messages:
    884
    Likes Received:
    34
    Best Answers:
    0
    Trophy Points:
    140
    #3
    mike30, May 22, 2024 IP
  4. JEET

    JEET Notable Member

    Messages:
    3,829
    Likes Received:
    502
    Best Answers:
    19
    Trophy Points:
    265
    #4
    You can use PHP and HTML to code this easily. Use HTML to show the form. Submit the form to a PHP script. The PHP script can then write the submitted data to a text file on your server. If you want this to be an offline thing, then you can use JAVA to do it. It is easy to learn and use. Androids apps are also coded in JAVA, so the knowledge of the language will come in handy later there as well. You can install JAVA on your apache webserver also, so instead of using PHP, you can use JAVA/JSP on your webserver.
     
    JEET, May 25, 2024 IP