hi. i'm planning to use visualc++ as the language for a pcb layout artist/designer. i'm wondering if it's possible to create a command line interface (just like in AutoCAD) using visualC++.

Recommended Answers

All 3 Replies

do mean VC++ 2008 Express? All C++ compilers support command-line interfaces, its part of the c++ ISO standards. int main(int argc, char* argv[]) In the above line, argc is the number of command-line arguments and argv is an array of the arguments.

yes, vc++ 08 express. =)
thanks so much.

just create a console or a windows application and you have everything you need.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.