Author: user user

How can I display a window from another process in an MDI window in my application

I am working on an MDI application in Delphi. I would like to show interactive views generated by other applications(which I also build) within MDI child windows of my application. When the user selects a specific view type in my app it will start an instance of the other app which will generate one or […]

How to retrieve all the values associated with a key?

I want to get all the values associated with a key in Map. For e.g, Map tempMap = new HashMap(); tempMap.put(“1″,”X”); tempMap.put(“2″,”Y”); tempMap.put(“3″,”Z”); tempMap.put(“1″,”ABC”); tempMap.put(“2″,”RR”); tempMap.put(“1″,”RT”); How to retrieve all the values associated with key 1 ?