Character adding

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can anyone hook me up the VB Syntax?

I want to increment a single character through the alphabet each time a
button is clicked. It'll start at 'a' then go to 'b'. This is to uniquely
differentiate quotes.

thanks to anoyone who knows this language

cheers
 
ne'r mind

Chr(Asc("a") + 1)

found a list of string functions somewhere.
 
Actually it's not working. What's wrong with this?

Me.Quote_Char = Chr(Asc("Me.Quote_Char") + 1)

Cheers?
 

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

Back
Top