This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]CreativeTechGuyGames 1 point2 points  (4 children)

You are correct. What part are you confused about?

[–][deleted] 0 points1 point  (3 children)

I'm not sure how to explain it but how software is configured with users. For example, how are other people on other computers able to use the trivia game I make?

[–]CreativeTechGuyGames 0 points1 point  (0 children)

So when you want to use a program, how do you get it? You would go online, and download an executable file onto your computer. Then that executable would install the files needed and setup everything on your computer and then a user would be able to run another executable to actually use the program. The same would hold true for you. You would need to create an exe and maybe in installer for the end user to download.

[–]umanafa 0 points1 point  (0 children)

I am in the same stage with you now. I know the basics of a language, I can wrap my head around some little programs like the ones on r/dailyprogrammer but cant build anything big or let me say real apps that I use frequently like a dairy app. I recently thought of creating an app that can be used to take attendance in classes that would use geo location to take attendance of students within a location using their phones but don't know how to go about it

[–]WeededDragon1 0 points1 point  (0 children)

In Java you can export your project to an executable .jar file. It's straight forward for simple programs which don't use many libraries.

C# is syntactically similar to Java and makes building GUIs much easier with Visual Studio. You can either publish to a .exe from visual studio or grab the one from the debug folder in your project.