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 strongm 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. Karpov

    clipboard stuff

    I have the same problem. I know this is possible in JavaScript with one line of code: vSheetContent = document.all.tabContent(0).outerHTML window.clipboardData.setData("text", vSheetContent) Surely there is something similar in VBScript - it's such a basic need but it seems you...
  2. Karpov

    Open Excel inside browser

    Has anyone else encountered a similar problem or found a soln. to this? I have a piece of Javascript to open an Excel workbook that is sitting on an Oracle application server. I want the workbook to be opened inside the browser but it opens in a separate instance of Excel. I have read a...
  3. Karpov

    Javascript to open Excel inside the browser

    Has anyone else encountered a similar problem or found a soln. to this? I have a piece of Javascript to open an Excel workbook that is sitting on an Oracle application server. I want the workbook to be opened inside the browser but it opens in a separate instance of Excel. I have read a...
  4. Karpov

    Stop screen updating in Excel

    Dan, The code to stop the screen updating is Application.ScreenUpdating = False Try it in combination with these lines: Application.ScreenUpdating = False Application.StatusBar = "Running macro." --your code here.. MsgBox "Macro complete", vbOKOnly + vbInformation...
  5. Karpov

    Comments in Excel Cells via VBA

    Ok, .Author cannot be set, but as what is actually used is the value of Application.UserName. You can change the value of .UserName just before your comment adding code (read it into a variable before changing it so you can reset the UserName to its original value). However, you should be able...

Part and Inventory Search

Back
Top