[Development] External WLX plugins loader
Moderators: Hacker, petermad, Stefan2, white
Both are true! Use your MainForm as a parent to plugin's window (that will force Imagine to show its toolbar) and position plugin's window over desired Panel. Both Panel and plugin's window will be children of the MainForm and you can control their Z-order and size freely.Alextp wrote:Oh, I misunderstood you.
I thought that you suggested to pass Form Window's handle to ListLoad. But you just suggested to position plugin window properly.
2poiuytr
Please check does IniEd plugin unload correctly by your code. I'm getting AV on ListCloseWindow. Is the problem in plugin?
http://www.totalcmd.net/plugring/inied.html
Please check does IniEd plugin unload correctly by your code. I'm getting AV on ListCloseWindow. Is the problem in plugin?
http://www.totalcmd.net/plugring/inied.html
I have problems with Office.wlx too: it doesn't redraw on first call. I tried to call SendMessage(hWnd, WM_PAINT...), no sucess.
http://www.totalcmd.net/plugring/office.html
http://www.totalcmd.net/plugring/office.html
Works like a charm here. Does plugin redraw its window after resizing it by mouse?Alextp wrote:I have problems with Office.wlx too: it doesn't redraw on first call. I tried to call SendMessage(hWnd, WM_PAINT...), no sucess.
http://www.totalcmd.net/plugring/office.html
2poiuytr
This (problem with office.wlx) is somehow solved in my second loader (ATViewer). Although I didn't change anything.
---------
Another question: can you confirm this TBeu's bugreport with your loader?:
http://ghisler.ch/board/viewtopic.php?p=90946#90946
I confirm it.
Are the problems in plugins?
This (problem with office.wlx) is somehow solved in my second loader (ATViewer). Although I didn't change anything.
---------
Another question: can you confirm this TBeu's bugreport with your loader?:
http://ghisler.ch/board/viewtopic.php?p=90946#90946
I confirm it.
Are the problems in plugins?
It is more likely that something have been changed, but you just don't realize what exactly.Alextp wrote:2poiuytr
This (problem with office.wlx) is somehow solved in my second loader (ATViewer). Although I didn't change anything.
FileInfo works fine, SynPlus crashes inside ListLoad function.Another question: can you confirm this TBeu's bugreport with your loader?:
http://ghisler.ch/board/viewtopic.php?p=90946#90946
You can easily check my loader by yourself, I have posted sources with compiled exe here.
Of course...It is more likely that something have been changed, but you just don't realize what exactly.
Well, FileInfo works fine but unloads with exception.FileInfo works fine, SynPlus crashes inside ListLoad function.

SynPlus: maybe you specified incorrect info in ListSetDefaultParams, e.g. API version number (I use 1.30).
Works fine here, only error in unloading.
Thanks. I have forgot about them.You can easily check my loader by yourself, I have posted sources with compiled exe here.
FileInfo handles all my impacts without a single crash. Respect to its author.Well, FileInfo works fine but unloads with exception.
I found it. I called ListLoad with ShowFlags = 0, but when I set it properly (lcp_* combination) SynPlus works just fine. No crashes on load and on unload also.SynPlus: maybe you specified incorrect info in ListSetDefaultParams, e.g. API version number (I use 1.30).
Works fine here, only error in unloading.
Here is sources and compiled exe to play with.