i need some help, i downloaded and ran ISense, but the tooltip isn't giving me the parameters. heres a screenshot:
i tried with both notepad and notepad++
thanks
EDIT:
SOLUTION
the problem is due to using windows display setting of 120 dpi. the default is 96 dpi. using 120dpi changes the size of your fonts, and ISense is having trouble with that.
to fix: change the code in ToolTip_Create() function
old:
Code:
sWidth := StrLen(str) * 8 + 8
new:
Code:
sWidth := StrLen(str) * 10 + 10
if you wanted a solution do handle both, i THINK you could do something like this:
Code:
RegRead, LogPixels, HKEY_LOCAL_MACHINE, SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontDPI, LogPixels
if (LogPixels=120)
{
sWidth := StrLen(str) * 10 + 10
}
else if (LogPixels=96)
{
sWidth := StrLen(str) * 8 + 8
}
i'm not sure if there are other problems elsewhere, there probably is, but this was enough to fix. i have not bothered to fix the setup gui, but there is obvious overlapping on the controls there as well