473,320 Members | 2,020 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Please Settle This Issue....(URGENT)

in my head......

I need my application to work with Office 97, 2000, XP and 2003 versions of
MS Word and MS Excel.

IN order to acomplish this I have to install in different folders:

1. remove my Office 2003
2. Install Office 97 Word and Excel
3. Install Office 2000 Word and Excel
4. Install Office XP Word and Excel
5. Reinstall my Office 2003
6. Open my project and add references for Word and Excel libraries 8?-11.
The libraries will be there then right?
7. REbuild project.......

Last time I did something like this I spent weeks trying to fix the mess it
turned into. I tried to install OFfice XP next to 2003 without taking 2003
off.

I so much do not want to go through that again....

Thanks again.

Nov 20 '05 #1
11 1815
You should have Office 97 installed on your development machine, and your
project should only reference the Office 97 type libraries (version 8.0, I
think.)

The application will then be forward compatible to later versions of Office
as well. (In theory at least -- there are reports of a few subtle changes
in the Office object model that can introduce bugs, so test your application
thoroughly with other versions.) You can have other versions of Office
installed on your machine for testing purposes, but it isn't strictly
necessary.
"scorpion53061" <Its the end of the world as we know it@here.com> wrote in
message news:Of**************@TK2MSFTNGP11.phx.gbl...
in my head......

I need my application to work with Office 97, 2000, XP and 2003 versions of MS Word and MS Excel.

IN order to acomplish this I have to install in different folders:

1. remove my Office 2003
2. Install Office 97 Word and Excel
3. Install Office 2000 Word and Excel
4. Install Office XP Word and Excel
5. Reinstall my Office 2003
6. Open my project and add references for Word and Excel libraries 8?-11.
The libraries will be there then right?
7. REbuild project.......

Last time I did something like this I spent weeks trying to fix the mess it turned into. I tried to install OFfice XP next to 2003 without taking 2003
off.

I so much do not want to go through that again....

Thanks again.

Nov 20 '05 #2
Thank you for respoding. Plesae let me know what went wrong here.

After doing this (putting in 8.0) what I had before

Imports Word = Microsoft.Office.Interop.Word
Imports Office = Microsoft.Office.Core

isnt working. IT is saying:

C:\Documents and Settings\Administrator\My Documents\Visual Studio
Projects\MS Word Assistant\fmworddoc.vb(2): Namespace or type 'Word' for the
Imports 'Microsoft.Office.Interop.Word' cannot be found.

C:\Documents and Settings\Administrator\My Documents\Visual Studio
Projects\MS Word Assistant\fmworddoc.vb(3): Imports alias 'Office' conflicts
with 'Namespace Office' declared in the root namespace.
The dependency 'Interop.VBIDE' could not be found.
"Robert Jacobson" <rj**********************@nospam.com> wrote in message
news:OW****************@TK2MSFTNGP11.phx.gbl...
You should have Office 97 installed on your development machine, and your
project should only reference the Office 97 type libraries (version 8.0, I
think.)

The application will then be forward compatible to later versions of Office as well. (In theory at least -- there are reports of a few subtle changes
in the Office object model that can introduce bugs, so test your application thoroughly with other versions.) You can have other versions of Office
installed on your machine for testing purposes, but it isn't strictly
necessary.
"scorpion53061" <Its the end of the world as we know it@here.com> wrote in
message news:Of**************@TK2MSFTNGP11.phx.gbl...
in my head......

I need my application to work with Office 97, 2000, XP and 2003 versions

of
MS Word and MS Excel.

IN order to acomplish this I have to install in different folders:

1. remove my Office 2003
2. Install Office 97 Word and Excel
3. Install Office 2000 Word and Excel
4. Install Office XP Word and Excel
5. Reinstall my Office 2003
6. Open my project and add references for Word and Excel libraries 8?-11. The libraries will be there then right?
7. REbuild project.......

Last time I did something like this I spent weeks trying to fix the mess

it
turned into. I tried to install OFfice XP next to 2003 without taking 2003 off.

I so much do not want to go through that again....

Thanks again.


Nov 20 '05 #3
Pardon my VB6 here, but using it purly for example.

Isn't the way Microsoft Office products are designed that if you just do a
createobject type issue with

CreateObject("Word.Application") it automatically returns the appropriate
version as per the regsitry defintion?

Could we use the same idea here? And only interop the Excel 7.0 (97)
Library to ensure 100% backwards compatiblity?

-CJ

"Robert Jacobson" <rj**********************@nospam.com> wrote in message
news:OW****************@TK2MSFTNGP11.phx.gbl...
You should have Office 97 installed on your development machine, and your
project should only reference the Office 97 type libraries (version 8.0, I
think.)

The application will then be forward compatible to later versions of Office as well. (In theory at least -- there are reports of a few subtle changes
in the Office object model that can introduce bugs, so test your application thoroughly with other versions.) You can have other versions of Office
installed on your machine for testing purposes, but it isn't strictly
necessary.
"scorpion53061" <Its the end of the world as we know it@here.com> wrote in
message news:Of**************@TK2MSFTNGP11.phx.gbl...
in my head......

I need my application to work with Office 97, 2000, XP and 2003 versions

of
MS Word and MS Excel.

IN order to acomplish this I have to install in different folders:

1. remove my Office 2003
2. Install Office 97 Word and Excel
3. Install Office 2000 Word and Excel
4. Install Office XP Word and Excel
5. Reinstall my Office 2003
6. Open my project and add references for Word and Excel libraries 8?-11. The libraries will be there then right?
7. REbuild project.......

Last time I did something like this I spent weeks trying to fix the mess

it
turned into. I tried to install OFfice XP next to 2003 without taking 2003 off.

I so much do not want to go through that again....

Thanks again.


Nov 20 '05 #4
You can do that, but the references to Microsoft Word will then be
late-bound (of type "Object" instead of type "Word.Application.") This is
generally undesirable because you won't be able to use Intellisense in the
IDE, and increases the opportunities for bugs. There might be circumstances
where it's necessary, but it should generally be avoided.
"CJ Taylor" <no****@blowgoats.com> wrote in message
news:10*************@corp.supernews.com...
Pardon my VB6 here, but using it purly for example.

Isn't the way Microsoft Office products are designed that if you just do a
createobject type issue with

CreateObject("Word.Application") it automatically returns the appropriate
version as per the regsitry defintion?

Could we use the same idea here? And only interop the Excel 7.0 (97)
Library to ensure 100% backwards compatiblity?

-CJ

"Robert Jacobson" <rj**********************@nospam.com> wrote in message
news:OW****************@TK2MSFTNGP11.phx.gbl...
You should have Office 97 installed on your development machine, and your
project should only reference the Office 97 type libraries (version 8.0, I think.)

The application will then be forward compatible to later versions of

Office
as well. (In theory at least -- there are reports of a few subtle changes in the Office object model that can introduce bugs, so test your

application
thoroughly with other versions.) You can have other versions of Office
installed on your machine for testing purposes, but it isn't strictly
necessary.
"scorpion53061" <Its the end of the world as we know it@here.com> wrote in message news:Of**************@TK2MSFTNGP11.phx.gbl...
in my head......

I need my application to work with Office 97, 2000, XP and 2003
versions of
MS Word and MS Excel.

IN order to acomplish this I have to install in different folders:

1. remove my Office 2003
2. Install Office 97 Word and Excel
3. Install Office 2000 Word and Excel
4. Install Office XP Word and Excel
5. Reinstall my Office 2003
6. Open my project and add references for Word and Excel libraries 8?-11. The libraries will be there then right?
7. REbuild project.......

Last time I did something like this I spent weeks trying to fix the
mess it
turned into. I tried to install OFfice XP next to 2003 without taking

2003 off.

I so much do not want to go through that again....

Thanks again.



Nov 20 '05 #5
I think your're just referencing the wrong library. To control Word, you
should just reference the "Word" namespace, instead of
"Microsoft.Office.Interop.Word." (This can happen when you switch back and
forth between libraries -- you get more DLLs in the "References" list than
you need, and it becomes a mess.)

It might be easier if you create a new project for testing purposes. This
worked for me (using the Office 2000 libraries -- don't have Office 97
installed on my dev machine):

1. Create a new WinForms application, and drop a button on it.

2. Add a COM reference to the appropriate Word library (8.0 for you.) In
addition to the standard references, you should have "Office," "VBIDE" and
"Word."

3. Insert the following code to handle the button's click event:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Debug.WriteLine("Opening Microsoft Word")
Dim App As New Word.Application

Debug.WriteLine("Showing Microsoft Word")
App.Visible = True

Debug.WriteLine("Quitting Microsoft Word")
App.Quit()

End Sub

It will open Word, make it visible, and then close it. It should also work
for any version of Word, 97 and higher.

If this works, then try clearing out all of the extraneous references in
your working application, and then add the reference to the Word 8.0 and/or
Excel 8.0 libraries again. You can just delete the "Imports..." lines and
make sure that your code is referencing the correct libraries.

Hope this helps!
"scorpion53061" <Its the end of the world as we know it@here.com> wrote in
message news:ut*************@TK2MSFTNGP12.phx.gbl...
Thank you for respoding. Plesae let me know what went wrong here.

After doing this (putting in 8.0) what I had before

Imports Word = Microsoft.Office.Interop.Word
Imports Office = Microsoft.Office.Core

isnt working. IT is saying:

C:\Documents and Settings\Administrator\My Documents\Visual Studio
Projects\MS Word Assistant\fmworddoc.vb(2): Namespace or type 'Word' for the Imports 'Microsoft.Office.Interop.Word' cannot be found.

C:\Documents and Settings\Administrator\My Documents\Visual Studio
Projects\MS Word Assistant\fmworddoc.vb(3): Imports alias 'Office' conflicts with 'Namespace Office' declared in the root namespace.
The dependency 'Interop.VBIDE' could not be found.
"Robert Jacobson" <rj**********************@nospam.com> wrote in message
news:OW****************@TK2MSFTNGP11.phx.gbl...
You should have Office 97 installed on your development machine, and your
project should only reference the Office 97 type libraries (version 8.0, I think.)

The application will then be forward compatible to later versions of

Office
as well. (In theory at least -- there are reports of a few subtle changes in the Office object model that can introduce bugs, so test your

application
thoroughly with other versions.) You can have other versions of Office
installed on your machine for testing purposes, but it isn't strictly
necessary.
"scorpion53061" <Its the end of the world as we know it@here.com> wrote in message news:Of**************@TK2MSFTNGP11.phx.gbl...
in my head......

I need my application to work with Office 97, 2000, XP and 2003
versions of
MS Word and MS Excel.

IN order to acomplish this I have to install in different folders:

1. remove my Office 2003
2. Install Office 97 Word and Excel
3. Install Office 2000 Word and Excel
4. Install Office XP Word and Excel
5. Reinstall my Office 2003
6. Open my project and add references for Word and Excel libraries 8?-11. The libraries will be there then right?
7. REbuild project.......

Last time I did something like this I spent weeks trying to fix the
mess it
turned into. I tried to install OFfice XP next to 2003 without taking

2003 off.

I so much do not want to go through that again....

Thanks again.



Nov 20 '05 #6
What about Word.IApplication interface... Shouldn't that have the general
stuff in it for those versions? After all, wasn't that the mindset of
microsoft when they devleoped the office product line, to provide backward
compatitiblity? And isn't that one of the reasons we use interfaces?
"Robert Jacobson" <rj**********************@nospam.com> wrote in message
news:ON**************@TK2MSFTNGP11.phx.gbl...
You can do that, but the references to Microsoft Word will then be
late-bound (of type "Object" instead of type "Word.Application.") This is
generally undesirable because you won't be able to use Intellisense in the
IDE, and increases the opportunities for bugs. There might be circumstances where it's necessary, but it should generally be avoided.
"CJ Taylor" <no****@blowgoats.com> wrote in message
news:10*************@corp.supernews.com...
Pardon my VB6 here, but using it purly for example.

Isn't the way Microsoft Office products are designed that if you just do a
createobject type issue with

CreateObject("Word.Application") it automatically returns the appropriate version as per the regsitry defintion?

Could we use the same idea here? And only interop the Excel 7.0 (97)
Library to ensure 100% backwards compatiblity?

-CJ

"Robert Jacobson" <rj**********************@nospam.com> wrote in message
news:OW****************@TK2MSFTNGP11.phx.gbl...
You should have Office 97 installed on your development machine, and your project should only reference the Office 97 type libraries (version 8.0,
I
think.)

The application will then be forward compatible to later versions of Office
as well. (In theory at least -- there are reports of a few subtle changes in the Office object model that can introduce bugs, so test your

application
thoroughly with other versions.) You can have other versions of
Office installed on your machine for testing purposes, but it isn't strictly
necessary.
"scorpion53061" <Its the end of the world as we know it@here.com>

wrote in message news:Of**************@TK2MSFTNGP11.phx.gbl...
> in my head......
>
> I need my application to work with Office 97, 2000, XP and 2003 versions of
> MS Word and MS Excel.
>
> IN order to acomplish this I have to install in different folders:
>
> 1. remove my Office 2003
> 2. Install Office 97 Word and Excel
> 3. Install Office 2000 Word and Excel
> 4. Install Office XP Word and Excel
> 5. Reinstall my Office 2003
> 6. Open my project and add references for Word and Excel libraries

8?-11.
> The libraries will be there then right?
> 7. REbuild project.......
>
> Last time I did something like this I spent weeks trying to fix the mess it
> turned into. I tried to install OFfice XP next to 2003 without

taking 2003
> off.
>
> I so much do not want to go through that again....
>
> Thanks again.
>
>
>



Nov 20 '05 #7
Do you mean the "Word.Application" interface? You'll only get that if your
project references a type library that defines the interface. Each version
of Word is backwards compatible to applications developed against earlier
versions of Word . (That's because later versions of the Word type library
are binary compatible with earlier versions of the libraries.)
Consequently, if your application references, e.g., the Word 8.0 type
library (Word 97), it will also work with Word 2000 (the Word 9.0 library),
Word XP (the Word 10.0 library), etc.

However, you won't get a strongly-typed interface if you just use
CreateObject, unless you cast the resulting reference from CreateObject to
type "Word.Application." In general, "Dim x as Object =
CreateObject("Word.Application")" is evil, while "Dim x as New
Word.Application" is good.
"CJ Taylor" <no****@blowgoats.com> wrote in message
news:10*************@corp.supernews.com...
What about Word.IApplication interface... Shouldn't that have the general
stuff in it for those versions? After all, wasn't that the mindset of
microsoft when they devleoped the office product line, to provide backward
compatitiblity? And isn't that one of the reasons we use interfaces?
"Robert Jacobson" <rj**********************@nospam.com> wrote in message
news:ON**************@TK2MSFTNGP11.phx.gbl...
You can do that, but the references to Microsoft Word will then be
late-bound (of type "Object" instead of type "Word.Application.") This is
generally undesirable because you won't be able to use Intellisense in the IDE, and increases the opportunities for bugs. There might be circumstances
where it's necessary, but it should generally be avoided.
"CJ Taylor" <no****@blowgoats.com> wrote in message
news:10*************@corp.supernews.com...
Pardon my VB6 here, but using it purly for example.

Isn't the way Microsoft Office products are designed that if you just do a createobject type issue with

CreateObject("Word.Application") it automatically returns the appropriate version as per the regsitry defintion?

Could we use the same idea here? And only interop the Excel 7.0 (97)
Library to ensure 100% backwards compatiblity?

-CJ

"Robert Jacobson" <rj**********************@nospam.com> wrote in
message news:OW****************@TK2MSFTNGP11.phx.gbl...
> You should have Office 97 installed on your development machine, and

your
> project should only reference the Office 97 type libraries (version 8.0,
I
> think.)
>
> The application will then be forward compatible to later versions of
Office
> as well. (In theory at least -- there are reports of a few subtle

changes
> in the Office object model that can introduce bugs, so test your
application
> thoroughly with other versions.) You can have other versions of

Office > installed on your machine for testing purposes, but it isn't strictly > necessary.
>
>
> "scorpion53061" <Its the end of the world as we know it@here.com> wrote
in
> message news:Of**************@TK2MSFTNGP11.phx.gbl...
> > in my head......
> >
> > I need my application to work with Office 97, 2000, XP and 2003

versions
> of
> > MS Word and MS Excel.
> >
> > IN order to acomplish this I have to install in different folders:
> >
> > 1. remove my Office 2003
> > 2. Install Office 97 Word and Excel
> > 3. Install Office 2000 Word and Excel
> > 4. Install Office XP Word and Excel
> > 5. Reinstall my Office 2003
> > 6. Open my project and add references for Word and Excel libraries
8?-11.
> > The libraries will be there then right?
> > 7. REbuild project.......
> >
> > Last time I did something like this I spent weeks trying to fix

the mess
> it
> > turned into. I tried to install OFfice XP next to 2003 without

taking 2003
> > off.
> >
> > I so much do not want to go through that again....
> >
> > Thanks again.
> >
> >
> >
>
>



Nov 20 '05 #8

"Robert Jacobson" <rj**********************@nospam.com> wrote in message
news:O%***************@tk2msftngp13.phx.gbl...
Do you mean the "Word.Application" interface? You'll only get that if your project references a type library that defines the interface. Each version of Word is backwards compatible to applications developed against earlier
versions of Word . (That's because later versions of the Word type library are binary compatible with earlier versions of the libraries.)
Consequently, if your application references, e.g., the Word 8.0 type
library (Word 97), it will also work with Word 2000 (the Word 9.0 library), Word XP (the Word 10.0 library), etc.

However, you won't get a strongly-typed interface if you just use
CreateObject, unless you cast the resulting reference from CreateObject to
type "Word.Application." In general, "Dim x as Object =
CreateObject("Word.Application")" is evil, while "Dim x as New
Word.Application" is good.
I understand the difference between strong typing and weak typing or
latebinding vs. earlybinding, whatever you want to call it. But I'm trying
to help you solve your problem given you know nothing of what your user has
installed.

So, you want to use strongly typed so you can use intellisense, well fair
enough. Then reference your oldest library you have, which should guaruntee
your backwards compatibilty, but don't Dim X as new Word.Application,
because you create a constraint at that point.

Instead type it and use CreateObject. You still have your intellisense,
maybe not for all the features in XP, but then again, you could check to see
what versions of office are availible on the host machine.

I hope you understand I'm tyring to just give you a really simple solution
to the problem without having to do all sorts of version checks/go through
the mess you were going to go through earlier.

Good luck,
CJ


"CJ Taylor" <no****@blowgoats.com> wrote in message
news:10*************@corp.supernews.com...
What about Word.IApplication interface... Shouldn't that have the general
stuff in it for those versions? After all, wasn't that the mindset of
microsoft when they devleoped the office product line, to provide backward compatitiblity? And isn't that one of the reasons we use interfaces?
"Robert Jacobson" <rj**********************@nospam.com> wrote in message
news:ON**************@TK2MSFTNGP11.phx.gbl...
You can do that, but the references to Microsoft Word will then be
late-bound (of type "Object" instead of type "Word.Application.") This
is generally undesirable because you won't be able to use Intellisense in the IDE, and increases the opportunities for bugs. There might be circumstances
where it's necessary, but it should generally be avoided.
"CJ Taylor" <no****@blowgoats.com> wrote in message
news:10*************@corp.supernews.com...
> Pardon my VB6 here, but using it purly for example.
>
> Isn't the way Microsoft Office products are designed that if you
just do
a
> createobject type issue with
>
> CreateObject("Word.Application") it automatically returns the

appropriate
> version as per the regsitry defintion?
>
> Could we use the same idea here? And only interop the Excel 7.0
(97) > Library to ensure 100% backwards compatiblity?
>
> -CJ
>
> "Robert Jacobson" <rj**********************@nospam.com> wrote in

message > news:OW****************@TK2MSFTNGP11.phx.gbl...
> > You should have Office 97 installed on your development machine, and your
> > project should only reference the Office 97 type libraries (version 8.0,
I
> > think.)
> >
> > The application will then be forward compatible to later versions
of > Office
> > as well. (In theory at least -- there are reports of a few subtle
changes
> > in the Office object model that can introduce bugs, so test your
> application
> > thoroughly with other versions.) You can have other versions of

Office
> > installed on your machine for testing purposes, but it isn't

strictly > > necessary.
> >
> >
> > "scorpion53061" <Its the end of the world as we know it@here.com>

wrote
in
> > message news:Of**************@TK2MSFTNGP11.phx.gbl...
> > > in my head......
> > >
> > > I need my application to work with Office 97, 2000, XP and 2003
versions
> > of
> > > MS Word and MS Excel.
> > >
> > > IN order to acomplish this I have to install in different folders: > > >
> > > 1. remove my Office 2003
> > > 2. Install Office 97 Word and Excel
> > > 3. Install Office 2000 Word and Excel
> > > 4. Install Office XP Word and Excel
> > > 5. Reinstall my Office 2003
> > > 6. Open my project and add references for Word and Excel libraries > 8?-11.
> > > The libraries will be there then right?
> > > 7. REbuild project.......
> > >
> > > Last time I did something like this I spent weeks trying to fix the mess
> > it
> > > turned into. I tried to install OFfice XP next to 2003 without

taking
> 2003
> > > off.
> > >
> > > I so much do not want to go through that again....
> > >
> > > Thanks again.
> > >
> > >
> > >
> >
> >
>
>



Nov 20 '05 #9
You don't need to use version checks on the host machine -- it doesn't
matter which version of Office the client has installed. If I develop an
application using the Word 97 type libraries on my development machine, it
will automatically work on a client machine that uses Word 2000, Word XP or
Word 2003.

It's a very simple solution -- things just got messy here because Scorpion
was trying to reference different versions of the type library, which was
unnecessary.
[Snip]
So, you want to use strongly typed so you can use intellisense, well fair
enough. Then reference your oldest library you have, which should guaruntee your backwards compatibilty, but don't Dim X as new Word.Application,
because you create a constraint at that point.

Instead type it and use CreateObject. You still have your intellisense,
maybe not for all the features in XP, but then again, you could check to see what versions of office are availible on the host machine.

I hope you understand I'm tyring to just give you a really simple solution to the problem without having to do all sorts of version checks/go through
the mess you were going to go through earlier.

Good luck,
CJ

Nov 20 '05 #10
> It's a very simple solution -- things just got messy here because Scorpion
was trying to reference different versions of the type library, which was
unnecessary.


I am sorry about that. I have an app that was suppose to go to a client that
did a lot of word automation and I needed to be sure what library I was
suppose to be in. I have heard many lines of thought on this issue.

For the record, I startd with 97 but found it limiting. I switched to 2000
library which was okay with the client.
Nov 20 '05 #11
On Fri, 16 Jan 2004 13:04:40 -0600, "scorpion53061" <Its the end of the world as we know
it@here.com> wrote:

¤ in my head......
¤
¤ I need my application to work with Office 97, 2000, XP and 2003 versions of
¤ MS Word and MS Excel.
¤
¤ IN order to acomplish this I have to install in different folders:
¤
¤ 1. remove my Office 2003
¤ 2. Install Office 97 Word and Excel
¤ 3. Install Office 2000 Word and Excel
¤ 4. Install Office XP Word and Excel
¤ 5. Reinstall my Office 2003
¤ 6. Open my project and add references for Word and Excel libraries 8?-11.
¤ The libraries will be there then right?
¤ 7. REbuild project.......
¤
¤ Last time I did something like this I spent weeks trying to fix the mess it
¤ turned into. I tried to install OFfice XP next to 2003 without taking 2003
¤ off.
¤
¤ I so much do not want to go through that again....

Develop against Office 97 and use late binding:

HOW TO: Use Visual Basic .NET for Binding for Office Automation Servers
http://support.microsoft.com/default...b;en-us;304661
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)
Nov 20 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: semassaq4 | last post by:
DEAR FRIEND, THROUGH THE COURTESY OF BUSINESS OPPORTUNITY, I TAKE LIBERTY ANCHORED ON A STRONG DESIRE TO SOLICIT YOUR ASSISTANCE ON THIS MUTUALLY BENEFICIAL AND RISKFREE TRANSACTION WHICH I HOPE...
8
by: daniel.w.gelder | last post by:
Hello, I have been trying to write a functor template for a week now and I'm just having tons of trouble because I don't understand an issue that I guess is pretty basic to this task. ...
4
by: ELEMA.LO | last post by:
Hi all, I installed several times the xml analysis provider but I am having severe issues in having it working on a Windows 2003 server machine. I followed all the described steps including adding...
3
by: JenHu | last post by:
Hi experts, In my asp.net application, I use VB.NET code. I want to have a yes/no button in my popup message box when user click "Submit" button. It will check if the employee is a rehire, if...
17
by: Saps | last post by:
Hi all. Can anyone help me here. I have loads of .sql files and i need a way to call these from my asp page so the user can run them from the browser. Meaning i have a page with a list of all...
5
by: uanmi | last post by:
There is a patch to upgrade UAB2 to dotnet 2 on gotdotnet But, as normal, there are no instructions on what to do to patch the Microsoft UAB 2 install. Can Microsoft please upgrade their UAB2...
8
by: John Austin | last post by:
I need to understand why if I add a control and use AddHandler to connect its click event, it will work in Page_Load, but not in a Button_Click. The idea is that the user types some data, presses...
14
by: mlw | last post by:
Do not take anything about this, it is not a flame or troll, while I'm not new to Java I favor C++. However, I may need to use it in a contract position, and am concerned that the restrictions it...
6
by: xhe | last post by:
I am using ffmpeg to convert video, this is a sample script: $str='/home/transla1/bin/ffmpeg -i /home/transla1/public_html/ cybertube/web/uploads/video/31_AK000005.AVI -s 240x180 -b 100k -ar...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.