See this post
I lose a LOT of time trying to figure out how to get the various components working across multiple platforms. The link is a good example of the sort of thing I am always running into. It would be REALLY nice if at least the context help that pops up would let you know which platforms a given function is available on. Think about how much time this cost me. Add is a command for a combo box. I had to come search for the Add command three different times and the final time I find out the command doesn't even exist. When I first did the list I used SetItems which is common to all. What I needed to do is add one item if the user chooses custom. But SetItems was there and is easier for just one item so I used it. Now I have to go back and rewrite the code to use SetItems.
I lose a LOT of time trying to figure out how to get the various components working across multiple platforms. The link is a good example of the sort of thing I am always running into. It would be REALLY nice if at least the context help that pops up would let you know which platforms a given function is available on. Think about how much time this cost me. Add is a command for a combo box. I had to come search for the Add command three different times and the final time I find out the command doesn't even exist. When I first did the list I used SetItems which is common to all. What I needed to do is add one item if the user chooses custom. But SetItems was there and is easier for just one item so I used it. Now I have to go back and rewrite the code to use SetItems.