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 TouchToneTommy 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: PorscheGT2
  • Content: Threads
  • Order by date
  1. PorscheGT2

    Getting autofilter list into a combobox...

    Hello all, Is it possible to get the criteria list for a particular autofilter to appear in a combo box? TIA! Marvin
  2. PorscheGT2

    Is animation possible in VBA?

    Hi all, Is it possible to animate several picture/graphic frames in VBA? Just wondering. Thanks in advance.
  3. PorscheGT2

    Controlling other applications with VBA, need help!

    Hello All, I've been tasked by my manager to create a macro that would copy a range of cells from MS Excel to MS Word. So basically when it gets transferred to Word, it becomes a table. Here's the code: Application.ScreenUpdating = False Dim appWD As Word.Application, docWD As...
  4. PorscheGT2

    How to Unprotect a Worksheet in MS Excel

    Hello all! Before I go on, here's the code I'm working on: ActiveSheet.Unprotect "GT2" Dim BASE, RX, BUILDUP, PRES, QSUM, RIB, SQ, BASEDIR, RXDIR, _ BUILDUPDIR, PRESDIR, QSUMDIR, RIBDIR, SQDIR BASE = Range("b9") BASEDIR = Dir("x:\" & BASE) RX = Range("b12") RXDIR = Dir("x:\" & RX)...
  5. PorscheGT2

    How to create a copy of an activeworksheet to a new workbook

    Ok, here's the code I did last night: Private Sub Create_Copy_Click() Unload UserOptForm SrvArea = Range("d5") svname = SrvArea & " - BOBCopy.xls" Workbooks.Add.SaveAs FileName:=svname Windows("The 2004 Book of Business Report.xls").Activate...
  6. PorscheGT2

    How to go to make a MsgBox message go to the next line if it....

    .. doesnt fit the screen. I know you use the underscore symbol to do that, but how? TIA!
  7. PorscheGT2

    Need help moving entire rows to another worksheet.

    Ok, here's the code: Application.ScreenUpdating = False Columns(&quot;a:a&quot;).Select PurchID = &quot;221&quot; If TypeName(Cells.Find(PurchID)) <> &quot;Range&quot; Then MsgBox (&quot;Purchaser ID not found!&quot;) Range(&quot;a1&quot;).Select Else: Cells.Find(PurchID).Activate...
  8. PorscheGT2

    Deleting pages in Word, Need Help.

    Hello, Is there a command in VBA that allows to delete pages in Word? The way I'm doing it right now is very clunky; I basically record a macro to position the cursor just right below the page break and do a shift+PageUp to cover the upper pages to delete it. Any help would be greatly...
  9. PorscheGT2

    How to transfer info from Excel to Access, Need Help.

    Hello, I'm trying to copy data from Excel to Access using the Template Wizard. This process works although it involves using the template and saving it. What I would like to do is to transfer directly from one of the Excel tool spreadsheets we're using to Access without needing the template. Is...

Part and Inventory Search

Back
Top