--
Phillip Kavan <mailto:kava...@dls.net>
> ...how do i get Navigation Services to default to the "All Files"
> selection in the File Types popup?
>
> Phillip Kavan <mailto:kava...@dls.net>
Here is what I do
I call the function NavGetFile,
where the most important parameters first are seup as follows;
var NtypeList: NavTypeListHandle;
NtypeList:=NavTypeListHandle(NewHandle(sizeof(NavTypeList)));
NtypeList^^.componentsignature:=kNavGenericSignature;
NtypeList^^.osTypecount:=1;
NtypeList^^.osType[0]:="****";
I call it like
Err:= NavGetFile(defaultLocation,Nreply,@dialogOptions,eventProc,
previewProc,filterProc,nil,callBackUD);
Hope this was what you wanted
Terje