Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How to invoke the Windows ShortCut Dialog wizard?



How to invoke the Windows ShortCut Dialog wizard?..

Answer / editcdc

function InvokeShortCutDialog(Directory : string) : boolean;
var
Reg : TRegistry;
CmdLine : string;
begin
Result := false;
Reg := TRegistry.Create;
try
Reg.Rootkey := HKEY_CLASSES_ROOT;
if Reg.OpenKeyReadOnly('.LNKShellNew') then
begin
CmdLine := Reg.ReadString('Command');
CmdLine := StringReplace(CmdLine, '%1', Directory, []);
Result := True;
WinExec(PChar(CmdLine), SW_SHOWNORMAL );
end
finally
Reg.free;
end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
InvokeShortCutDialog('c:Temp');
end;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Delphi Interview Questions

How to use the Lookup method to return values from multiple columns ?

0 Answers  


Why won't the virtual key codes work in program?

0 Answers  


How to get Table data subset through IProvider ?

0 Answers  


How to Determine minor version number?

0 Answers   Infosys,


How to Use InvalidateRect()to repaint the entire form?

0 Answers  


I just bought Delphi. Where are the language and library reference manuals?

0 Answers  


How to change file attributes programmatically?

1 Answers  


How to Retrieve the line number that a memo's cursor is on?

0 Answers  


How to move Client Objects to a different AS/400?

0 Answers  


How to launch a control panel applet?

0 Answers  


Can ALTER TABLE statment on Paradox tables removes passwords ?

0 Answers  


How to Pass TPrinter handle to GetDeviceCaps() ?

0 Answers  


Categories