Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. wolexie

    Error while trying to create a Word Document (Client Side) in ASP

    Also, you have to lower the security settings on the browser to allow the creation of the instance. Dim myWdApp, myWd On Error Resume Next Set myWdApp = CreateObject(&quot;Word.application&quot;) myWdApp.Visible = True Set myWd = myWdApp.Documents.Add If Err.Number<>0 Then If...
  2. wolexie

    Error while trying to create a Word Document (Client Side) in ASP

    Does the pc you're working on have the MS Office Object lib?
  3. wolexie

    Error while trying to create a Word Document (Client Side) in ASP

    Might Help, try this: Sub MakeWord() Dim myWdApp,myWd Set myWdApp = CreateObject(&quot;Word.Application&quot;) myWdApp.Visible = True Set myWd = myWdApp.Documents.Add End Sub Note: This creates the instance on the client machine and not on your server. To create an instance on your server...
  4. wolexie

    Excel formatting

    try this too Set myXLApp = createobject(&quot;Excel.Application&quot;) myXLApp.Visible = True Set myXL = myXLApp.Workbooks.Add Set mySheet =myXL.WorkSheets(1) Set myRng = mySheet.Range(&quot;A1&quot;) rCount=0 With myRng.Offset(rCount,0) .Font.Bold = True .value=&quot;This is it&quot...
  5. wolexie

    Passing table tags to innerHTML

    function WriteOutDiv() { var t=&quot;<table><tr><td id=TD1> Test Cell</td></tr></table>&quot;; document.all.item(&quot;tesDiv&quot;).innerHTML=t; } <div id=tesDiv style=&quot;visibility:visible;display:block&quot;> <img src=&quot;dothide.gif&quot; onclick=&quot;WriteOutDiv()&quot;>...
  6. wolexie

    Help!

    Not come across that but OnBlur! Yeah!!!
  7. wolexie

    make a button open a url

    yep! You could write this in a sub: Sub NavigateTo(sUrl) Response.redirect sUrl End Sub or <input type=button onclick=&quot;Javascript:window.location.href 'http://whatever.asp'&quot;> Hope this helps :-)

Part and Inventory Search

Back
Top