English 中文(简体)
如何写入桌面应用程序, 以根据主题筛选测试问题[ 已关闭]?
原标题:How to write a desktop app that filters test questions according to topic [closed]

What programming language/method would be best suited to writing a desktop app that filters question types and displays a listing of those questions to view.

For example, if I have a mix algebra, geometry, and calculus questions stored in the app, I should be able to select just the algebra questions to view and print.

我对Python/django有一点点经验, 但我从来没有做过桌面应用程序。

最佳回答

您有很多选项。 您在前进之前, 需要做出几个“ 强势” 设计决定 < / 强” 。 需要考虑的事项是 :

  1. Which technologies do you feel comfortable with?
  2. How much time/effort do you want to put into the project?
  3. Are you willing to spend money on tools?
  4. Etc.

回答的其余部分是给你们一些“强势”的选择,以便你们考虑“/强势”:

  1. You ll need a data structure which can filter the problems for you. From your description, the first thing I thought of was using a database, however I m not sure if you are familar with databases, in which case you d have to create some classes/structs that would allow for you to do the filtering yourself. Some options for databases are SQL Express, Oracle, MySQL, DB2, and many more.
  2. Another thing to consider is you mentioned several different type of math problems. You d want to consider how you would be displaying the problems. Mathematica formats math problems nicely, but if you wanted to go down this road, you d either have to find a tool that would allow you to display that math problems in a syntax like Mathematica or do exports/screen shots of the problems and have those as part of your program.
  3. Another option would be to try to find a language that has some sort of plugin for TeX or LaTeX (For example, you can see how wikipedia allows for nice math formatting here: http://en.wikipedia.org/wiki/Help:Displaying_a_formula

这听起来像是一个很好的项目, 用来学习不同的技术。 如果这是目的, 那很好。 如果不是, 那么你可能想做一些滑稽 看看其他人是否已经创造了你所寻找的东西。

问题回答

暂无回答




相关问题
Capture desktop without my window

I want to create a recording of desktop content, but without a certain window. The role of this window is to provide a text that will be read, while recording desktop changes. Any suggestions?

Logout from an desktop application to change user in C#.net

I have designed an desktop application using C#.net that has many users. Each USer has specific rights. The User logs into the system when the application first starts and the UserID number is stored ...

Programmatically take ScreenShot of Desktop in Ruby?

I asked this question about taking a picture of a webpage programmatically, and I ve downloaded and got webkit2png working (taking pictures of HTML pages like blogs and whatnot). So cool, thanks for ...

热门标签