NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) ZTools and UltraXMLTV v
« Previous 1 … 6 7 8 9 10 12 Next »
ZSchedFix Beta Support and Suggestions

 
  • 0 Vote(s) - 0 Average
ZSchedFix Beta Support and Suggestions
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#1
2007-05-24, 04:35 AM
Please feel free to post any comments or concerns regarding ZSchedFix

http://gbpvr.com/pmwiki/pmwiki.php/Utility/ZSchedFix

Download from here...
http://gbpvr.com/pmwiki/pmwiki.php/Utility/ZTools
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
-Oz-
Offline

Posting Freak

Posts: 803
Threads: 33
Joined: Aug 2006
#2
2007-05-24, 05:17 AM
Downloaded it, double clicked to run it; it crashed, not a vb crash but a windows one.
Dan Blomberg
[SIZE="1"]HTPC 1: MSI K8NGM2-FID, AMD 64 3000+, WD 200gb HDD, 1gb ram, NSK2400, PVR-500, Harmony 659
HTPC 2: ASUS M2NPV-VM, AMD 64 3200+, WD 250gb HDD, 1gb ram, nVidia DualTV MCE, NSK2400, Harmony 720
HTPC 3: GIGABYTE GA-E7AUM-DS2H GeForce 9400, Intel E5200 Wolfdale, WD 640gb HDD, 4gb ram, Antec Fusion 2, HVR-1600, hdhomerun, Harmony 880, PCH A-110
GBPVR 1.4.7 Additions: Weather2, UltraXMLTV, Comskip
Project: Setup Logitech Harmony Remote[/SIZE]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#3
2007-05-24, 06:02 AM
-Oz- Wrote:Downloaded it, double clicked to run it; it crashed, not a vb crash but a windows one.

LOL

Well Well... I'll do some checking. Glad to have you on board for this one Oz. Though currently, the one function (when working) is quite basic. Works or doesn't...
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
martint123
Offline

Posting Freak

UK, East Yorkshire
Posts: 4,658
Threads: 208
Joined: Nov 2005
#4
2007-05-24, 01:48 PM
Likewise the windows crash. module was sqlite3vb.dll

I just unzipped it into a temp directory, installed the two VB bits you mentioned in the wiki.

my program files dir is on E drive if that is of any consequence.

cheers
Martin
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#5
2007-05-24, 04:36 PM
martint123 Wrote:Likewise the windows crash. module was sqlite3vb.dll

I just unzipped it into a temp directory, installed the two VB bits you mentioned in the wiki.

my program files dir is on E drive if that is of any consequence.

cheers
Martin

Yeah that's what's probably causing you guys greif. I'm big on Defaults. (have I said that enough) and so now I will have to confirm the operation with Windows and Program Files on different partitions... It shouldn't be too hard to add some logging and find exactly where the troubles lays. Check back in a few hours
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
martint123
Offline

Posting Freak

UK, East Yorkshire
Posts: 4,658
Threads: 208
Joined: Nov 2005
#6
2007-05-24, 05:07 PM
I copied the database and some other stuff into my temp playing directory in the hope that it might have a look in "current dir" first - seems not though.
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#7
2007-05-24, 07:10 PM
martint123 Wrote:I copied the database and some other stuff into my temp playing directory in the hope that it might have a look in "current dir" first - seems not though.

I'm looking into the possibility that sqlite3vb.dll was compiled and hardcoded to use c:\windows\system32 ONLY that would suck... I know that my software would go anywhere.

Just so you all know, that what happens when ZSchedFix starts is it tests for existence of sqlite3vb.dll in the %SystemDir%. (eg c:\windows\system32) If not, it sends a copy of sqlite3vb.dll to that location... From then on, My programs work cause the dll is in the right place...

I will be adding code that logs the test for existence...

I think I might have to donate to sqlite3vb.dll in order to get him to change the pathing, if that's the issue.
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
-Oz-
Offline

Posting Freak

Posts: 803
Threads: 33
Joined: Aug 2006
#8
2007-05-24, 07:18 PM
zhed, i'm using the dll in one of my programs but the code in your vb6 sample did not properly move the dll to the windows directory. It couldn't get the windows dir.

Try this code:
Quote:Const MAX_PATH = 255

Private Declare Function GetWindowsDirectory Lib "kernel32" _
Alias "GetWindowsDirectoryA" (ByVal lpBuffer As String, _
ByVal nSize As Long) As Long

Public Function GetWindowsDir() As String
Dim strRet As String, lngRet As Long

strRet = String$(MAX_PATH, 0)
lngRet = GetWindowsDirectory(strRet, MAX_PATH)
GetWindowsDir = Left(strRet, lngRet)

End Function

then called and handled with the following:
Quote:Dim fso As New FileSystemObject

'SQLite3VB.dll must be in the windows path. Copy if needed
If fso.FileExists(GetWindowsDir() & "\SQLite3VB.dll") = False Then
If fso.FileExists(App.Path & "\SQLite3VB.dll") = False Then
MsgBox "This program needs SQLite3VB.dll in the app path. Exiting"
Unload Me: End
End If
FileCopy App.Path & "\SQLite3VB.dll", GetWindowsDir() & "\SQLite3VB.dll"
End If

Make sure you have Microsoft Scripting & Runtime references as the FileSystemObjects need it. And i'm using mine just in C:\Windows
Dan Blomberg
[SIZE="1"]HTPC 1: MSI K8NGM2-FID, AMD 64 3000+, WD 200gb HDD, 1gb ram, NSK2400, PVR-500, Harmony 659
HTPC 2: ASUS M2NPV-VM, AMD 64 3200+, WD 250gb HDD, 1gb ram, nVidia DualTV MCE, NSK2400, Harmony 720
HTPC 3: GIGABYTE GA-E7AUM-DS2H GeForce 9400, Intel E5200 Wolfdale, WD 640gb HDD, 4gb ram, Antec Fusion 2, HVR-1600, hdhomerun, Harmony 880, PCH A-110
GBPVR 1.4.7 Additions: Weather2, UltraXMLTV, Comskip
Project: Setup Logitech Harmony Remote[/SIZE]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#9
2007-05-24, 07:27 PM
-Oz- Wrote:zhed, i'm using the dll in one of my programs but the code in your vb6 sample did not properly move the dll to the windows directory. It couldn't get the windows dir.

Try this code:


then called and handled with the following:


Make sure you have Microsoft Scripting & Runtime references as the FileSystemObjects need it. And i'm using mine just in C:\Windows

Thanks Dan. I just realized that I should be refering to the Windows not the Weindows/System33 dir. (Windows was the case in my code...)

I had a copy procedure similar to your code. And there was a time when my code failed and did notg get the windir path properly. I thought I had it...

When I get home, and check, if it's not obvious, I'll be stealing your code snippet... (I never did show you mine did I? remind me again...)
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#10
2007-05-24, 07:29 PM
-Oz- Wrote:zhed, i'm using the dll in one of my programs but the code in your vb6 sample did not properly move the dll to the windows directory. It couldn't get the windows dir.

Try this code:


then called and handled with the following:


Make sure you have Microsoft Scripting & Runtime references as the FileSystemObjects need it. And i'm using mine just in C:\Windows

(Freaky actually how my code looks like yours.... Cool....)
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
« Next Oldest | Next Newest »

Users browsing this thread: 2 Guest(s)

Pages (6): 1 2 3 4 5 6 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Beta: UltraXMLTV Post-Process Renamer zehd 25 22,887 2011-11-14, 06:18 AM
Last Post: Ski098
  UltraXMLTV - New Beta zehd 46 32,018 2010-11-17, 09:08 PM
Last Post: zehd
  UltraXMLTV Support... zehd 73 38,011 2010-02-13, 05:59 PM
Last Post: subvertbeats
  UltraXMLTV Enhancer Version 2 - Beta zehd 515 103,170 2009-04-04, 01:08 AM
Last Post: zehd
  TVxb: Does it support import of XML skoka123 1 2,184 2008-08-31, 04:04 PM
Last Post: zehd
  ZProcess Beta with dvr-ms center cut support zehd 7 3,371 2007-09-24, 04:08 PM
Last Post: zehd
  ZSchedFix: File not found... zehd 49 18,792 2007-08-17, 01:54 AM
Last Post: zehd
  ZRename Support and Suggestions -Oz- 44 13,267 2007-05-31, 03:28 AM
Last Post: zehd
  ZRename - Beta COMPLETE! zehd 12 5,521 2007-05-24, 06:03 AM
Last Post: zehd
  ZSchedFix - Beta zehd 0 1,859 2007-05-24, 04:25 AM
Last Post: zehd

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

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

Linear Mode
Threaded Mode