2009-09-24, 12:41 AM
Why can I not see attachments on this thread?
2009-09-24, 12:41 AM
Why can I not see attachments on this thread?
2009-09-24, 11:08 AM
JavaWiz Wrote:What attachments in particular are you looking for? I was looking for "a helper DLL and preliminary tutorial document" mentioned in the first post of the thread. I never was able to find a document describing okugin development.
2009-09-24, 11:10 AM
However, it appears that I lack reading skills. I found what I was looking for. Thanks.
2009-09-25, 07:23 AM
Have just spotted this, been meaning to get into plug-in development and learn C# or .net, this should be very useful, and with the winter months approaching my social activities decrease, so its the best time to learn.
2009-12-14, 01:37 PM
Has it really been six months since I last bumped this thread? My.
Anyway - a question this time about WizUiList. I've been using it for a couple years now without problem. Tonight, though, I tried to use it on a popup, and had... well, not nothing but problems, but certainly a lot of them. Short version - the control doesn't seem to be rendering correctly. All appears good so long as it does not have to scroll, but as soon as any sort of scrolling behaviour takes place, the control gets quite confused. Some items are not rendered at all. Current selected item reappears in the middle of the list, sometimes with multiple items marked as 'selected'. Generally a bad time. Are there additional steps I need to take to use WizUiList in a popup? If not, any thoughts on what I could be doing wrong? Once again, thanks!
2009-12-14, 10:38 PM
Ommina Wrote:Has it really been six months since I last bumped this thread? My. Any chance you could send me a sample of your code? I use lists in pop-ups in SearchWiz and MovieWiz and they seem to work ok.
2009-12-15, 02:47 AM
JavaWiz Wrote:Any chance you could send me a sample of your code? I use lists in pop-ups in SearchWiz and MovieWiz and they seem to work ok. Well, armed with the knowledge that it does work (or at least, can), I'll spend some more time tonight trying to work it out for myself. If I can't find out what is going on by the end of the evening, I'll take you up on your offer and send you some code. Thank you! Unrelated question -- what is the correct method of disposing popup resources now? I've been implementing IDisposable and calling .Dispose on the control manager. But I note that a bit of memory optimizing was done on the library fairly recently, so I'm curious what (if anything) I should be disposing and where.
2009-12-15, 03:48 AM
Ommina Wrote:Well, armed with the knowledge that it does work (or at least, can), I'll spend some more time tonight trying to work it out for myself. If I can't find out what is going on by the end of the evening, I'll take you up on your offer and send you some code. Thank you! This routine is in the plugin task and used both to set a popup as the current popup, and to remove the current popup: Code: [SIZE=2][COLOR=#808080][SIZE=2][COLOR=#808080]///[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#808080][SIZE=2][COLOR=#808080]<summary>[/COLOR][/SIZE] For Example, to set a popup: Code: [SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]case[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#a31515][SIZE=2][COLOR=#a31515]"manage filters"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]:[/SIZE] and when done with it (usually in handlePopupCallback method) Code: [SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]public[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]void[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] handlePopupCallback([/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]object[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] popup, [/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]string[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] command)[/SIZE]
2009-12-15, 11:01 PM
Thanks for the code on disposing. That's pretty much exactly what I have been using, probably having been copied from your original skeleton. With that in mind, I'll remove the additional bits of disposing that I've been doing. (Which didn't play very well with the recent library memory changes anyway.)
Also - I discovered the error I was making with the list control. In the end, it was a simple matter of .activating not being set to false. And that cost... hours. Thanks again. |
|