Thread: Editing code
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dale Hymel Dale Hymel is offline
external usenet poster
 
Posts: 9
Default Editing code

A Sub only has one End Sub. The End Sub should be blue in color.

The ' before any text signifies a comment and changes the text that follows
the ' to the color green. These comments can be deleted.


"Todd Huttenswtine" wrote in message
...
Public Sub Test

'End Sub

my existing code here
end sub

Above is a code that I would like to modify at run time.
I need for it to take the ' out of "'End Sub".

Thanks

Todd Huttenstine