Board index » delphi » How to create Program Manager groups and icons?
jg...@vuse.vanderbilt.edu (Jeff Gray)
![]() Delphi Developer |
Tue, 20 Jan 1998 03:00:00 GMT
How to create Program Manager groups and icons?In Message-ID: <swbaker.863.00048...@oakland.edu>, Steve Baker wrote: Quote>I saw a post a few months ago asking how to create Program Manager groups and out. The code will work on a form that has access to a DDEClientConv (which I named ProgManDDE). With ProgManDDE, you will need to set the servic and topic (I think) properties to point to the Program Manager executable (progman.exe) The code gives an example of deleting a group, creating a group, By the way, you can get extra help on this topic from Delphi Let me know if the code needs further explanation. Cheers, Jeff Gray -------------------- with ProgManDDE do
{This will delete the ReportSmith group} {This will create a new group named "MyGroup"}
{This will add an item, called MyApp, to MyGroup}
{This will minimize the group}
end;
|