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 SkipVought 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: *

  • Users: dsi
  • Order by date
  1. dsi

    Excel Printing - Fit To Page

    Under File > Page Setup, choose the Page Tab. There is a scaling option so that you can fit the output to x pages wide by y pages tall. If it's a multi-page document and you just want to fit the width, set the "y pages tall" to something that exceeds your needs.
  2. dsi

    How to get the computer ID

    See faq222-429
  3. dsi

    Show image in VB app that is stored in an Access DB

    Thanks for your help.
  4. dsi

    Excel - how do use VBA to select by object name instead of sheet name?

    You can try using the CodeName property. Here is a little code that lists all of the sheet names and associated code names: Sub ListSheets() Dim ws As Worksheet For Each ws In ThisWorkbook.Worksheets MsgBox ws.Name & vbCrLf & ws.CodeName Next ws End Sub
  5. dsi

    Show image in VB app that is stored in an Access DB

    VB6 I am trying to display a picture in an Image control. The picture is stored in an Access table as an OLE object. I am trying to use recordset.fields(i) to get the object, which may be part of the problem. Any ideas?
  6. dsi

    Excel version... dll problem...!!! Create a package!

    You probably need to create the package with the latest version of the files. I had this problem incorporating the Outlook library without any difficulty. I think the only problem you may have will be using functions that are only available in the newer version. You may still want to wait for...
  7. dsi

    Friend asked me to help with the fo

    Just realized you are in the wrong forum. You should post this question in the Microsoft: Windows XP forum. Just hit the browse forums and you'll find it.
  8. dsi

    Friend asked me to help with the fo

    Are you using a legitimate XP CD? Some OEM versions will only install on OEM machines.
  9. dsi

    Excel open spreadsheet problem

    Have you tried copying the file to your hard drive? I would highly discourage working with files directly from floppy.
  10. dsi

    New documents always in BOLD

    You'll need to open Normal.dot and change the setting. If you still have trouble, you can simply remove the file and Word will create a new default template when you open the application.
  11. dsi

    Wait for outside program

    Check out faq222-428
  12. dsi

    "On error....go to" staement is not working in my macro

    You may want to post a snipit of your code for us to look at.
  13. dsi

    Refresh Pivot Tables

    Try this: Sub RefreshAllPivotTables() Dim ws As Worksheet Dim pt As PivotTable For Each ws In ThisWorkbook.Worksheets For Each pt In ws.PivotTables pt.RefreshTable Next Next Set pt = Nothing Set ws = Nothing End Sub
  14. dsi

    Excel Open question

    I am assuming you're using 4GL: /***********************************************/ /* Open Excel Application */ /***********************************************/ DEF VAR lReturnCode AS INTEGER NO-UNDO. PROCEDURE ShellExecuteA EXTERNAL "SHELL32.DLL": DEF INPUT...
  15. dsi

    Suggestions for good CAD viewing software

    Here are a couple of sites that offer viewers for AutoCAD. infograph.com cimmetry.com kamelsoft.com drdwg.com fastcad.com
  16. dsi

    Calculating the Angle in Excell

    You can try to use the Solver add-in to accomplish this.
  17. dsi

    Searching a text file with VBA

    Do While Not EOF(1) Line Input #1, DPFLine If DPFLine = " 8" Then 'grab next line Line Input #1, DPFLine Exit Do End If Loop
  18. dsi

    This Drawing.Utility.GetPoint run-time error - VBA.

    You will need to trap the error. Here is a quick example: On Error Resume Next TryAgain: pt = ThisDrawing.Utility.GetPoint(, &quot;Pick the Point: &quot;) If Err.Number <> 0 Then Err.Clear GoTo TryAgain End If On Error Goto ErrHndlr
  19. dsi

    AutoOpen() doesn't fire - - opening Word doc from link

    You may want to try moving the code from Auto_Open() to Document_Open() in ThisDocument.

Part and Inventory Search

Back
Top