msvisual.com Forum Index
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

New Vista machine and VB Reinstall does not work

 
Post new topic   Reply to topic    msvisual.com Forum Index -> VB Enterprise
Author Message
Robert Paresi



Joined: 04 Oct 2007
Posts: 5

PostPosted: Thu May 17, 2007 2:02 pm    Post subject: New Vista machine and VB Reinstall does not work Reply with quote

Hi,

I have a new machine that came with Vista on it. I have my original VB
CD's. (6.0 Enterprise 1.0).

I would think I would do that, and then install the Service Pack.

Both fail when installation.

Is there a secret of reinstalling from scratch VB 6.0 on a VISTA Business
machine?

Please help - I need to get back to programming and I can't. Smile

-Robert

Archived from group: microsoft>public>vb>enterprise
Back to top
View user's profile Send private message
Ralph



Joined: 04 Oct 2007
Posts: 4148

PostPosted: Thu May 17, 2007 6:08 pm    Post subject: Re: New Vista machine and VB Reinstall does not work Reply with quote

"Robert Paresi" wrote in message@TK2MSFTNGP04.phx.gbl...
> Hi,
>
> I have a new machine that came with Vista on it. I have my original VB
> CD's. (6.0 Enterprise 1.0).
>
> I would think I would do that, and then install the Service Pack.
>
> Both fail when installation.
>
> Is there a secret of reinstalling from scratch VB 6.0 on a VISTA Business
> machine?
>
> Please help - I need to get back to programming and I can't. Smile
>
> -Robert
>

Some people have major difficulties, others very little, ie. Not everyone
experiences the same problem - and usually there are more than one. However,
be of good cheer - it can be done.

It is impossible to say what is the correct course of action for you without
knowing what problems you are having. Saying it "fails" is useless.

Start with one install. Tell us the exact problem, error code, dialog, etc.

You might also do a google search of the microsoft.public.vb.~ groups - you
may find most of your questions have already been answered.

-ralph
Back to top
View user's profile Send private message
Robert Paresi



Joined: 04 Oct 2007
Posts: 5

PostPosted: Thu May 17, 2007 8:38 pm    Post subject: Re: New Vista machine and VB Reinstall does not work Reply with quote

Hello,

Sorry about that...just my frustration with Windows Vista.

I installed the original CD and when I run it, I get:

Can't find file 'DAO350.DLL'

When I go to install the latest Service Pack, I get:

Visual Studio 6.0 Service Pack 6 Setup was not completed successfully.

This happens immediately after saying YES to the Agreement screen.

-Robert



"Ralph" wrote in message @arkansas.net...
>
> "Robert Paresi" wrote in message
> @TK2MSFTNGP04.phx.gbl...
>> Hi,
>>
>> I have a new machine that came with Vista on it. I have my original VB
>> CD's. (6.0 Enterprise 1.0).
>>
>> I would think I would do that, and then install the Service Pack.
>>
>> Both fail when installation.
>>
>> Is there a secret of reinstalling from scratch VB 6.0 on a VISTA Business
>> machine?
>>
>> Please help - I need to get back to programming and I can't. Smile
>>
>> -Robert
>>
>
> Some people have major difficulties, others very little, ie. Not everyone
> experiences the same problem - and usually there are more than one.
> However,
> be of good cheer - it can be done.
>
> It is impossible to say what is the correct course of action for you
> without
> knowing what problems you are having. Saying it "fails" is useless.
>
> Start with one install. Tell us the exact problem, error code, dialog,
> etc.
>
> You might also do a google search of the microsoft.public.vb.~ groups -
> you
> may find most of your questions have already been answered.
>
> -ralph
>
>
Back to top
View user's profile Send private message
Ralph



Joined: 04 Oct 2007
Posts: 4148

PostPosted: Thu May 17, 2007 11:41 pm    Post subject: Re: New Vista machine and VB Reinstall does not work Reply with quote

"Robert Paresi" wrote in message@TK2MSFTNGP06.phx.gbl...
> Hello,
>
> Sorry about that...just my frustration with Windows Vista.
>
> I installed the original CD and when I run it, I get:
>
> Can't find file 'DAO350.DLL'
>
> When I go to install the latest Service Pack, I get:
>
> Visual Studio 6.0 Service Pack 6 Setup was not completed successfully.
>
> This happens immediately after saying YES to the Agreement screen.
>
> -Robert
>
>

It can be frustrating.

Here is some background info that may help. With Vista the MDAC and Jet
packages are dead. Instead Vista comes with its own component suite called
the DAC. It is essentially MDAC 2.8. It also supplies its own DAO support
through a new component DAO360.DLL. You cannot update these components
through a separate package or install any of the previous MDACs/Jets. But
you can copy selected components on to Vista and registered them separately.

Take a look at the "Support Statement for Visual Basic 6.0 on Windows Vista"
http://msdn2.microsoft.com/en-us/vbasic/ms788708.aspx
Note the components that are "Tested and Not Shipping In Windows Vista".
These are components that you may have to copy

One of these is DAO350.dll.
It needs to be installed in "%CommonFilesFolder%\Microsoft Shared\DAO"
It may or may not make it. If it isn't there the just copy it over. Or if it
does, it may or not be registered.
You can manually register components by running regedit from a DOSPrompt
"run as adminstrator". But occasionally you still run into UAC problems. A
quick 'n dirty way around this, is to create a batch file with the regedit32
statement: name the batch file something with "install" or "setup",
("myInstall.bat"); and then run the batch file as an administrator.
(Right-Click menu). This fakes Vista into treating the batch as an
"installer" with special prividges.

Here is something posted by Kyle Smith that I found helps.
[Watch out for word wrap.]
"How to make service pack 5 install on vista"
:
Step 1) Open C:\ServicePack5Dir\sp598ent.stf with 'Notepad.exe'
Step 2) Replace the following line

13 Group 28 36 38 29 30 32 26 27 14 25 16 17 20 18 19 15 39 21 22 24 23
43

-with-

13 Group 28 38 29 30 32 26 27 14 25 16 17 20 18 19 15 39 21 22 24 23 43

Step 3) Delete the following lines leaving only a carriage return where
it was

36 Depend "27 ? : 37"
37 IsWin95 CustomAction "sp598ent.dll,CheckForMDAC"

Step 4) Save and close C:\ServicePack5Dir\sp598ent.stf
Step 5) Run setupsp5.exe

Give this a try and see if you can get to the next stage of pain.

-ralph

..
Back to top
View user's profile Send private message
Robert Paresi



Joined: 04 Oct 2007
Posts: 5

PostPosted: Fri May 18, 2007 3:27 pm    Post subject: Re: New Vista machine and VB Reinstall does not work Reply with quote

Hello,

Ok - the file was there. I registered it using REGSVR32 and it said
Succeeded. Smile

I then ran VB98, and I got "Unexpected Error" and it closed out.

No biggie, I thought ... I should at least load now the latest service pack
anyway - maybe that will fix it.

So, I went to my download directory and my stuff has "sp698vbo" and there
is no "GROUP 28" to change.

-Robert


"Ralph" wrote in message @arkansas.net...
>
> "Robert Paresi" wrote in message
> @TK2MSFTNGP06.phx.gbl...
>> Hello,
>>
>> Sorry about that...just my frustration with Windows Vista.
>>
>> I installed the original CD and when I run it, I get:
>>
>> Can't find file 'DAO350.DLL'
>>
>> When I go to install the latest Service Pack, I get:
>>
>> Visual Studio 6.0 Service Pack 6 Setup was not completed
>> successfully.
>>
>> This happens immediately after saying YES to the Agreement screen.
>>
>> -Robert
>>
>>
>
> It can be frustrating.
>
> Here is some background info that may help. With Vista the MDAC and Jet
> packages are dead. Instead Vista comes with its own component suite called
> the DAC. It is essentially MDAC 2.8. It also supplies its own DAO support
> through a new component DAO360.DLL. You cannot update these components
> through a separate package or install any of the previous MDACs/Jets. But
> you can copy selected components on to Vista and registered them
> separately.
>
> Take a look at the "Support Statement for Visual Basic 6.0 on Windows
> Vista"
> http://msdn2.microsoft.com/en-us/vbasic/ms788708.aspx
> Note the components that are "Tested and Not Shipping In Windows Vista".
> These are components that you may have to copy
>
> One of these is DAO350.dll.
> It needs to be installed in "%CommonFilesFolder%\Microsoft Shared\DAO"
> It may or may not make it. If it isn't there the just copy it over. Or if
> it
> does, it may or not be registered.
> You can manually register components by running regedit from a DOSPrompt
> "run as adminstrator". But occasionally you still run into UAC problems. A
> quick 'n dirty way around this, is to create a batch file with the
> regedit32
> statement: name the batch file something with "install" or "setup",
> ("myInstall.bat"); and then run the batch file as an administrator.
> (Right-Click menu). This fakes Vista into treating the batch as an
> "installer" with special prividges.
>
> Here is something posted by Kyle Smith that I found helps.
> [Watch out for word wrap.]
> "How to make service pack 5 install on vista"
> :
> Step 1) Open C:\ServicePack5Dir\sp598ent.stf with 'Notepad.exe'
> Step 2) Replace the following line
>
> 13 Group 28 36 38 29 30 32 26 27 14 25 16 17 20 18 19 15 39 21 22 24 23
> 43
>
> -with-
>
> 13 Group 28 38 29 30 32 26 27 14 25 16 17 20 18 19 15 39 21 22 24 23 43
>
> Step 3) Delete the following lines leaving only a carriage return where
> it was
>
> 36 Depend "27 ? : 37"
> 37 IsWin95 CustomAction "sp598ent.dll,CheckForMDAC"
>
> Step 4) Save and close C:\ServicePack5Dir\sp598ent.stf
> Step 5) Run setupsp5.exe
>
> Give this a try and see if you can get to the next stage of pain.
>
> -ralph
>
> .
>
>
>
>
>
>
Back to top
View user's profile Send private message
Robert Paresi



Joined: 04 Oct 2007
Posts: 5

PostPosted: Fri May 18, 2007 4:43 pm    Post subject: Re: New Vista machine and VB Reinstall does not work Reply with quote

Same Ole!

I tried SP5, no go.

I then tried just the SP5 for VB only, and changed to not installed MDAC
(group 22), nothing.

Tried SP6 for VB - same thing.

It just says it wasn't installed.

UAC is turned off on my machine.

-Robert

"Ralph" wrote in message @arkansas.net...
>
> "Robert Paresi" wrote in message
> @TK2MSFTNGP06.phx.gbl...
>> Hello,
>>
>> Sorry about that...just my frustration with Windows Vista.
>>
>> I installed the original CD and when I run it, I get:
>>
>> Can't find file 'DAO350.DLL'
>>
>> When I go to install the latest Service Pack, I get:
>>
>> Visual Studio 6.0 Service Pack 6 Setup was not completed
>> successfully.
>>
>> This happens immediately after saying YES to the Agreement screen.
>>
>> -Robert
>>
>>
>
> It can be frustrating.
>
> Here is some background info that may help. With Vista the MDAC and Jet
> packages are dead. Instead Vista comes with its own component suite called
> the DAC. It is essentially MDAC 2.8. It also supplies its own DAO support
> through a new component DAO360.DLL. You cannot update these components
> through a separate package or install any of the previous MDACs/Jets. But
> you can copy selected components on to Vista and registered them
> separately.
>
> Take a look at the "Support Statement for Visual Basic 6.0 on Windows
> Vista"
> http://msdn2.microsoft.com/en-us/vbasic/ms788708.aspx
> Note the components that are "Tested and Not Shipping In Windows Vista".
> These are components that you may have to copy
>
> One of these is DAO350.dll.
> It needs to be installed in "%CommonFilesFolder%\Microsoft Shared\DAO"
> It may or may not make it. If it isn't there the just copy it over. Or if
> it
> does, it may or not be registered.
> You can manually register components by running regedit from a DOSPrompt
> "run as adminstrator". But occasionally you still run into UAC problems. A
> quick 'n dirty way around this, is to create a batch file with the
> regedit32
> statement: name the batch file something with "install" or "setup",
> ("myInstall.bat"); and then run the batch file as an administrator.
> (Right-Click menu). This fakes Vista into treating the batch as an
> "installer" with special prividges.
>
> Here is something posted by Kyle Smith that I found helps.
> [Watch out for word wrap.]
> "How to make service pack 5 install on vista"
> :
> Step 1) Open C:\ServicePack5Dir\sp598ent.stf with 'Notepad.exe'
> Step 2) Replace the following line
>
> 13 Group 28 36 38 29 30 32 26 27 14 25 16 17 20 18 19 15 39 21 22 24 23
> 43
>
> -with-
>
> 13 Group 28 38 29 30 32 26 27 14 25 16 17 20 18 19 15 39 21 22 24 23 43
>
> Step 3) Delete the following lines leaving only a carriage return where
> it was
>
> 36 Depend "27 ? : 37"
> 37 IsWin95 CustomAction "sp598ent.dll,CheckForMDAC"
>
> Step 4) Save and close C:\ServicePack5Dir\sp598ent.stf
> Step 5) Run setupsp5.exe
>
> Give this a try and see if you can get to the next stage of pain.
>
> -ralph
>
> .
>
>
>
>
>
>
Back to top
View user's profile Send private message
Ralph



Joined: 04 Oct 2007
Posts: 4148

PostPosted: Fri May 18, 2007 4:37 pm    Post subject: Re: New Vista machine and VB Reinstall does not work Reply with quote

"Robert Paresi" wrote in message@TK2MSFTNGP06.phx.gbl...
> Same Ole!
>
> I tried SP5, no go.
>
> I then tried just the SP5 for VB only, and changed to not installed MDAC
> (group 22), nothing.
>
> Tried SP6 for VB - same thing.
>
> It just says it wasn't installed.
>
> UAC is turned off on my machine.
>
> -Robert
>


I have had trouble installing VS6/VB6 on Vista, but haven't experienced a
problem after it was finally installed.

Just to make sure where you are.
You were able to install the initial VS6 (without SPs), correct?
But when you run the IDE it fails with an "expected error".
You have tried to install SP5 and SP6 and have been unsuccessful. The only
error you get is it says "it wasn't installed".

Even with UAC, you must run the IDE and SP installs as an Administrator.
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1389547&SiteID=1&mode=1
(This discusses RC1, but the issue is similar to what others have found with
Released versions.)

-ralph
Back to top
View user's profile Send private message
Robert Paresi



Joined: 04 Oct 2007
Posts: 5

PostPosted: Fri May 18, 2007 8:14 pm    Post subject: Re: New Vista machine and VB Reinstall does not work Reply with quote

Hello,

Yes ... Exactly what you said.

I have the original disks installed only. Starting it shows:

==========================
Microsoft Visual Basic

RedX: Unexpected error; quitting

OK HELP

==========================

-Robert


"Ralph" wrote in message @arkansas.net...
>
> "Robert Paresi" wrote in message
> @TK2MSFTNGP06.phx.gbl...
>> Same Ole!
>>
>> I tried SP5, no go.
>>
>> I then tried just the SP5 for VB only, and changed to not installed MDAC
>> (group 22), nothing.
>>
>> Tried SP6 for VB - same thing.
>>
>> It just says it wasn't installed.
>>
>> UAC is turned off on my machine.
>>
>> -Robert
>>
>
>
> I have had trouble installing VS6/VB6 on Vista, but haven't experienced a
> problem after it was finally installed.
>
> Just to make sure where you are.
> You were able to install the initial VS6 (without SPs), correct?
> But when you run the IDE it fails with an "expected error".
> You have tried to install SP5 and SP6 and have been unsuccessful. The only
> error you get is it says "it wasn't installed".
>
> Even with UAC, you must run the IDE and SP installs as an Administrator.
> http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1389547&SiteID=1&mode=1
> (This discusses RC1, but the issue is similar to what others have found
> with
> Released versions.)
>
> -ralph
>
>
>
>
>
>
>
Back to top
View user's profile Send private message
Ralph



Joined: 04 Oct 2007
Posts: 4148

PostPosted: Sat May 19, 2007 12:16 am    Post subject: Re: New Vista machine and VB Reinstall does not work Reply with quote

"Robert Paresi" wrote in message@TK2MSFTNGP06.phx.gbl...
> Hello,
>
> Yes ... Exactly what you said.
>
> I have the original disks installed only. Starting it shows:
>
> ==========================
> Microsoft Visual Basic
>
> RedX: Unexpected error; quitting
>
> OK HELP
>
> ==========================
>
> -Robert
>

Any chance the "didn't install" message is bogus? Does the IDE work now?

-ralph

Back to top
View user's profile Send private message
Display posts from previous:   
Related Topics:
state machine for a calculator Hi, I am writing a calculator program. I am too lazy to search for the topic. And too lazy to reinvent the wheel. Would someone be kind to post the state diagram for a calculator program please? Thanks!! -- > There is no answer. > There has not been an an

Errors when installed on new machine I have a software program that uses a DLL, and two OCX's that I have also written. Software is called Dynamic Response When I am developing in VB6 I use SourceSafe (which causes me the noraml problems of failed to load project etc all

finite state machine for a calculator Hi, It is harder than I thought. I created the state machine with a total of 9 states. I thought 3 was enough but I was wrong. I need 9 states for my calculator to look and work like a real desktop calculator!!! I need 9 states to parse the inputs (Comman

i want to learn if the client machine is connect or disconne Hi, i want to learn if the client machine is online or offline,like the function of ping command on DOS... so like this: if control.ping is true else endif thanks

Support for transient subscription from a client machine to HOWTO do transient subscription from a client to server in COM+ with VB6? I tried it. But it doesn't seem to work. I wish to do a remote transient subscription from client to server? From the client, I create a object and use Connect()
Post new topic   Reply to topic    msvisual.com Forum Index -> VB Enterprise All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group