Yes that worked. I received a page that said upload mulitple files with a
"allow to install active X" drop down. Do does that mean it should be working
"Sundher" wrote:
> On May 8, 11:14 am, AmyAdmin <AmyAd
@discussions.microsoft.com>
> wrote:
> > Yes it's there in my Office 11 folder. Any more Ideas?
> > "Sundher" wrote:
> > > Multiple file upload is a microsoft activex control which ships along
> > > with office 2003, ensure that you STSUPLD.dll in your office
> > > installatin folder.
> > > On May 8, 12:00 am, AmyAdmin <AmyAd@discussions.microsoft.com>
> > > wrote:
> > > > Yes sorry my magoo. I did mean Sharepoint Portal Server 2003. The problem is
> > > > occuring with IE versions 5-7. It was there a couple of weeks ago when I was
> > > > training the department, and now it's gone. I don't know what has happened.
> > > > Is it possible a windows update could have affected this? Please advise...I'm
> > > > simply stumped.
> > > > Thanks -Amy
> > > > "Mike Walsh" wrote:
> > > > > You didn't say whether you are still using the same browser.
> > > > > Upload multiple files won't be visible with Firefox and other similar
> > > > > browsers.
> > > > > P.S. You presumably mean SharePoint *Portal* Server (2003) - "SharePoint
> > > > > Server" is 2007 (MOSS 2007).
> > > > > Mike Walsh
> > > > > WSS FAQ:www.wssv3faq.com/wss.collutions.com
> > > > > No private questions please (additions to FAQ welcome)
> > > > > "AmyAdmin" <AmyAd@discussions.microsoft.com> wrote in message
> > > > >news:23556E95-18E1-4C5D-98B2-C85052F4AAB4@microsoft.com...
> > > > > > Hi there-
> > > > > > I have office 2003 and windows xp pro. I am running sharepoint server
> > > > > > 2003.
> > > > > > I had the upload mulitple files option then one day I didn't. I'm very
> > > > > > confused and just can't seem to find out what happend. Please Advise.
> > > > > > Amy
> > > > > > --
> > > > > > Thanks for all the help in advance
> > > > > > -Amy- Hide quoted text -
> > > > - Hide quoted text -
> >
> try the following sample piece of html code and check if that is
> working or not,
> ---- html code Begining---
> <HTML>
> <HEAD>
> <SCRIPT LANGUAGE="javascript">
> function MultipleUploadView()
> {
> document.all.idUploadCtl.SetTreeViewColor("#FF0000");
> document.all("idMultipleView").style.display="inline";
> }
> function DocumentUpload()
> {
> document.all.idUploadCtl.MultipleUpload();
> }
> </SCRIPT>
> </HEAD>
> <BODY>
> <FORM>
> <P CLASS="ms-toolbar">
> <A HREF="javascript:MultipleUploadView()"
> TARGET="_self">Upload Multiple Files</A>
> </P>
> <DIV ID=idMultipleView style='display:none'>
> <P CLASS="ms-toolbar">
> <A HREF="javascript:DocumentUpload()"
> TARGET="_self">Save and Close</A>
> </P>
> <OBJECT id=idUploadCtl name=idUploadCtl
> CLASSID=CLSID:07B06095-5687-4d13-9E32-12B4259C9813
> WIDTH='100%' HEIGHT='350px'>
> </OBJECT>
> </DIV>
> </FORM>
> </BODY>
> </HTML>
> ---- html code Ending---
> If this does not work, I think you need to check for you registy about
> the registration of STSupld.dll, if it is not found register that dll.