VBA function changing its name

J

John B. Smotherman

I've noticed something strange in my VBA code - well, strange to me anyway.

I have a function declared using mixed case:
Function TMDE_Category (FormName As Form)

This function is in a module, and is called by the VBA code behind two
separate forms. The other day I noticed that it appeared in the module all in
lower case:
Function tmde_category(FormName As Form)

Obviously it isn't preventing the database application from running, and I
have no idea when it first changed. I changed it back to mixed case, saved
and closed the module, then the application. I restarted the application,
reopened the module in the VBE and sure enough it was changed back to all
lowercase.

Can anyone shed any light on this?

TIA
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top