Found A Solution!!!!
After more searching online, I have found a solution to my problem...
Here's the code (with some comments) to help anyone else that ever finds this post...
To actually copy a spreadsheet in one file to a spreadsheet in another, do the following (this assumes that the data you want to copy in Book1 is on the first sheet when it is opened. If it's not, after you open Book1, select what sheet it needs to be focused on, as is done with Book2):
***
Dim objXL As Object
On Error Resume Next
Set objXL = CreateObject("Excel.Application")
With objXL.Application
.Visible = True
.Workbooks.Open FileName:="C:\Documents and Settings\Desktop\Book1.xls" ' This is the file that has the spreadsheet you want to copy
.Cells.Select ' Selects all of the spreadsheet
.Selection.Copy ' Copies the selection
.Workbooks.Open FileName:="C:\Documents and Settings\Desktop\Book2.xls" ' This is the file that you want to copy the spreadsheet into
.Sheets("Sheet2").Select ' Select the sheet to place the copy on
.ActiveSheet.Paste ' Paste the selection
.Workbooks(2).Save = True ' Save the file
.Workbooks.Close ' Close and etc below
.Quit
End With
Set objXL = Nothing
***
Ok. So, what if you have 4 files to combine and need to add a worksheet? Do the following:
***
Dim objXL As Object
On Error Resume Next
Set objXL = CreateObject("Excel.Application")
With objXL.Application
.Visible = True
.Workbooks.Open FileName:="C:\Documents and Settings\qprismi\Desktop\Book1.xls" ' File to add the worksheet to
.Sheets.Add after:=.Worksheets("Sheet3") ' Adds the worksheet plus tells it where to add it... you can also use before instead of after
.ActiveSheet.Name = "Hello" ' Give the new worksheet a different name
.Workbooks(1).Save = True ' Save the workbook
.Workbooks.Close ' Close and etc
.Quit
End With
Set objXL = Nothing
***
Just build these into a module or add them to the VB code behind a button on your form and you should be good to go!
And, just in case any of you out there are wondering where I found this, I tweaked some information that I found at the following Excel website -- seems like a good place to reference things like this:
http://www.mrexcel.com/board2/index.php
~Happy Coding!~