NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 20 21 22 23 24 … 93 Next »
WizTools - 1.x Plugin Development Toolkit

 
  • 0 Vote(s) - 0 Average
WizTools - 1.x Plugin Development Toolkit
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#11
2007-09-06, 09:15 PM
psycik Wrote:I think it will now, but I think there is going to be a move to not put stuff in the gbpvr directory later on. Its part of the "Vista-isation" of gbpvr. Vista seems to get a bit snotty about files changing in the program files directory....but I don't know how much that affects dll references.
I'm pretty sure sub made some changes so it will ALWAYS look in the common directory. This works on W2K, but not sure about VISTA.
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#12
2007-09-07, 05:13 AM
Updated to new version (see 1st post on this thread)

09/05/07 : v1.0.7
* Added Enabled, setButtonEnabled, isButtonEnabled to WizUiButtonList
* Updated WizUiHelperPlugin demo to include a Popup Sample.
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#13
2007-09-07, 11:29 AM
Hi. Just wondering how the IMDB lookup works as I'm only getting a 1 in 5 hit rate from it?

Those it couldnt find all seem to cause the IMDB 'Firefox search' to get to a page like this rather than the actual film page.

(Title examples and results from my log)
Code:
06/09/2007 16:42:55    IMDB Grabber - Found film '1408'
06/09/2007 16:42:56    IMDB Grabber - Could not find film 'Bratz: The Movie'
06/09/2007 16:42:58    IMDB Grabber - Could not find film 'Death Sentence'
06/09/2007 16:43:00    IMDB Grabber - Could not find film 'Knocked Up'
06/09/2007 16:43:02    IMDB Grabber - Could not find film 'No Reservations'
06/09/2007 16:43:22    IMDB Grabber - Found film 'Run Fat Boy Run'
06/09/2007 16:43:25    IMDB Grabber - Could not find film 'Surf's Up'
06/09/2007 16:43:28    IMDB Grabber - Found film 'The Simpsons Movie'

Using Google's 'feeling lucky' for "Death Sentence" imdb takes you straight to the correct page. Maybe something the grabber could make use of?
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#14
2007-09-07, 03:27 PM
McBainUK Wrote:Hi. Just wondering how the IMDB lookup works as I'm only getting a 1 in 5 hit rate from it?

Those it couldnt find all seem to cause the IMDB 'Firefox search' to get to a page like this rather than the actual film page.

(Title examples and results from my log)
Code:
06/09/2007 16:42:55    IMDB Grabber - Found film '1408'
06/09/2007 16:42:56    IMDB Grabber - Could not find film 'Bratz: The Movie'
06/09/2007 16:42:58    IMDB Grabber - Could not find film 'Death Sentence'
06/09/2007 16:43:00    IMDB Grabber - Could not find film 'Knocked Up'
06/09/2007 16:43:02    IMDB Grabber - Could not find film 'No Reservations'
06/09/2007 16:43:22    IMDB Grabber - Found film 'Run Fat Boy Run'
06/09/2007 16:43:25    IMDB Grabber - Could not find film 'Surf's Up'
06/09/2007 16:43:28    IMDB Grabber - Found film 'The Simpsons Movie'

Using Google's 'feeling lucky' for "Death Sentence" imdb takes you straight to the correct page. Maybe something the grabber could make use of?
It basically parses the results from the IMDB search http request. I'll take a look at your entries and see what is going on. Also, good idea about checking out the Google query, I'll look into it.
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#15
2007-09-08, 03:06 PM
I'm making use of the IMDB grabber in the updater.exe for Cinema Listings plug-in. This runs outside of GB-PVR as an external app.

I've put the latest version of the WizUiHelper.dll in gbpvr\Plugins\common\ but unless I copy GBPVRPublic.dll there it fails to load, reporting the error below.

Quote:Could not load file or assembly 'GBPVRPublic, Version=1.0.2763.18991, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057

Anything you/I can do about this?
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#16
2007-09-09, 12:01 AM (This post was last modified: 2007-09-09, 01:23 AM by JavaWiz.)
McBainUK Wrote:I'm making use of the IMDB grabber in the updater.exe for Cinema Listings plug-in. This runs outside of GB-PVR as an external app.

I've put the latest version of the WizUiHelper.dll in gbpvr\Plugins\common\ but unless I copy GBPVRPublic.dll there it fails to load, reporting the error below.

Anything you/I can do about this?
Possibly. Refer to this thread which talks about how to force a DLL lookup in a particular location if it is not found on the default search path: http://forums.gbpvr.com/showpost.php?p=2...tcount=129

If you put the code referenced in the above thread in your calling application, AND have it look up in GBPVRInstallDir as well, the offending reference should resolve at run-time.

EDIT: Additionally, if you put gbpvr in your path, it will locate the DLL in question.


sub - if there is anything else you did to make the plugin/common lookup code work, could you chime in here for McBain and I?
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,789
Threads: 769
Joined: Nov 2003
#17
2007-09-09, 12:31 AM
I've got it on my list of things to look into, but I dont really have any info for you yet.
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#18
2007-09-09, 09:36 AM
Quote:If you put the code referenced in the above thread in your calling application, AND have it look up in GBPVRInstallDir as well, the offending reference should resolve at run-time.
I had that code already. The problem was that I never used GBPVR.Public in my code so it was never trying to load it. It was only when the program tried to use your dll (which does reference and load it) that it failed.

The fix was to put a arbitrary line using GBPVR.Public so it would run GBPVRPublic.dll through my AssemblyResolve event handler. Very pleased Smile
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
pastro
Offline

Posting Freak

Posts: 1,885
Threads: 128
Joined: Jul 2006
#19
2007-09-13, 04:11 AM
Is there a way to make a wizuilist not be multiline? It automatically adds a second line when the text doesn't fit.
I know I can shorten the text to make sure it always fits, but I'd prefer it was truncated to a single line.
GBpvr PC: Intel Celeron 1.8 Ghz. 768 Mb WinXp Home Sp2
Video: Diamond 128 Mb 9550
Capture Cards: PVR-150 & PVR-150 MCE w/fm + 2x MVP
Author of: BurnDVDX2 and Skiptool
pastro
Offline

Posting Freak

Posts: 1,885
Threads: 128
Joined: Jul 2006
#20
2007-09-14, 01:02 AM
Probably something I am doing, but as I step through the controls it works correctly when I go to the left and it goes about halfway through if I go to the right and then it starts over. Any ideas?
GBpvr PC: Intel Celeron 1.8 Ghz. 768 Mb WinXp Home Sp2
Video: Diamond 128 Mb 9550
Capture Cards: PVR-150 & PVR-150 MCE w/fm + 2x MVP
Author of: BurnDVDX2 and Skiptool
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (31): « Previous 1 2 3 4 5 … 31 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  PIP plugin for Kodi sgilani 2 3,046 2022-10-17, 12:44 AM
Last Post: sgilani
  New Systems Plugin kirschey 10 3,524 2020-11-14, 08:01 PM
Last Post: sub
  Test/Development environment for npvr.db3 scJohn 10 4,514 2020-09-04, 09:14 PM
Last Post: scJohn
  VIdeo playback from plugin mvallevand 5 3,609 2015-08-06, 10:43 PM
Last Post: sub
  Attention Sub: Open TV / Custom Data Grabber plugin Benoire 2 2,988 2014-11-14, 02:05 AM
Last Post: Benoire
  API docs to help with plugin development? McBainUK 3 2,850 2013-06-08, 06:14 PM
Last Post: sub
  Refreshing TV Guide Data (after System plugin EPG update) imilne 13 6,299 2013-03-24, 08:03 PM
Last Post: imilne
  sabnzbd plugin to show processed files Wakalaka 1 2,009 2013-03-12, 06:48 AM
Last Post: psycik
  Integrated Development Environment (IDE) for plugins osx-addict 5 2,845 2012-10-18, 08:35 PM
Last Post: osx-addict
  Plugin problems with started from the command line mvallevand 11 5,176 2012-08-12, 07:56 PM
Last Post: sub

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode