View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Stephan Kassanke Stephan Kassanke is offline
external usenet poster
 
Posts: 19
Default Problems with german excel version

Peter wrote:
In a VBA application for an english excel version, I have
the following line:

iHelpLocation = cbr.Controls(“Help”).index

I have to run the application with a german excel version
and then this line causes trouble.
I tried to replace it by

iHelpLocation = cbr.Controls(“Hilfe”).index

but this doesn’t work.

How do I have to change this line to run the application
with a germen excel version ?

Thank’s for your help !!

Peter


Hi Peter,

if I look at my menu bar in the german excel version, the caption of the
help menu is a questionmark ("?") instead of "Hilfe". You might try to
exchange the caption in your VBA line.

best regards,

Stephan