Tuesday, July 14, 2009

Looking for a Web site with a list of Visual C++ screen object parameters.?

I am working on software requirements for changes in a user interface (GUI) screen. I would like to find, if possible, a list that gives all the possible parameters for the various objects that will appear on the screen, such as text boxes, dialog boxes, etc. The program is coded in Visual C++ if it mattters.

Looking for a Web site with a list of Visual C++ screen object parameters.?
I have included a link to the MSDN pages which lists several of the on screen objects which control the elements of a GUI. From this screen you will see a list of class names. Click one and it gives you the overview, but towards the bottom you will see another link which reads "Class members". By clicking this, you will see all the methods (they call them operations) and attributes. Again, clicking one of these will tell you the functions signature which lists the parameters of the object.





I believe a straight list of object parameter names and types does not exist because it would be no good to any programmer. Programmers deal with the objects and will look up their signature as needed. That and parameter number and types can change with different signatures.





Hope this is what you were looking for. Its all there for the most part.





Enjoy!


No comments:

Post a Comment