Search found 7 matches

by shovavnik
Thu Oct 01, 2009 1:05 am
Forum: Development, plugins and third party software
Topic: Calling Everything from .NET
Replies: 11
Views: 31230

Re: Calling Everything from .NET

I'm finally making some progress. I thought I'd keep you posted... I'm able to send messages to Everything and the messages are registering in the debug console. There's still something wrong with the way I'm sending strings, so the result counts are still incorrect. I've also started setting up the...
by shovavnik
Sun Sep 27, 2009 12:28 pm
Forum: Development, plugins and third party software
Topic: Calling Everything from .NET
Replies: 11
Views: 31230

Re: Calling Everything from .NET

Thanks for the pointer. I'll get back to this in a few days, after the holiday.
by shovavnik
Fri Sep 25, 2009 2:11 pm
Forum: Development, plugins and third party software
Topic: Calling Everything from .NET
Replies: 11
Views: 31230

Re: Calling Everything from .NET

If you are not getting IPC messages in the debug console you could be sending the IPC query message to the wrong window? Make sure you send it to the EVERYTHING_TASKBAR_NOTIFICATION window. You can use MS Spy++ to check if the EVERYTHING_TASKBAR_NOTIFICATION window is processing the IPC request and...
by shovavnik
Tue Sep 22, 2009 11:59 pm
Forum: Development, plugins and third party software
Topic: Calling Everything from .NET
Replies: 11
Views: 31230

Re: Calling Everything from .NET

I did some more exploratory work today. I'm sure I'm missing something simple. Your comments have been very helpful! I have very little experience with MFC and COM development, and this foray into unknown territory is an interesting challenge. Can you recommend a tool or two that might help trap the...
by shovavnik
Mon Sep 21, 2009 11:28 pm
Forum: Development, plugins and third party software
Topic: Calling Everything from .NET
Replies: 11
Views: 31230

Re: Calling Everything from .NET

Making progress... I realize c# isn't your forte, and I really appreciate your help! I'm now creating a byte array built almost like the one you described, except for unicode. Here's what it looks like: 0xC00B3F00 [3221962496] 0x00000000 [0] 0x00000000 [0] 0x00000000 [0] 0xFFFFFFFF [4294967295] 0x66...
by shovavnik
Sun Sep 20, 2009 1:20 pm
Forum: Development, plugins and third party software
Topic: Calling Everything from .NET
Replies: 11
Views: 31230

Re: Calling Everything from .NET

Thanks for the pointers :). At some point, I started looking for more helpful info from Everything, so I'd already found errorlog.txt and the -debug console. Unfortunately, they haven't been much help. Spy++ also isn't providing much assistance: it only shows a message was sent, but obviously nothin...
by shovavnik
Sat Sep 19, 2009 10:56 pm
Forum: Development, plugins and third party software
Topic: Calling Everything from .NET
Replies: 11
Views: 31230

Calling Everything from .NET

I'm trying to communicate with Everything from .NET but am having some trouble. I based my code on the ipctest.c and .h files included with the SDK. The problem is that the only result I'm getting from the SendMessage call is the value 0. I've also determined that the size of the query struct return...