how to make program to take input from gui rather than command promt

226 Views Asked by At

i am working on skeleton climbing algorithm for my .stl file generation, am getting the output. but for this code i need to pass arguments from the command prompt how will i pass arguments without opening command prompt?? are is it possible to pass input to this code from gui?? please give me some suggestions .... you can find the complete code from the given link...

http://www.cse.cuhk.edu.hk/~ttwong/papers/asc/asc.html

thanks in advance

1

There are 1 best solutions below

3
On

Your OS normally provides a mechanism to pass command lines to a file.

  • What OS are you on ? [ANS: Windows 7]
  • How do you plan to start your app (e.g. double click an icon?)
  • Do args change from run to run ? (perhaps you need to make your app ask for the required info rather than getting it from the "command line")