C/C++ have Datagridview-Listview-Calend and all those controls? i think c/c++ have only simple controls like msgbox/textbox/&button

i have spend lot of hours to find something for win32 but nothing...
exist smthing or i must draw byself :-s thats crazy...

C and C++ do not have anything to do with GUIs as part of the language. No messageboxes. No datagrids. No buttons. No listviews. Nothing.

All of those things depend on the hardware and the operating system, and C and C++ try hard to be independent of hardware and operating systems. If you need to use such things, you'll need to interact with the operating system either yourself (for example, the Win32 API) or using a widget library that gives you a simplified API and handles communicating with the operating system for you.

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.