Search found 19 matches

by kaifuzi
Thu Jan 21, 2021 8:53 pm
Forum: Development, plugins and third party software
Topic: How to know Everything is running or not?
Replies: 4
Views: 22635

Re: How to know Everything is running or not?

After try your code, it works well, thanks!
by kaifuzi
Wed Jan 20, 2021 11:23 pm
Forum: Development, plugins and third party software
Topic: How to know Everything is running or not?
Replies: 4
Views: 22635

Re: How to know Everything is running or not?

Thanks!I will test this approach and back to here.
by kaifuzi
Wed Jan 20, 2021 10:40 pm
Forum: Development, plugins and third party software
Topic: How to know Everything is running or not?
Replies: 4
Views: 22635

How to know Everything is running or not?

'Becuase Everything has two mode, admin mode and service mode. For service mode, there is Everything.exe service, I use commandline<>null to skip it in query Dim everythingProcessCount As Integer = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2").ExecQuery("selec...
by kaifuzi
Wed Jan 20, 2021 12:50 am
Forum: Development, plugins and third party software
Topic: SDK error When using Everything Service mode
Replies: 11
Views: 26077

Re: SDK error When using Everything Service mode

After several tests, I think the problem is because of admin right. Dim fs, ftdm As UInt64 Everything_GetResultDateCreated(i, ftdm) DateCreated = System.DateTime.FromFileTime(ftdm) 'Here is the probelm code. But in Everything admin mode, it's fine. System.DateTime.FromFileTime(ftdm) can't get the co...
by kaifuzi
Wed Jan 20, 2021 12:32 am
Forum: Development, plugins and third party software
Topic: SDK error When using Everything Service mode
Replies: 11
Views: 26077

Re: SDK error When using Everything Service mode

After debug, I found the reason, but I don't know why it happened.
Here is the code which have issue, it's VB.net:
Dim fs, ftdm As UInt64
Everything_GetResultDateCreated(i, ftdm)
DateCreated = System.DateTime.FromFileTime(ftdm) 'Here is the probelm code. But in Everything admin mode, it's fine.
by kaifuzi
Wed Jan 20, 2021 12:08 am
Forum: Development, plugins and third party software
Topic: SDK error When using Everything Service mode
Replies: 11
Views: 26077

Re: SDK error When using Everything Service mode

After test, the Everything_Query returns success.
by kaifuzi
Wed Jan 20, 2021 12:01 am
Forum: Development, plugins and third party software
Topic: SDK error When using Everything Service mode
Replies: 11
Views: 26077

Re: SDK error When using Everything Service mode

The issue occurs when the Everything Search Client is running.
And I'm running the Everything Search Client as a standard user with the Everything Service installed.
This issue doesn't always happen. It happens for some search, e.g. ".xml test".
by kaifuzi
Tue Jan 19, 2021 9:47 pm
Forum: Development, plugins and third party software
Topic: SDK error When using Everything Service mode
Replies: 11
Views: 26077

SDK error When using Everything Service mode

In Win10, we need to run Everything as admin, otherwise we need to check the option Everything Service, and uncheck Run as administrator. When I use admin mode, I search by SDK, it works well. But when I use Everything Service mode, there will be error "Arithmetic operation resulted in an overf...
by kaifuzi
Fri May 31, 2019 9:18 am
Forum: Development, plugins and third party software
Topic: Does Everything SDK can get PIDL?
Replies: 2
Views: 23683

Does Everything SDK can get PIDL?

Hello, does Everything SDK can get file/directory PIDL? Thanks!
by kaifuzi
Thu May 30, 2019 1:37 pm
Forum: Development, plugins and third party software
Topic: Can we get the search result only for files or folders?
Replies: 4
Views: 16634

Re: Can we get the search result only for files or folders?

Sorry, I can't get your point.
How can I cadd file or folder in code?
Thanks!
by kaifuzi
Thu May 30, 2019 1:23 pm
Forum: Development, plugins and third party software
Topic: Can we get the search result only for files or folders?
Replies: 4
Views: 16634

Can we get the search result only for files or folders?

Hello,
Is it possible to get the search result only for files or folders?
I can't find this option from Everything_SetRequestFlags.
Thanks!
by kaifuzi
Thu May 30, 2019 1:18 pm
Forum: Support
Topic: 1.4.1.935 Search Type Filter is missing
Replies: 2
Views: 3871

Re: 1.4.1.935 Search Type Filter is missing

I got it, thanks!
by kaifuzi
Thu May 30, 2019 1:13 pm
Forum: Support
Topic: 1.4.1.935 Search Type Filter is missing
Replies: 2
Views: 3871

1.4.1.935 Search Type Filter is missing

Hello, the search type filter in the right of search box is missing in 1.4.1.935, is it cancelled?
Thanks!
by kaifuzi
Thu May 30, 2019 11:48 am
Forum: Development, plugins and third party software
Topic: Everything_GetResultFileName doesn't work at .Net4.5 and later
Replies: 4
Views: 14912

Re: Everything_GetResultFileName doesn't work at .Net4.5 and later

Yes, it works after I call Everything_QueryW. My mistake.
Thanks a lot!
by kaifuzi
Thu May 30, 2019 9:37 am
Forum: Development, plugins and third party software
Topic: Everything_GetResultFileName doesn't work at .Net4.5 and later
Replies: 4
Views: 14912

Re: Everything_GetResultFileName doesn't work at .Net4.5 and later

This crash problem is in C# and VB.net, .Net4.5 and after. I changed the declare as you suggest In C#, it works! But I still get a problem in VB.net. I use below code, it works: Public Declare Function Everything_GetResultFileNameA Lib "Everything32.dll" (ByVal index As Integer) As IntPtr ...
by kaifuzi
Thu May 30, 2019 12:57 am
Forum: Development, plugins and third party software
Topic: Everything_GetResultFileName doesn't work at .Net4.5 and later
Replies: 4
Views: 14912

Everything_GetResultFileName doesn't work at .Net4.5 and later

I found that Everything_GetResultFileName doesn't work at .Net4.5 and later version, it will cause application crash, but it works at .Net4 and before.
Does any one meet this problem?