Search found 5 matches

by alphadennis
Mon Aug 05, 2024 11:12 pm
Forum: Coding Questions
Topic: SHGetPathFromIDList_ not working
Replies: 10
Views: 1567

Re: SHGetPathFromIDList_ not working

Fred wrote: Mon Aug 05, 2024 8:47 am First thing to check is if you are still using '.l' for variable which handle pointers (should be '.i' or no suffix)
Thanks, Result.i worked in 6.11 LTS (Windows - x64)

Don't lnow why Result/L worked ok in earlier versions.
by alphadennis
Mon Aug 05, 2024 11:09 pm
Forum: Coding Questions
Topic: SHGetPathFromIDList_ not working
Replies: 10
Views: 1567

Re: SHGetPathFromIDList_ not working

Many thanks! Result.i worked in 6.11 LTS (Windows - x64)

Don't know why Result.L workeked in 2023 versions and not this version?
by alphadennis
Mon Aug 05, 2024 6:30 pm
Forum: Coding Questions
Topic: SHGetPathFromIDList_ not working
Replies: 10
Views: 1567

Re: SHGetPathFromIDList_ not working



SHGetPathFromIDList_(Result, @Folder) does not work in the current PureBasic 6.11 LTS (Windows - x64).

It does not give me an error and just terminates the run and puts me back to the windows screen

It worked in my compiled EXE on 5/282023.

What is the new purebasic function?

Windows has ...
by alphadennis
Mon Aug 05, 2024 6:24 pm
Forum: Coding Questions
Topic: SHGetPathFromIDList_ not working
Replies: 10
Views: 1567

Re: SHGetPathFromIDList_ not working

Here is my code. It fails at SHGetPathFromIDList_ becuase MessageRequester("exiting pathrequest","SHGetPathFromIDList") is never hit.

Folder is set in
Global Folder.s


#BIF_RETURNONLYFSDIRS = 1;
#BIF_DONTGOBELOWDOMAIN = 2;
#BIF_STATUSTEXT = 4;
#BIF_RETURNFSANCESTORS = 8;
#BIF_EDITBOX = 16;
;#BIF ...
by alphadennis
Mon Aug 05, 2024 12:04 am
Forum: Coding Questions
Topic: SHGetPathFromIDList_ not working
Replies: 10
Views: 1567

SHGetPathFromIDList_ not working

SHGetPathFromIDList_(Result, @Folder) does not work in the current PureBasic 6.11 LTS (Windows - x64).

It does not give me an error and just terminates the run and puts me back to the windows screen

It worked in my compiled EXE on 5/282023.

What is the new purebasic function?

Windows has ...