Run-Time Error 445

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
richandcreamy
Level 2
Level 2
Posts: 16
Joined: Tue May 06, 2008 5:23 am

Run-Time Error 445

Post by richandcreamy »

Application: Friend Blaster Pro 10.0.1
Download Link: http://www.addnewfriends.com/download/f ... 10_0_1.zip
Wine Version: 0.9.61
OS: Ubuntu 8.04 Hardy
Kernel: 2.6.24-16-generic
Laptop: HP DV9220us 1.6 Dual Core, 2gb Ram, GeFrorce Go 7600

I tried running $ wine friendblasterpro.exe &> /tmp/log.txt 2>&1 and it appears to do nothing, unless the text file it's supposed to produce is hidden somewhere I haven't looked.

I can install the program and I can register a myspace profile with it but when I click continue I get "run-time error 445 object doesn't support this action"

I'm not sure what's the next thing to try or settings to change. Please help! :)
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: Run-Time Error 445

Post by vitamin »

richandcreamy wrote:Application: Friend Blaster Pro 10.0.1
Download Link: http://www.addnewfriends.com/download/f ... 10_0_1.zip
Wine Version: 0.9.61
OS: Ubuntu 8.04 Hardy
Kernel: 2.6.24-16-generic
Laptop: HP DV9220us 1.6 Dual Core, 2gb Ram, GeFrorce Go 7600

I tried running $ wine friendblasterpro.exe &> /tmp/log.txt 2>&1 and it appears to do nothing, unless the text file it's supposed to produce is hidden somewhere I haven't looked.

I can install the program and I can register a myspace profile with it but when I click continue I get "run-time error 445 object doesn't support this action"

I'm not sure what's the next thing to try or settings to change.
For one it would be nice to see that /tmp/log.txt file.
richandcreamy
Level 2
Level 2
Posts: 16
Joined: Tue May 06, 2008 5:23 am

Post by richandcreamy »

Yes that would be nice but as stated above I need help finding it. Tried searching tmp folder by going to browse C drive>windows>tmp after running $ wine friendblasterpro.exe &> /tmp/log.txt 2>&1

When I enter $ wine friendblasterpro.exe &> /tmp/log.txt 2>&1 it does not load any display any extra text and just looks ready to take another comand.
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Post by vitamin »

richandcreamy wrote:Yes that would be nice but as stated above I need help finding it. Tried searching tmp folder by going to browse C drive>windows>tmp after running $ wine friendblasterpro.exe &> /tmp/log.txt 2>&1

When I enter $ wine friendblasterpro.exe &> /tmp/log.txt 2>&1 it does not load any display any extra text and just looks ready to take another comand.
Because that command is not entirely correct. It should be

Code: Select all

wine friendblasterpro.exe &> /tmp/log.txt
Dan Kegel

Run-Time Error 445

Post by Dan Kegel »

richandcreamy <[email protected]> wrote:
Yes that would be nice but as stated above I need help finding it. Tried searching tmp folder by going to browse C drive>windows>tmp after running
$ wine friendblasterpro.exe &> /tmp/log.txt 2>&1

As Vitamin noted, you have one extra ampersand in that line, should be

$ wine friendblasterpro.exe > /tmp/log.txt 2>&1

Also, you're looking in the wrong tmp folder! You looked in the Windows
one, you need to look in the Unix one. (If you're using a Windows app
in Wine to look for the text file, you would browse to Z:\tmp to find it.)
richandcreamy
Level 2
Level 2
Posts: 16
Joined: Tue May 06, 2008 5:23 am

Post by richandcreamy »

:oops: Now how did I miss vitamen's line of code? ok will try again with the edits.

sorry =/
richandcreamy
Level 2
Level 2
Posts: 16
Joined: Tue May 06, 2008 5:23 am

Post by richandcreamy »

Re-entered code then dug around the home folder and then /tmp but I think that folder is related to my internet history.

I tried using places>search for files for log.txt in file system and home folder too.
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Post by vitamin »

richandcreamy wrote:Re-entered code then dug around the home folder and then /tmp but I think that folder is related to my internet history.

I tried using places>search for files for log.txt in file system and home folder too.
LOL no it'd not in your home! It _IS_ /tmp/log.txt. The directory part is /tmp. And that is located on the root (/)!
Dan Kegel

Run-Time Error 445

Post by Dan Kegel »

On Tue, May 6, 2008 at 7:42 AM, richandcreamy <[email protected]> wrote:
Re-entered code then dug around the home folder and then /tmp but I think that folder is related to my internet history.

I tried using places>search for files for log.txt in file system and home folder too.
You seem to be confused by the directory part, so just skip the /tmp/
part and do

$ wine friendblasterpro.exe > log.txt 2>&1

and then after that, in the same window, do
$ gedit log.txt

and voila!
richandcreamy
Level 2
Level 2
Posts: 16
Joined: Tue May 06, 2008 5:23 am

Post by richandcreamy »

oh ok, so I went back into /tmp and I do have a log.txt file in there but the only text in there is

"bash: $: command not found"

I'm guessing I need to modify $ wine friendblasterpro.exe > /tmp/log.txt 2>&1 code to get more info in the log file?
richandcreamy
Level 2
Level 2
Posts: 16
Joined: Tue May 06, 2008 5:23 am

Post by richandcreamy »

I tried erasing the $ because there's already one displayed within terminal and I got this:

preloader: Warning: failed to reserve range 00000000-00010000
preloader: Warning: failed to reserve range 00000000-00010000
wine: could not load L"C:\\windows\\system32\\friendblasterpro.exe": Module not found
preloader: Warning: failed to reserve range 00000000-00010000
preloader: Warning: failed to reserve range 00000000-00010000
richandcreamy
Level 2
Level 2
Posts: 16
Joined: Tue May 06, 2008 5:23 am

Post by richandcreamy »

Sometimes I miss windows only because I got to boss my friends around on how to do things on their computers =P

Your help is much apprciated!!! :D
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

Run-Time Error 445

Post by austin987 »

On Tue, May 6, 2008 at 10:00 AM, richandcreamy
<[email protected]> wrote:
I tried erasing the $ because there's already one displayed within terminal and I got this:

preloader: Warning: failed to reserve range 00000000-00010000
preloader: Warning: failed to reserve range 00000000-00010000
wine: could not load L"C:\\windows\\system32\\friendblasterpro.exe": Module not found
preloader: Warning: failed to reserve range 00000000-00010000
preloader: Warning: failed to reserve range 00000000-00010000





You need to cd to where that executable is. Also, see:
http://wiki.winehq.org/PreloaderPageZeroProblem
richandcreamy
Level 2
Level 2
Posts: 16
Joined: Tue May 06, 2008 5:23 am

Post by richandcreamy »

tried the $ sudo sysctl -w vm.mmap_min_addr=0 work around and still got the 445 runtime error.

I CD'ed to where the exe was and then re ran the log.txt command and got this

wine: could not load L"C:\\windows\\system32\\friendblasterpro.exe": Module not found
Dan Kegel

Run-Time Error 445

Post by Dan Kegel »

richandcreamy <[email protected]> wrote:
I CD'ed to where the exe was and then re ran the log.txt command and got this

wine: could not load L"C:\\windows\\system32\\friendblasterpro.exe": Module not found
Are you quite sure you were where the exe was?
That error says you weren't...
richandcreamy
Level 2
Level 2
Posts: 16
Joined: Tue May 06, 2008 5:23 am

Post by richandcreamy »

I tried it again and then got this

preloader: Warning: failed to reserve range 00000000-00010000
preloader: Warning: failed to reserve range 00000000-00010000
wine: could not load L"C:\\windows\\system32\\friendblasterpro.exe": Module not found

preloader: Warning: failed to reserve range 00000000-00010000
preloader: Warning: failed to reserve range 00000000-00010000

exe is sitting on my desktop this is what I did in terminal exactly

richandcreamy@richandcreamy-laptop:~$ cd /home/richandcreamy/Desktop
richandcreamy@richandcreamy-laptop:~/Desktop$ wine friendblasterpro.exe > log.txt 2>&1
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

Run-Time Error 445

Post by austin987 »

On Tue, May 6, 2008 at 10:59 PM, richandcreamy
<[email protected]> wrote:
I tried it again and then got this


preloader: Warning: failed to reserve range 00000000-00010000
preloader: Warning: failed to reserve range 00000000-00010000

wine: could not load L"C:\\windows\\system32\\friendblasterpro.exe": Module not found


preloader: Warning: failed to reserve range 00000000-00010000
preloader: Warning: failed to reserve range 00000000-00010000

exe is sitting on my desktop this is what I did in terminal exactly

richandcreamy@richandcreamy-laptop:~$ cd /home/richandcreamy/Desktop
richandcreamy@richandcreamy-laptop:~/Desktop$ wine friendblasterpro.exe > log.txt 2>&1





Have you by chance removed the z sylink from ~/.wine/dosdevices? Try:
$ mv ~/.wine ~/.wine.bak
$ cd Desktop
$ wine friendblasterpro.exe
richandcreamy
Level 2
Level 2
Posts: 16
Joined: Tue May 06, 2008 5:23 am

Post by richandcreamy »

Well I feel like a major dunce. I confused the setup exe for the program exe :oops: I have a launcher on my desktop not the exe. sigh my bad guys.

(wait is launcher and exe the same thing? no right?)

Ok so the actual location is

/proc/7776/fd/3/drive_c/Program Files/FriendBlasterPro

but I can't CD to it?

I can get as far as /proc/7776/fd/3/drive_c/ but then it says Program Files doesn't exist?
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Post by vitamin »

richandcreamy wrote:Well I feel like a major dunce. I confused the setup exe for the program exe :oops: I have a launcher on my desktop not the exe. sigh my bad guys.

(wait is launcher and exe the same thing? no right?)

Ok so the actual location is

/proc/7776/fd/3/drive_c/Program Files/FriendBlasterPro

but I can't CD to it?

I can get as far as /proc/7776/fd/3/drive_c/ but then it says Program Files doesn't exist?
Well no that path is not correct. Your home directory is "$HOME" or "~" for short. You can use auto completion in the terminal. Start typing the path, then hit [tab]. So you type:

Code: Select all

cd ~/.wine/drive_c/P
Then hit [tab].

For spaces you can "escape" them with backslash ex:

Code: Select all

cd ~/.wine/drive_c/Program\ Files
richandcreamy
Level 2
Level 2
Posts: 16
Joined: Tue May 06, 2008 5:23 am

Post by richandcreamy »

ok got to Program Files but can't cd to the friendblasterpro folder
Dan Kegel

Run-Time Error 445

Post by Dan Kegel »

On Wed, May 7, 2008 at 6:41 AM, richandcreamy <[email protected]> wrote:
ok got to Program Files but can't cd to the friendblasterpro folder
What do
ls
and
find . -iname 'friendblaster*'
say?
richandcreamy
Level 2
Level 2
Posts: 16
Joined: Tue May 06, 2008 5:23 am

Post by richandcreamy »

richandcreamy@richandcreamy-laptop:~$ find . -iname 'friendblaster*'
./Desktop/FriendBlasterPro.desktop
./Desktop/FriendBlasterPro.lnk
./Desktop/friendblasterpro_v10_0_1.zip
./.wine.bak/drive_c/windows/profiles/All Users/Start Menu/Programs/FriendBlasterPro
./.wine.bak/drive_c/windows/profiles/All Users/Start Menu/Programs/FriendBlasterPro/FriendBlasterPro.lnk
./.wine.bak/drive_c/windows/temp/is-6HR4S.tmp/friendblasterpro_v10_0_1.tmp
./.wine.bak/drive_c/Program Files/FriendBlasterPro
./.wine.bak/drive_c/Program Files/FriendBlasterPro/FriendBlasterPro.exe
./.wine.bak/drive_c/Program Files/FriendBlasterPro/FriendBlasterPro.ico
./.wine.bak/drive_c/Program Files/FriendBlasterPro/FriendBlasterPro.exe.manifest
./.local/share/Trash/files/friendblasterpro_v10_0_1.exe
./.local/share/Trash/info/friendblasterpro_v10_0_1.exe.trashinfo
./.local/share/applications/wine/Programs/FriendBlasterPro
./.local/share/applications/wine/Programs/FriendBlasterPro/FriendBlasterPro.desktop
richandcreamy@richandcreamy-laptop:~$
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

Run-Time Error 445

Post by austin987 »

On Wed, May 7, 2008 at 9:08 AM, richandcreamy <[email protected]> wrote:
richandcreamy@richandcreamy-laptop:~$ find . -iname 'friendblaster*'
./Desktop/FriendBlasterPro.desktop
./Desktop/FriendBlasterPro.lnk
./Desktop/friendblasterpro_v10_0_1.zip
./.wine.bak/drive_c/windows/profiles/All Users/Start Menu/Programs/FriendBlasterPro
./.wine.bak/drive_c/windows/profiles/All Users/Start Menu/Programs/FriendBlasterPro/FriendBlasterPro.lnk
./.wine.bak/drive_c/windows/temp/is-6HR4S.tmp/friendblasterpro_v10_0_1.tmp
./.wine.bak/drive_c/Program Files/FriendBlasterPro
./.wine.bak/drive_c/Program Files/FriendBlasterPro/FriendBlasterPro.exe
./.wine.bak/drive_c/Program Files/FriendBlasterPro/FriendBlasterPro.ico
./.wine.bak/drive_c/Program Files/FriendBlasterPro/FriendBlasterPro.exe.manifest
./.local/share/Trash/files/friendblasterpro_v10_0_1.exe
./.local/share/Trash/info/friendblasterpro_v10_0_1.exe.trashinfo
./.local/share/applications/wine/Programs/FriendBlasterPro
./.local/share/applications/wine/Programs/FriendBlasterPro/FriendBlasterPro.desktop
richandcreamy@richandcreamy-laptop:~$





Seems there's been QUITE a bit of confusion. You backed up your old
wine config, so let's start fresh:

$ rm -fr ~/.wine
$ wine setup.exe # run your program's setup
$ cd .wine/drive_c/Program\ Files/FriendBlasterPro
$ wine FriendBlasterPro.exe

Does that work?
richandcreamy
Level 2
Level 2
Posts: 16
Joined: Tue May 06, 2008 5:23 am

Post by richandcreamy »

We just had a break through! ok program loads now.

Tried to use a function and it told me to send an error report. I'll send their company a log and then poke around the program some more. First sleep, then I'll update the application database too :o

What did I do exactly to change the configuration to get pass the original error? I think I need to add that to the wine database.
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

Run-Time Error 445

Post by austin987 »

On Wed, May 7, 2008 at 9:47 AM, richandcreamy <[email protected]> wrote:
We just had a break through! ok program loads now.

Tried to use a function and it told me to send an error report. I'll send their company a log and then poke around the program some more. First sleep, then I'll update the application database too :o

What did I do exactly to change the configuration to get pass the original error? I think I need to add that to the wine database.





Nothing as far as I can tell, you just cleaned out whatever other
attempts you had made...
Locked