ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Use VB code to remove code in sheet1 (https://www.excelbanter.com/excel-programming/289042-use-vbulletin-code-remove-code-sheet1.html)

WashoeJeff

Use VB code to remove code in sheet1
 
I can't seem to find anything that works to remove code from Sheet1 or for
that matter any modules

I have a procedure and am going to send the finished sheet but want to strip
the code with a routine I followed instructions in a book but it doesnt seem
to work.
Any help appreciated
Jeff




-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----

Chip Pearson

Use VB code to remove code in sheet1
 
Jeff,

Try something like the following:

With ThisWorkbook
With .VBProject.VBComponents( _
.Worksheets("Sheet1").CodeName).CodeModule
.DeleteLines 1, .CountOfLines
End With
End With

See www.cpearson.com/excel/vbe.htm for more details.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com





"WashoeJeff" wrote in message
...
I can't seem to find anything that works to remove code from

Sheet1 or for
that matter any modules

I have a procedure and am going to send the finished sheet but

want to strip
the code with a routine I followed instructions in a book but

it doesnt seem
to work.
Any help appreciated
Jeff




-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the

World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----




Rob van Gelder[_4_]

Use VB code to remove code in sheet1
 
Jeff,

Sub test()
Dim strCodeName As String

strCodeName = Worksheets("My Sheet 1").CodeName
With ThisWorkbook.VBProject.VBComponents(strCodeName).C odeModule
If .CountOfLines 0 Then .DeleteLines 1, .CountOfLines
End With
End Sub

You could have problems running this under Excel 2002 with the security
features. Recommend investigating 'trusted code' options if this is a
problem.

Rob


"WashoeJeff" wrote in message
...
I can't seem to find anything that works to remove code from Sheet1 or for
that matter any modules

I have a procedure and am going to send the finished sheet but want to

strip
the code with a routine I followed instructions in a book but it doesnt

seem
to work.
Any help appreciated
Jeff




-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----




WashoeJeff

Use VB code to remove code in sheet1
 
using the code I get a subscript out of range error

Jeff

"Chip Pearson" wrote in message
...
Jeff,

Try something like the following:

With ThisWorkbook
With .VBProject.VBComponents( _
.Worksheets("Sheet1").CodeName).CodeModule
.DeleteLines 1, .CountOfLines
End With
End With

See www.cpearson.com/excel/vbe.htm for more details.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com





"WashoeJeff" wrote in message
...
I can't seem to find anything that works to remove code from

Sheet1 or for
that matter any modules

I have a procedure and am going to send the finished sheet but

want to strip
the code with a routine I followed instructions in a book but

it doesnt seem
to work.
Any help appreciated
Jeff




-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the

World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----







-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----

WashoeJeff

Use VB code to remove code in sheet1
 
Opps sorry
It worked when I changed the name to the sheet name instead of sheet 1

Thank you

Jeff

"Chip Pearson" wrote in message
...
Jeff,

Try something like the following:

With ThisWorkbook
With .VBProject.VBComponents( _
.Worksheets("Sheet1").CodeName).CodeModule
.DeleteLines 1, .CountOfLines
End With
End With

See www.cpearson.com/excel/vbe.htm for more details.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com





"WashoeJeff" wrote in message
...
I can't seem to find anything that works to remove code from

Sheet1 or for
that matter any modules

I have a procedure and am going to send the finished sheet but

want to strip
the code with a routine I followed instructions in a book but

it doesnt seem
to work.
Any help appreciated
Jeff




-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the

World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----







-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 100,000 Newsgroups - 19 Different Servers! =-----


All times are GMT +1. The time now is 10:48 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com