Hi !
One of the Apps I use a lot (Tessie is the top one for sure) is Evernote.
Evernote is very useful as a "non-organized Database". It's simply a huge collection of Notes (kind of html/xml files) with a very good Search Feature. There's a nice mobile App to. We can throw pics/audios/etc into this Database... I throw payment receipts , pictures, some photos, handwritten notes, PDF files, web page clips and all sort of random (not organized) piece of information.
I'm a very heavy user of EN, with almost 12 K Notes there inside...
EN has a also sytem wide key (Global Windows Key) to Find (Google) a string within the notes. This Search is very robust. It can find even text within pictures. Say I take a picture of an OutDoor. It can find text there inside !
Anyway, I did a Macro to grab Tse's current word and find this word within Evernote. It launches a BTM (TCC/4NT Batch File) to do it.
I wonder if there would be a more direct way to do this. A more "polished" way...
Here's the macro (very simple/humble) :
----------
proc Find_Within_Evernote()
string token[MAXSTRINGLEN]=GetWord()
if Length(token)
StartPgm("C:\TCC\TCC.EXE","/CC:\TSE32\FIND_EVERNOTE.BTM " + GetWord(),"")
else
Warn("Not on a Word...")
endif
end
proc Main()
Find_Within_Evernote()
end
<CtrlShift E> Find_Within_Evernote()
--------------
And here's the BTM (Batch File) it runs :
KEYSTACK CTRL-SHIFT-F /W20 "%1" ENTER
REM CTRL+SHIFT+F IS EN GLOBAL FIND KEY...
DELAY 3
QUIT
-------------------------------------------------------
Maybe there would be some sort of DLL to do it directly, or internal TSE function....
Anyone else uses Evernote ? Still using Legacy version cause is faster..
Thanks 4 your help !