Articles   Members Online:
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to create a Program Group for an application Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
10-Oct-02
Category
Shell API
Language
Delphi 2.x
Views
81
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			 Author: Jonas Bilinkevicius

Is there a Delphi function or API function with which I can create a program group 
for an application?

Answer:

Yes, MkDir or CreateDir. The program "groups" are in fact simple directories under 
the users profile directory.

1   uses
2     ShlObj;
3   
4   procedure FreePidl(pidl: PItemIDList);
5   var
6     allocator: IMalloc;
7   begin
8     if Succeeded(ShGetMalloc(allocator)) then
9     begin
10      allocator.Free(pidl);
11  {$IFDEF VER90}
12      allocator.Release;
13  {$ENDIF}
14    end;
15  end;
16  
17  procedure TForm1.Button2Click(Sender: TObject);
18  var
19    pidl: PItemIDList;
20    buf: array[0..MAX_PATH] of Char;
21  begin
22    if Succeeded(ShGetSpecialFolderLocation(Handle, CSIDL_PROGRAMS, pidl)) then
23    begin
24      if ShGetPathfromIDList(pidl, buf) then
25        ShowMessage(buf); {buf has startmenu\programs folder}
26      FreePIDL(pidl);
27    end;
28  end;


			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC