A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Talking to Excel



 
 
Thread Tools Display Modes
  #11  
Old January 30th, 2009, 03:13 AM posted to microsoft.public.access.gettingstarted
strive4peace
external usenet poster
 
Posts: 1,670
Default Talking to Excel

Hi Tom,

I know he said what he wanted to do was combine the sheets into one
workbook -- but he also said data was in Access, so I am assuming
(perhaps incorrectly) that it is normalized and all in one place... so I
was giving him a way to consolidate everything in all the worksheets

~~~
you are incorrect, it does not skip the first file, it simply does not
assign anything to index = 0 if the array index starts there...the first
file is index used is 1 -- that is why I used
For i = 1 To UBound(arrFile)
instead of
For i = LBound(arrFile) To UBound(arrFile)

I did it this way because I like to use
Option Base 1
(Used at module level to declare the default lower bound for array
subscripts)
-- so the code works with both Base 0 or Base 1

.... but there is an error ... statement should read:
If Not UBound(arrFile) 1 Then
not 0
when testing to see if any Excel files were found
~~~

I would have explained more, but I had hungry boys who wanted to get
food before the store closed smile

~~~
The reason I read filenames into an array instead of just looping and
getting them with DIR is in case TransferSpreadsheet would be used ...
that can reset the Dir loop -- also, if the code breaks, then the Dir
loop will lose its place. For these reasons, I have found it best to
load filenames into an array, then work with the array.

~~~

NOTE (Bre-x):
the IDs should be dimensioned as LONG in the parameters, not double
(since double is stored as a floating point number and not accurate for
exact comparisons). I am assuming these are either Autonumber or Long
in Access -- if not, then they should be


Warm Regards,
Crystal
remote programming and training

Video Tutorials on YouTube!
http://www.youtube.com/user/LearnAccessByCrystal

Access Basics
8-part free tutorial that covers essentials in Access
http://www.AccessMVP.com/strive4peace

*
(: have an awesome day
*





Tom Wickerath wrote:
Hi Crystal,

I am assuming that your final goal is to combine all the data from each
sheet into one table in Access...


My interpretation is that Bre-x wants to combine all the data from each
sheet, in several Excel files, into one workbook in Excel using VBA code
within an Access application. His/her function likely references values in a
table, such as "tcid", "tlid", "custid", "mach" and "prog".

Bre-x:

As Bob Phillips points out, "myPath is not defined so will be null". I've
put together a test subroutine, along with a revised function that sets
mypath. You should immediately change an option in the Visual Basic Editor
(VBE) to Require Variable Declaration, as mypath was initially an undeclared
variable. See this article for more discussion:

Always Use Option Explicit
http://www.access.qbuilt.com/html/ge...tml#VBEOptions

Here is a start, although you've got more work to do. I was able to get this
function to combine worksheets from source Excel files, into one file, and
delete the appropriate sheets ("summary" and "tic&tie"). Your code, as
written, skips the first Excel file found by the DIR function. I'm not sure
if that is what you intended or not.

Sub TestIT()

Call copy_sheets(1, 1, "123", 2, 2)

End Sub

Public Function copy_sheets( _
tcid As Double, _
tlid As Double, _
custid As String, _
mach As Integer, _
prog As Integer)

Dim thepath As String
Dim sPath As String
Dim bfirst As Boolean
Dim sName As String
Dim bk As Workbook
Dim bk1 As Workbook
Dim sh As Object
Dim mypath As String


'Set Variables
mypath = "G:\Temp\Combined\"
thepath = mypath & mach & "\" & custid & "\" & mach & prog & ".xls"

Set bk1 = Workbooks.Open(thepath)

bfirst = True
sPath = "N:\1CNCACCESSAPPS\AccessApps\exceltemp\john\"
sPath = "G:\Temp\"
sName = Dir(sPath & "*.xls")

Do While sName ""
Set bk = Workbooks.Open(sPath & sName)
Debug.Print bk.Name

If bfirst Then
bk.Sheets.Copy
bfirst = False
Set bk = ActiveWorkbook
Else
bk.Sheets.Copy After:=bk1.Sheets(bk1.Sheets.Count)
End If
bk.Close SaveChanges:=False
sName = Dir()
Loop

With bk1.Application
.Visible = True
.DisplayAlerts = False
For Each sh In .Sheets
If InStr(1, sh.Name, "summary", vbTextCompare) Or _
InStr(1, sh.Name, "tic&tie", vbTextCompare) Then
sh.Delete
End If
Next sh
.DisplayAlerts = True
End With

End Function


When testing, make sure to periodically open up Task Manager
(Ctrl-Alt-Delete) and End Process on copies of Excel that should not be
running. That's the part that I was alluding to above, when I said that you
have more work to do.


Tom Wickerath
Microsoft Access MVP
http://www.accessmvp.com/TWickerath/
http://www.access.qbuilt.com/html/ex...tributors.html

  #12  
Old January 30th, 2009, 03:28 AM posted to microsoft.public.access.gettingstarted
Tom Wickerath
external usenet poster
 
Posts: 3,914
Default Talking to Excel

Hi Crystal,

you are incorrect, it does not skip the first file, it simply does not
assign anything to index = 0 if the array index starts there...


I was not commenting on your code--in fact, I did not even look at it. My
comment about skipping the first Excel file (ie. the worksheets in this file
are not added to the combined Excel file) was applicable only to the code
that Bre-x presented in the orginal post, which does not involve an array. I
tested it, and that's the result I got.



Tom Wickerath
Microsoft Access MVP
http://www.accessmvp.com/TWickerath/
http://www.access.qbuilt.com/html/ex...tributors.html
__________________________________________

"strive4peace" wrote:

Hi Tom,

I know he said what he wanted to do was combine the sheets into one
workbook -- but he also said data was in Access, so I am assuming
(perhaps incorrectly) that it is normalized and all in one place... so I
was giving him a way to consolidate everything in all the worksheets

~~~
you are incorrect, it does not skip the first file, it simply does not
assign anything to index = 0 if the array index starts there...the first
file is index used is 1 -- that is why I used
For i = 1 To UBound(arrFile)
instead of
For i = LBound(arrFile) To UBound(arrFile)

I did it this way because I like to use
Option Base 1
(Used at module level to declare the default lower bound for array
subscripts)
-- so the code works with both Base 0 or Base 1

.... but there is an error ... statement should read:
If Not UBound(arrFile) 1 Then
not 0
when testing to see if any Excel files were found
~~~

I would have explained more, but I had hungry boys who wanted to get
food before the store closed smile

~~~
The reason I read filenames into an array instead of just looping and
getting them with DIR is in case TransferSpreadsheet would be used ...
that can reset the Dir loop -- also, if the code breaks, then the Dir
loop will lose its place. For these reasons, I have found it best to
load filenames into an array, then work with the array.

~~~

NOTE (Bre-x):
the IDs should be dimensioned as LONG in the parameters, not double
(since double is stored as a floating point number and not accurate for
exact comparisons). I am assuming these are either Autonumber or Long
in Access -- if not, then they should be


Warm Regards,
Crystal
remote programming and training

Video Tutorials on YouTube!
http://www.youtube.com/user/LearnAccessByCrystal

Access Basics
8-part free tutorial that covers essentials in Access
http://www.AccessMVP.com/strive4peace

*
(: have an awesome day
*





Tom Wickerath wrote:
Hi Crystal,

I am assuming that your final goal is to combine all the data from each
sheet into one table in Access...


My interpretation is that Bre-x wants to combine all the data from each
sheet, in several Excel files, into one workbook in Excel using VBA code
within an Access application. His/her function likely references values in a
table, such as "tcid", "tlid", "custid", "mach" and "prog".

Bre-x:

As Bob Phillips points out, "myPath is not defined so will be null". I've
put together a test subroutine, along with a revised function that sets
mypath. You should immediately change an option in the Visual Basic Editor
(VBE) to Require Variable Declaration, as mypath was initially an undeclared
variable. See this article for more discussion:

Always Use Option Explicit
http://www.access.qbuilt.com/html/ge...tml#VBEOptions

Here is a start, although you've got more work to do. I was able to get this
function to combine worksheets from source Excel files, into one file, and
delete the appropriate sheets ("summary" and "tic&tie"). Your code, as
written, skips the first Excel file found by the DIR function. I'm not sure
if that is what you intended or not.

Sub TestIT()

Call copy_sheets(1, 1, "123", 2, 2)

End Sub

Public Function copy_sheets( _
tcid As Double, _
tlid As Double, _
custid As String, _
mach As Integer, _
prog As Integer)

Dim thepath As String
Dim sPath As String
Dim bfirst As Boolean
Dim sName As String
Dim bk As Workbook
Dim bk1 As Workbook
Dim sh As Object
Dim mypath As String


'Set Variables
mypath = "G:\Temp\Combined\"
thepath = mypath & mach & "\" & custid & "\" & mach & prog & ".xls"

Set bk1 = Workbooks.Open(thepath)

bfirst = True
sPath = "N:\1CNCACCESSAPPS\AccessApps\exceltemp\john\"
sPath = "G:\Temp\"
sName = Dir(sPath & "*.xls")

Do While sName ""
Set bk = Workbooks.Open(sPath & sName)
Debug.Print bk.Name

If bfirst Then
bk.Sheets.Copy
bfirst = False
Set bk = ActiveWorkbook
Else
bk.Sheets.Copy After:=bk1.Sheets(bk1.Sheets.Count)
End If
bk.Close SaveChanges:=False
sName = Dir()
Loop

With bk1.Application
.Visible = True
.DisplayAlerts = False
For Each sh In .Sheets
If InStr(1, sh.Name, "summary", vbTextCompare) Or _
InStr(1, sh.Name, "tic&tie", vbTextCompare) Then
sh.Delete
End If
Next sh
.DisplayAlerts = True
End With

End Function


When testing, make sure to periodically open up Task Manager
(Ctrl-Alt-Delete) and End Process on copies of Excel that should not be
running. That's the part that I was alluding to above, when I said that you
have more work to do.


Tom Wickerath
Microsoft Access MVP
http://www.accessmvp.com/TWickerath/
http://www.access.qbuilt.com/html/ex...tributors.html


  #13  
Old January 30th, 2009, 04:53 AM posted to microsoft.public.access.gettingstarted
strive4peace
external usenet poster
 
Posts: 1,670
Default Talking to Excel

oh, sorry Tom, I misinterpreted...

Warm Regards,
Crystal
remote programming and training

Video Tutorials on YouTube!
http://www.youtube.com/user/LearnAccessByCrystal

Access Basics
8-part free tutorial that covers essentials in Access
http://www.AccessMVP.com/strive4peace

*
(: have an awesome day
*





Tom Wickerath wrote:
Hi Crystal,

you are incorrect, it does not skip the first file, it simply does not
assign anything to index = 0 if the array index starts there...


I was not commenting on your code--in fact, I did not even look at it. My
comment about skipping the first Excel file (ie. the worksheets in this file
are not added to the combined Excel file) was applicable only to the code
that Bre-x presented in the orginal post, which does not involve an array. I
tested it, and that's the result I got.



Tom Wickerath
Microsoft Access MVP
http://www.accessmvp.com/TWickerath/
http://www.access.qbuilt.com/html/ex...tributors.html
__________________________________________

"strive4peace" wrote:

Hi Tom,

I know he said what he wanted to do was combine the sheets into one
workbook -- but he also said data was in Access, so I am assuming
(perhaps incorrectly) that it is normalized and all in one place... so I
was giving him a way to consolidate everything in all the worksheets

~~~
you are incorrect, it does not skip the first file, it simply does not
assign anything to index = 0 if the array index starts there...the first
file is index used is 1 -- that is why I used
For i = 1 To UBound(arrFile)
instead of
For i = LBound(arrFile) To UBound(arrFile)

I did it this way because I like to use
Option Base 1
(Used at module level to declare the default lower bound for array
subscripts)
-- so the code works with both Base 0 or Base 1

.... but there is an error ... statement should read:
If Not UBound(arrFile) 1 Then
not 0
when testing to see if any Excel files were found
~~~

I would have explained more, but I had hungry boys who wanted to get
food before the store closed smile

~~~
The reason I read filenames into an array instead of just looping and
getting them with DIR is in case TransferSpreadsheet would be used ...
that can reset the Dir loop -- also, if the code breaks, then the Dir
loop will lose its place. For these reasons, I have found it best to
load filenames into an array, then work with the array.

~~~

NOTE (Bre-x):
the IDs should be dimensioned as LONG in the parameters, not double
(since double is stored as a floating point number and not accurate for
exact comparisons). I am assuming these are either Autonumber or Long
in Access -- if not, then they should be


Warm Regards,
Crystal
remote programming and training

Video Tutorials on YouTube!
http://www.youtube.com/user/LearnAccessByCrystal

Access Basics
8-part free tutorial that covers essentials in Access
http://www.AccessMVP.com/strive4peace

*
(: have an awesome day
*





Tom Wickerath wrote:
Hi Crystal,

I am assuming that your final goal is to combine all the data from each
sheet into one table in Access...
My interpretation is that Bre-x wants to combine all the data from each
sheet, in several Excel files, into one workbook in Excel using VBA code
within an Access application. His/her function likely references values in a
table, such as "tcid", "tlid", "custid", "mach" and "prog".

Bre-x:

As Bob Phillips points out, "myPath is not defined so will be null". I've
put together a test subroutine, along with a revised function that sets
mypath. You should immediately change an option in the Visual Basic Editor
(VBE) to Require Variable Declaration, as mypath was initially an undeclared
variable. See this article for more discussion:

Always Use Option Explicit
http://www.access.qbuilt.com/html/ge...tml#VBEOptions

Here is a start, although you've got more work to do. I was able to get this
function to combine worksheets from source Excel files, into one file, and
delete the appropriate sheets ("summary" and "tic&tie"). Your code, as
written, skips the first Excel file found by the DIR function. I'm not sure
if that is what you intended or not.

Sub TestIT()

Call copy_sheets(1, 1, "123", 2, 2)

End Sub

Public Function copy_sheets( _
tcid As Double, _
tlid As Double, _
custid As String, _
mach As Integer, _
prog As Integer)

Dim thepath As String
Dim sPath As String
Dim bfirst As Boolean
Dim sName As String
Dim bk As Workbook
Dim bk1 As Workbook
Dim sh As Object
Dim mypath As String


'Set Variables
mypath = "G:\Temp\Combined\"
thepath = mypath & mach & "\" & custid & "\" & mach & prog & ".xls"

Set bk1 = Workbooks.Open(thepath)

bfirst = True
sPath = "N:\1CNCACCESSAPPS\AccessApps\exceltemp\john\"
sPath = "G:\Temp\"
sName = Dir(sPath & "*.xls")

Do While sName ""
Set bk = Workbooks.Open(sPath & sName)
Debug.Print bk.Name

If bfirst Then
bk.Sheets.Copy
bfirst = False
Set bk = ActiveWorkbook
Else
bk.Sheets.Copy After:=bk1.Sheets(bk1.Sheets.Count)
End If
bk.Close SaveChanges:=False
sName = Dir()
Loop

With bk1.Application
.Visible = True
.DisplayAlerts = False
For Each sh In .Sheets
If InStr(1, sh.Name, "summary", vbTextCompare) Or _
InStr(1, sh.Name, "tic&tie", vbTextCompare) Then
sh.Delete
End If
Next sh
.DisplayAlerts = True
End With

End Function


When testing, make sure to periodically open up Task Manager
(Ctrl-Alt-Delete) and End Process on copies of Excel that should not be
running. That's the part that I was alluding to above, when I said that you
have more work to do.


Tom Wickerath
Microsoft Access MVP
http://www.accessmvp.com/TWickerath/
http://www.access.qbuilt.com/html/ex...tributors.html

  #14  
Old January 30th, 2009, 03:48 PM posted to microsoft.public.access.gettingstarted
CraigH
external usenet poster
 
Posts: 50
Default Talking to Excel

My 2 cents

I don't know which is faster but you are copying all the sheets into the bk1
and then deleting - probably what will be many worksheets from the new book.
- some change to the code below.

"Bob Phillips" wrote:

I can't test it, but this looks about right.

BTW, myPath is not defined so will be null.

Public Function copy_sheets(tcid As Double, _
tlid As Double, _
custid As String, _
mach As Long, _
prog As Long)
'Dim string Variables
Dim thepath, bfirst As Boolean, sPath As String, sName As String
Dim xlApp As Object
Dim bk As Object
Dim bk1 As Object
Dim sh As Object

Dim intSheetCount as Integer
Dim intLoop as Integer

'Set Variables
thepath = mypath & mach & "\" & custid & "\" & mach & prog & ".xls"

Set xlApp = CreateObject("Excel.Application")
With xlApp

.Visible = True
.DisplayAlerts = False

'Create the bk1 with 1 sheet
.Workbooks.Add(xlWBATWorksheet)
intSheetCount = 1
End With

bfirst = True
sPath = "N:\1CNCACCESSAPPS\AccessApps\exceltemp\john\"
sName = Dir(sPath & "*.xls")

Do While sName ""

Set bk = Workbooks.Open(sPath & sName)
Debug.Print bk.Name


For intLoop = 0 to bk.Sheets.Count -1

If InStr(1, bk.Shetes(intLoop).Name, "summary", vbTextCompare)
Or _
InStr(1, bk.Shetes(intLoop).Name, "tic&tie", vbTextCompare)
Then
' don't copy
Else
bk.Sheets(intLoop).Copy After:=bk1.Sheets(intSheetCount-1)
intSheetCount = IntSheetCount +1
Endif
next intLoop
' don't Need
If bfirst Then

bk.Sheets.Copy
bfirst = False
Set bk1 = ActiveWorkbook
Else

bk.Sheets.Copy After:=bk1.Sheets(bk1.Sheets.Count)
End If


'don't need

bk.Close SaveChanges:=False
sName = Dir()
Loop

bk1.Sheets(0).delete
'dont need
With bk1

For Each sh In .Worksheets

If InStr(1, sh.Name, "summary", vbTextCompare) Or _
InStr(1, sh.Name, "tic&tie", vbTextCompare) Then

sh.Delete
End If
Next
End With

' don't need


xlApp.DisplayAlerts = True
Set xlApp = Nothing
xlApp.Quit
End Function

--
__________________________________
HTH

Bob

"Bre-x" wrote in message
...
Sorry, I didn't explain my self very well.

We have a MS Access database that keeps track of hundred of thousands "CNC
Program Records".
Each record has a Mach ID and Program ID, Work Center ID, and a list of
Mastercam Tools.

Each record is send to an Excel Sheet where notes, pictures and diagrams
are add it. Then printed and give to the Machine Operator.

Each Excel Sheet is fully link and control on MS Access.

We have been using this system since 2002 and works very well for us.

I was ask if we can conbine several Excel sheets into one single Workbook,
and I would like to do it from ms access.

Thank you once again

Bre-x








  #15  
Old January 30th, 2009, 04:05 PM posted to microsoft.public.access.gettingstarted
Bre-x[_2_]
external usenet poster
 
Posts: 30
Default Talking to Excel

I would like to thank you all of you for your time. I would be testing all
your suggestions.

A couple of thinks to clarify

"mypath" is a Public Const (mypath = "N:\1CNCACCESSAPPS\UMW\")

There are jobs that requiere more than one machine and/or operator. That is
way the need to combine more than one CNC Program Record's Excel Sheet. (as
a termpory measure, the db records stay as they are)

Once again thank you all!!!!!

Bre-x





  #16  
Old January 30th, 2009, 05:55 PM posted to microsoft.public.access.gettingstarted
Bre-x[_2_]
external usenet poster
 
Posts: 30
Default Talking to Excel


"Bre-x" wrote in message
...
I would like to transfer the following Excel sub (it works, already test
it) to MS Access. Could you please help me?

Thanks to All

Bre-x

Sub CombineWorkbooks()
Dim bfirst As Boolean, sPath As String
Dim sName As String, bk As Workbook
Dim bk1 As Workbook, sh As Object
bfirst = True
sPath = "N:\1CNCACCESSAPPS\AccessApps\exceltemp\john\"
sName = Dir(sPath & "*.xls")

Do While sName ""
Set bk = Workbooks.Open(sPath & sName)
Debug.Print bk.Name
If bfirst Then
bk.Sheets.Copy
bfirst = False
Set bk1 = ActiveWorkbook
Else
bk.Sheets.Copy After:=bk1.Sheets(bk1.Sheets.Count)
End If
bk.Close SaveChanges:=False
sName = Dir()
Loop

Application.DisplayAlerts = False
For Each sh In bk1.Sheets
If InStr(1, sh.Name, "summary", vbTextCompare) Or _
InStr(1, sh.Name, "tic&tie", vbTextCompare) Then
sh.Delete
End If
Next
Application.DisplayAlerts = True
End Sub

My Function on MS Access
----------------------------------------------------

Public Function copy_sheets(tcid As Double, tlid As Double, custid As
String, mach As Integer, prog As Integer)
'Dim string Variables
Dim thepath, bfirst As Boolean, sPath As String, sName As String
Dim bk As Workbook
Dim bk1 As Workbook
Dim sh As Object


'Set Variables
thepath = mypath & mach & "\" & custid & "\" & mach & prog & ".xls"

'Set bk = CreateObject("Excel.Application")
'Set bk1 = CreateObject("Excel.Application")

bfirst = True
sPath = "N:\1CNCACCESSAPPS\AccessApps\exceltemp\john\"
sName = Dir(sPath & "*.xls")

Do While sName ""
Set bk = Workbooks.Open(sPath & sName)
Debug.Print bk.Name
If bfirst Then
bk.Sheets.Copy
bfirst = False
Set bk1 = ActiveWorkbook
Else
bk.Sheets.Copy After:=bk1.Sheets(bk1.Sheets.Count)
End If
bk.Close SaveChanges:=False
sName = Dir()
Loop

With bk1.Application
.Visible = True
.DisplayAlerts = False
For Each sh In .Sheets
If InStr(1, sh.Name, "summary", vbTextCompare) Or _
InStr(1, sh.Name, "tic&tie", vbTextCompare) Then
sh.Delete
End If
Next
.DisplayAlerts = True
End With
End Function







  #17  
Old January 30th, 2009, 06:02 PM posted to microsoft.public.access.gettingstarted
Bre-x[_2_]
external usenet poster
 
Posts: 30
Default Talking to Excel

Finally after many hours and with the help of lots of people. Thank you all.

MS Access Function
---------------------

Public Function copy_sheets(tcid As Double, tlid As Double, custid As
String, mach As Integer, prog As Integer)
'Dim String Variables
Dim thepath As String, mytemp As String

'Dim Excel Object
Dim objXL As Object
Dim objWB As Object


'Set Variables
thepath = mypath & mach & "\" & custid & "\" & mach & prog & ".xls"
mytemp = exceltemp & VBA.Environ("USERNAME") & "\" & mach & prog & ".xbk"
basname = "N:\1CNCACCESSAPPS\AccessApps\lathe\vba_excel. bas"

'Make a Backup
Responce = copy_file(thepath, mytemp)

'OPEN EXCEL
Set objXL = CreateObject("Excel.Application")
With objXL.Application
.Visible = False
.Workbooks.Open lathe_transf

Set objSht = objXL.Worksheets("Lathe")
With objSht
objSht.Cells(1, 1).Value = exceltemp &
VBA.Environ("USERNAME") & "\"
objSht.Cells(2, 1).Value = thepath
End With
'THIS MACRO WILL COPY ALL SHEETS ON .xbk to book1, PLUS COPY A MODULE
.Run "CombineWorkbooks"
.Quit
End With

End Function

EXCEL VBA Code
-----------------------------

Sub CombineWorkbooks()
Dim bfirst As Boolean, sPath As String
Dim sName As String, bk As Workbook
Dim bk1 As Workbook, sh As Object
bfirst = True
sPath = Sheets("Lathe").Range("A1").Value
thdest = Worksheets(1).Range("A2").Value


sName = Dir(sPath & "*.xbk")

Do While sName ""
Set bk = Workbooks.Open(sPath & sName)
Debug.Print bk.Name
If bfirst Then
bk.Sheets.Copy
bfirst = False
Set bk1 = ActiveWorkbook
Else
bk.Sheets.Copy After:=bk1.Sheets(bk1.Sheets.Count)
End If
bk.Close SaveChanges:=False
sName = Dir()
Loop

Application.DisplayAlerts = False
For Each sh In bk1.Sheets
If InStr(1, sh.Name, "summary", vbTextCompare) Or _
InStr(1, sh.Name, "tic&tie", vbTextCompare) Then
sh.Delete
End If
Next
Application.DisplayAlerts = True

Application.DisplayAlerts = False
Windows("Book1").Activate

ActiveWorkbook.VBProject.VBComponents.Import
("N:\1CNCACCESSAPPS\AccessApps\lathe\vba_excel.bas ")

ActiveWorkbook.SaveAs Filename:=thdest, FileFormat:=xlNormal, _
Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, _
CreateBackup:=False

ActiveWorkbook.Close
Application.DisplayAlerts = True
ActiveWorkbook.Save
End Sub



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 10:41 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.