Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default NAMING OF A MODULE AND MAKING IT UNOBSERVABLE - VERY BASIC

sorry to be asking the very basic questions which the respected
participants(experts and novices)would find boring. I need help.

1. How to change the name from module1,module2 etc to desirednames in 2003
version.

2. can someone please give those few lines to make the modules unobservable.
I need to hide the codes.
--
beetal( meaning of Be' taal is Enlightened Ghost!)
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,582
Default NAMING OF A MODULE AND MAKING IT UNOBSERVABLE - VERY BASIC

1. Select the module in the project explorer window, then in the properties
window, change the name.

2. You cannot selectively protect just one module, you have protect the
entire project. Right click on the project in the project explorer, choose
XXX Properties, and fill out the items on the Protection tab.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______



"BEETAL" wrote in message
...
sorry to be asking the very basic questions which the respected
participants(experts and novices)would find boring. I need help.

1. How to change the name from module1,module2 etc to desirednames in 2003
version.

2. can someone please give those few lines to make the modules
unobservable.
I need to hide the codes.
--
beetal( meaning of Be' taal is Enlightened Ghost!)



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default NAMING OF A MODULE AND MAKING IT UNOBSERVABLE - VERY BASIC

Sir,

Thanks for the help. BUT, I need to make the project Unobservable. Last time
some guy did hack into the password after running a software. I had a few
lines of code which made the project unobservable. The lines were in the
module itself. Obviously I cann't see them anymore.

The lines were again provided by an expert. Please try a little harder.
Thank you,Sir.
--
beetal


"Jon Peltier" wrote:

1. Select the module in the project explorer window, then in the properties
window, change the name.

2. You cannot selectively protect just one module, you have protect the
entire project. Right click on the project in the project explorer, choose
XXX Properties, and fill out the items on the Protection tab.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______



"BEETAL" wrote in message
...
sorry to be asking the very basic questions which the respected
participants(experts and novices)would find boring. I need help.

1. How to change the name from module1,module2 etc to desirednames in 2003
version.

2. can someone please give those few lines to make the modules
unobservable.
I need to hide the codes.
--
beetal( meaning of Be' taal is Enlightened Ghost!)




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default NAMING OF A MODULE AND MAKING IT UNOBSERVABLE - VERY BASIC

Trying harder will not give you a better answer. There is no way to fully
secure your VBA code.

Whilst the project password will keep out most casual users if someone hacks
into your password your project and all its modules become viewable.
Only way to make your code more secure is with a different language, though
even most of these are not 100% secure except perhaps the closely related
VB(6)

Regards,
Peter T


"BEETAL" wrote in message
...
Sir,

Thanks for the help. BUT, I need to make the project Unobservable. Last
time
some guy did hack into the password after running a software. I had a few
lines of code which made the project unobservable. The lines were in the
module itself. Obviously I cann't see them anymore.

The lines were again provided by an expert. Please try a little harder.
Thank you,Sir.
--
beetal


"Jon Peltier" wrote:

1. Select the module in the project explorer window, then in the
properties
window, change the name.

2. You cannot selectively protect just one module, you have protect the
entire project. Right click on the project in the project explorer,
choose
XXX Properties, and fill out the items on the Protection tab.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______



"BEETAL" wrote in message
...
sorry to be asking the very basic questions which the respected
participants(experts and novices)would find boring. I need help.

1. How to change the name from module1,module2 etc to desirednames in
2003
version.

2. can someone please give those few lines to make the modules
unobservable.
I need to hide the codes.
--
beetal( meaning of Be' taal is Enlightened Ghost!)






  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,582
Default NAMING OF A MODULE AND MAKING IT UNOBSERVABLE - VERY BASIC

How much harder should I try? WOULD ALL CAPS BE HARDER?

You are claiming that the project was not visible in the VB editor? I have
not heard of such a thing, unless you are referring to a COM add-in, which
should be more uncrackable than VBA. At best, Excel and VBA security
provides an inconvenience to someone who really wants to see your code. It
would take me five minutes to find my notes on how to crack your code, and
probably 30 seconds to actually do it.

I don't do this, because most code isn't worth cracking.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______


"BEETAL" wrote in message
...
Sir,

Thanks for the help. BUT, I need to make the project Unobservable. Last
time
some guy did hack into the password after running a software. I had a few
lines of code which made the project unobservable. The lines were in the
module itself. Obviously I cann't see them anymore.

The lines were again provided by an expert. Please try a little harder.
Thank you,Sir.
--
beetal


"Jon Peltier" wrote:

1. Select the module in the project explorer window, then in the
properties
window, change the name.

2. You cannot selectively protect just one module, you have protect the
entire project. Right click on the project in the project explorer,
choose
XXX Properties, and fill out the items on the Protection tab.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______



"BEETAL" wrote in message
...
sorry to be asking the very basic questions which the respected
participants(experts and novices)would find boring. I need help.

1. How to change the name from module1,module2 etc to desirednames in
2003
version.

2. can someone please give those few lines to make the modules
unobservable.
I need to hide the codes.
--
beetal( meaning of Be' taal is Enlightened Ghost!)








  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,355
Default NAMING OF A MODULE AND MAKING IT UNOBSERVABLE - VERY BASIC

Yes Mr. MVP Expert sir. Try a little harder. ;) ::: ducking :::

I'm sorry I'm not going to be able to come to Atlantic City at the end of
the month. Maybe next year.

Barb Reinhardt




"Jon Peltier" wrote:

1. Select the module in the project explorer window, then in the properties
window, change the name.

2. You cannot selectively protect just one module, you have protect the
entire project. Right click on the project in the project explorer, choose
XXX Properties, and fill out the items on the Protection tab.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______



"BEETAL" wrote in message
...
sorry to be asking the very basic questions which the respected
participants(experts and novices)would find boring. I need help.

1. How to change the name from module1,module2 etc to desirednames in 2003
version.

2. can someone please give those few lines to make the modules
unobservable.
I need to hide the codes.
--
beetal( meaning of Be' taal is Enlightened Ghost!)




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Naming a range in a module Sue Excel Programming 5 January 13th 08 09:10 AM
Making modifications to macro module from R. De Bruin SteveDB1 Excel Programming 7 April 10th 07 12:02 AM
Worksheet naming using visual basic O'C Excel Worksheet Functions 2 October 31st 06 05:30 PM
Module naming Dan Excel Programming 1 May 31st 06 05:33 PM
Making for adding and naming a new sheet michaelberrier Excel Discussion (Misc queries) 13 May 29th 06 07:58 PM


All times are GMT +1. The time now is 09:55 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"