| View previous topic :: View next topic |
| Author |
Message |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Thu Oct 17, 2002 12:17 pm Post subject: alphabet of different countries |
|
|
I have written a password generating program but it only uses the English alphabet which may not be of much use to folks who use an alphabet different to the English one ie. e's with accents, u's with accents,...
Anybody know where I can find the complete alphabet of different countries - I want my password generator to be able to generate passwords using the letters used in different countries.
I was thinking of including the alphabet of the different countries into the VDS code like this
| Code: |
%alphabet = abcdefghijklmnopqrstuvwxyz
|
and the password generating part of the code would then select letters at random from that list.
Thanks once again in advance,
Serge _________________
|
|
| Back to top |
|
 |
Vic D'Elfant Past Contributor


Joined: 26 Jun 2002 Posts: 673 Location: The Netherlands
|
Posted: Thu Oct 17, 2002 5:26 pm Post subject: |
|
|
I'm asking a few friends for that question....
I'll let you know if I get some response
Greetings,
Vic _________________ phpBB Development Team |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Thu Oct 17, 2002 8:12 pm Post subject: |
|
|
Note that this may not be needed becuase some servers or programs only allow alpha-numeric characters. For example, if the letter was an "" might not be able to use it.
However, a search on Google.com took me to this first result:
http://www.ask-group.com/publish/alphabet.htm
There were many more results too, so it might be easy to find what you are looking for...  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Fri Oct 18, 2002 1:32 am Post subject: |
|
|
Many thanks FreezingFire for your link - that is exactly what i was after.
I too did a Google search but did not find anything worthwhile - may be i used the wrong word for the search
I take your point about the servers and the programs - i can always offer it as an option and they can decide whether they want to use that feature or not.
Thanks again
Serge
PS I noticed that the listing is actually a gif image - not sure how to replicate the list as i can't do a copy and paste. I'll have a look to see if i can use the old dos ALT 125 thingy to replicate the lists. _________________
|
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Fri Oct 18, 2002 8:18 pm Post subject: |
|
|
Using the character map of Windows can help...
I searched google.com with "alphabets+languages".
http://www.google.com/search?q=alphabets+languages _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Fri Oct 18, 2002 10:50 pm Post subject: |
|
|
Thanks for that. I tried "international alphabet", "alphabet", "french alphabet" but obviously did not use the correct choice of words.
Thanks again,
Serge _________________
|
|
| Back to top |
|
 |
Vic D'Elfant Past Contributor


Joined: 26 Jun 2002 Posts: 673 Location: The Netherlands
|
Posted: Sat Oct 19, 2002 9:33 am Post subject: |
|
|
Perhaps you can use this:
| Code: |
Title VDS Alfabet
DIALOG CREATE,Letter-gen,-1,0,240,73
rem Use Arial, because it supports most , , ,etc....
DIALOG ADD,STYLE,arial,Arial,10,,BACKGROUND,FOREGROUND
DIALOG ADD,STYLE,bold,,6,B,BACKGROUND,FOREGROUND
DIALOG ADD,TEXT,TEXT1,17,10,,,ANCII code:,bold
DIALOG ADD,TEXT,TEXT2,36,9,,,Letter:,bold
DIALOG ADD,TEXT,asc,17,91
DIALOG ADD,TEXT,letter,34,91,,,,arial
DIALOG SHOW
repeat
%%asc = @succ(%%asc)
dialog set,asc,%%asc
dialog set,letter,@chr(%%asc)
wait "0,2"
until @equal(%%asc,256)
info All ASCI codes searched! |
Greetings,
Vic _________________ phpBB Development Team |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Sat Oct 19, 2002 10:11 am Post subject: |
|
|
Thanks for that Vic, i was starting to think along those lines too
Serge _________________
|
|
| Back to top |
|
 |
Vic D'Elfant Past Contributor


Joined: 26 Jun 2002 Posts: 673 Location: The Netherlands
|
Posted: Sat Oct 19, 2002 10:13 am Post subject: |
|
|
No problemo...  _________________ phpBB Development Team |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You can attach files in this forum You can download files in this forum
|
|