Me again with another question.
I am using a shelllist from raize and want to add some code to the on click event to test if the selected item is valid (file, folder or blank) but I am unsure how to correctly do this.
Here is what I have.
procedure ZipCheck;
var
Path : string;
i : integer;
s : string;
DecompStream : TMemoryStream;
LExtention : string;
begin
Path := form2.FileList.SelectedItem.PathName;
form2.FNameEdit.Text := Path;
if form2.FileList.SelectedItem.IsValid = true then
begin
LExtention := TPath.GetExtension(form2.filelist.SelectedItem.PathName);
if tpath.GetExtension(LExtention) = '.zip' then
begin
Showmessage(LExtention);
end;
end;
end;
What happens is when I click on a blank area of the shelllist I get an exception error.