Author Topic: PB COOL [AON] support  (Read 61690 times)

Offline {FMZ}NYPDSwat

  • PSA Group Moderator
  • *
  • Posts: 1960
  • Kevin
    • {FMZ}
Re: PB COOL [AON] support
« Reply #225 on: September 18, 2007, 06:40:48 pm »
Alex I didn't get it in the beta, but I am getting the same as Swat in release version. And I also get the one that I sent to you already. It happens at startup.

Quote from: =ACES=NYPDSwat[AON
]
you'll have work out a Vista beta test group to help you Smiley

Looks like I'll be making a patch with-in 48 hours of a release... What am I? Microsoft? lol...  :evil:
Ok thanks for the feedback guys... I'm gonna plug away at her again.

Yes I will Swat =D
After some fixes I'll post a link here to get any of you who are willing to give it a test drive so I can address all the errors before I put it on SourceForge and look like a retard :)

You don't look like a retard every program has bugs this ones is Vista lol :)



"You can't fight cheaters with cheating, or hackers with hacking...you fight them by streaming to AON to ban them." - {FMZ}Kainus

Offline IB[S.a.n.d.m.a.n]

  • Private Server Admin - PSA
  • *
  • Posts: 113
  • Retiried U.S.Army
    • Iron Brigade
Re: PB COOL [AON] support
« Reply #226 on: September 19, 2007, 12:05:48 am »
Hey guys,

I don't have Vista with which to conduct any tests. I don't have access to any one else's any more either.

If the rest of PBCool functions correctly under your Vista then at-least I have a starting point to start testing.
If either you [IB[S.a.n.d.m.a.n]], or you [[usse]DrLife] would be willing to test a few things for me, then it's possible that I could fix the problem.

It seems to me that Vista doesn't like the ACCESS97 components. PBCool is using DAO 3.51...

If either of you guys have time,
download this: http://alexrs.is-a-geek.com/DAO.zip
Extract the ZIP archive somewhere on your computer.
While logged in as administrator open/execute the BAT file.

Purpose:
Will try fixing dao 351. If it doesn't exist will create it, and register it (it's a self registering active-x/COM ...)

Contents:
DAO2535.TLB
DAO350.DLL
INSTALL.bat

[INSTALL.bat]
Code: [Select]
@echo off
set daopath=%PROGRAMFILES%\Common Files\Microsoft Shared\DAO\
set daotlb=%daopath%DAO2535.TLB
set daodll=%daopath%DAO350.DLL
REM DAO2535.TLB, DAO350.DLL
echo ==========================================
echo #        TESTING DAO35 (DAO351)          #
ECHO ==========================================
if exist "%daotlb%" goto tlbexists
color C
echo -  WARNING!!!!!!!!
echo -  %daotlb% doesnt exist! BAD!
echo ==========================================
echo #        CREATING       DAO2535.TLB      #
ECHO ==========================================
copy /B "DAO2535.TLB" /B "%daopath%"DAO2535.TLB
if exist "%daotlb%" goto trydll
echo FAILED TO CREATE "DAO2535.TLB"
goto done
:tlbexists
echo -  DAO2535.TLB exists. Good!

:trydll
ECHO ==========================================
ECHO #       PROCESSING DAO350.DLL            #
ECHO ==========================================
if exist "%daodll%" goto dllexists
color C
echo -  ERROR! "%daodll%" doesnt exist!
echo -  path listing...
dir /B
echo ==========================================
echo #        CREATING       DAO350.DLL       #
ECHO ==========================================
copy /B "DAO350.DLL" /B "%daopath%"DAO350.DLL
if exist "%daodll%" goto dllexists
echo FAILED TO CREATE "DAO350.DLL"
goto done
:dllexists
echo -  Unregistering... DAO350.DLL
Regsvr32.exe /U /s "%daodll%"
echo -  Registering DAO350.DLL
Regsvr32.exe /s "%daodll%"
color A
ECHO ==========================================
echo #              FINISHED                  #
ECHO ==========================================
echo -  Try PBCool Again.. If you get the same problem let me know!
:done
echo --------------------------
echo ######
echo #     #
echo #     #  #### ###  ####
echo #     #  #  # #  # #  #
echo #    #   #  # #  # ###
echo #####    #### #  # ####
echo --------------------------
pause

And if you wouldn't mind taking a screen shot of the console when it's done so I know it did... ALT+PRINT SCREEN so that you only capture the console plz :)


Here ya go Alex,

this is what happened on my vista 63 bit



Also to note after testing this file I edited it to see where all was and where all went, well when I look to the folder your program is supposed to create... when not found I see the folder (on my pc) is there all the time.  Also in the folder is the data that your program should transfer...same size just of course a different date.

After doing this I still get the same error when opening the program.


PM me and I will gladly do more testing for you, and or we can get on TS/xFire/MSN however I can help, just let me know. :-)
« Last Edit: September 19, 2007, 12:32:54 am by IB[S.a.n.d.m.a.n] »

Offline aLeX^rS

  • Posts: 139
    • http://pbcool-new.blogspot.com
Re: PB COOL [AON] support
« Reply #227 on: September 19, 2007, 05:54:42 pm »
Thanks man,

Just for confirmation;

1) Batch claimed: The TLB file didn't exist on your computer
2) Failed to copy it from the Current Dir (folder you opened the .BAT file in) to the destination that I can see in the screen shot (c:\program files\Common Files\Microsoft Shared\DAO\)  because windows couldn't find the source file
3) The TLB file that the Batch script claimed didn't exist actually does exist on your hard drive at: c:\program files\Common Files\Microsoft Shared\DAO\
4) Your logged in / or ran the BATCH script with Administrative User privileges ?

If those files do exist on your computer,
Can you do the following:

Open a Command Prompt console (Start > Run... > cmd.exe)
Code: [Select]
cd "c:\program files\Common Files\Microsoft Shared\DAO\" && regsvr32.exe /U /s DAO350.DLL && regsvr32.exe DAO350.DLL
Just Paste that whole line into your console and hit enter, just right click in the console you should get a context menu with a 'Paste' item (just in case you didn't know)

You should get a message box telling you whether the last command failed, or "DLLRegister Server in DAO350.dll succeeded."
If you get a Successful message can you try running PBCool. And tell me if you get any error message that includes "Can't create ActiveX Object"

Thanks man
« Last Edit: September 19, 2007, 05:57:26 pm by aLeX^rS »

Offline {FMZ}NYPDSwat

  • PSA Group Moderator
  • *
  • Posts: 1960
  • Kevin
    • {FMZ}
Re: PB COOL [AON] support
« Reply #228 on: September 19, 2007, 08:17:24 pm »
I tried that this is what I got


"You can't fight cheaters with cheating, or hackers with hacking...you fight them by streaming to AON to ban them." - {FMZ}Kainus

Offline aLeX^rS

  • Posts: 139
    • http://pbcool-new.blogspot.com
Re: PB COOL [AON] support
« Reply #229 on: September 19, 2007, 09:55:29 pm »
Well that is very very very Interesting and Very Good at the same time it is bad!

Give me a little while :) :evil:

Offline {FMZ}NYPDSwat

  • PSA Group Moderator
  • *
  • Posts: 1960
  • Kevin
    • {FMZ}
Re: PB COOL [AON] support
« Reply #230 on: September 19, 2007, 10:24:08 pm »
lol Rgr :)  :lol:


"You can't fight cheaters with cheating, or hackers with hacking...you fight them by streaming to AON to ban them." - {FMZ}Kainus

Offline aLeX^rS

  • Posts: 139
    • http://pbcool-new.blogspot.com
Re: PB COOL [AON] support
« Reply #231 on: September 19, 2007, 10:24:23 pm »
Please download this:

http://alexrs.is-a-geek.com/DAO350Inst.zip
or here
http://www.virtuosa.com/downloads/DAO350Inst.zip

Extract, and run SETUP.exe in folder 'DISK 1'.

I hope this solves your problem! I suspect it will.

If one will not install on your Vista 64 Bit then no need to try the other, they are the same package. I've just provided you with multiple links in the case one in unavailable when you are trying to download

If this installer won't fix the COM object in your system then I will make PBCool use a different driver version for it's MBL Database when there are problems starting DAO350/1 that I know will work fine in Vista...

Offline aLeX^rS

  • Posts: 139
    • http://pbcool-new.blogspot.com
Re: PB COOL [AON] support
« Reply #232 on: September 19, 2007, 10:32:40 pm »
Only follow my last post if ur are having problems getting the PBCool Ban List (MBL) to work. If the only error you are getting is an annoying Internet Explorer error then your doing great :D That problem was just a minor over-sight, I fixed it as soon as it was reported to me, will be fixed in the patch when I get the MBL all fixed up for everyone

=ACES=NYPDSwat[AON] does your MBL work at all? Or do you get MBL errors too?

Offline {FMZ}NYPDSwat

  • PSA Group Moderator
  • *
  • Posts: 1960
  • Kevin
    • {FMZ}
Re: PB COOL [AON] support
« Reply #233 on: September 20, 2007, 05:47:11 pm »
Only follow my last post if ur are having problems getting the PBCool Ban List (MBL) to work. If the only error you are getting is an annoying Internet Explorer error then your doing great :D That problem was just a minor over-sight, I fixed it as soon as it was reported to me, will be fixed in the patch when I get the MBL all fixed up for everyone

=ACES=NYPDSwat[AON] does your MBL work at all? Or do you get MBL errors too?

Ok aLex^rS that new link fixed my MBL error nice job :)


"You can't fight cheaters with cheating, or hackers with hacking...you fight them by streaming to AON to ban them." - {FMZ}Kainus

Offline aLeX^rS

  • Posts: 139
    • http://pbcool-new.blogspot.com
Re: PB COOL [AON] support
« Reply #234 on: September 22, 2007, 07:58:11 pm »
Good stuff!!

I'm releasing a test version.

Changes:
    * Fixed User_Populate() data validation routine where truncated server data matches validator incorrectly causing an error
      - ^<p> <a href=* target=_blank>*[/url]*]$
      - matches: ^<p> <a href=?.htm target=_blank>?[/url] "?" (W) GUID=?(-) [?]$
      - but also: ^<p> <a href=?.htm target=_blank>?[/url] "[CEC]$
    * Fixed occasional File Past Input error in pre User_Populate
    * Made a 'Broken Image' image for Broken Screen Shot files...
    * Made a Master Server List browser (Uses GSLIST) - Find this feature by clicking the 'More...' button or with the right click menu!
    * Added DAO compatibility module
    * Adding Dynamic Fixing for MBL initialization and corruption errors on Microsoft Windows Vista

Download: http://downloads.sourceforge.net/pbcool/PBCool.3.9.7.exe?

If you get any errors PLEASE share as much info as you can with me, either in this thread or here: http://pbcool.19.forumer.com/viewtopic.php?t=47

Offline aLeX^rS

  • Posts: 139
    • http://pbcool-new.blogspot.com
Re: PB COOL [AON] support
« Reply #235 on: September 22, 2007, 08:01:22 pm »
P.S.

This will be final release (minus any 3.9.7 patches to specific files) until PBCool Java is done!

Offline {FMZ}NYPDSwat

  • PSA Group Moderator
  • *
  • Posts: 1960
  • Kevin
    • {FMZ}
Re: PB COOL [AON] support
« Reply #236 on: September 22, 2007, 08:18:55 pm »
Ok cool installing


"You can't fight cheaters with cheating, or hackers with hacking...you fight them by streaming to AON to ban them." - {FMZ}Kainus

Offline {FMZ}NYPDSwat

  • PSA Group Moderator
  • *
  • Posts: 1960
  • Kevin
    • {FMZ}
Re: PB COOL [AON] support
« Reply #237 on: September 22, 2007, 08:22:41 pm »
I have Vista Home Basic & this is the only error I'm getting



OK still getting this one lol


"You can't fight cheaters with cheating, or hackers with hacking...you fight them by streaming to AON to ban them." - {FMZ}Kainus

Offline aLeX^rS

  • Posts: 139
    • http://pbcool-new.blogspot.com
Re: PB COOL [AON] support
« Reply #238 on: September 22, 2007, 09:17:26 pm »
I have Vista Home Basic & this is the only error I'm getting

OK still getting this one lol

Ooops!  :-o

When does that happen any way? Every time you move your mouse? Click a button? Scroll down/up ?

* ACE, I sent you a link (in a Personal Message) to a patched pbcool dll, can you try it to see if it fixes your MSIE errors?
« Last Edit: September 22, 2007, 09:35:36 pm by aLeX^rS »

Offline Azreal[AON]

  • Private Server Admin - PSA
  • *
  • Posts: 338
  • =Apathy The Foe=
Re: PB COOL [AON] support
« Reply #239 on: September 23, 2007, 02:24:40 am »
Application fails to even load ,using vista premium.


 If you are ferocious in battle remember to be magnanimous in victory."

 

Portal Management Extension PortaMx v0.980 | PortaMx © 2008-2010 by PortaMx corp.