Hey! the idea is good and the program is usefull, however I see problems (as patchou said). There are sections like [IMWindowMenu] that have several levels of menus and so you can repeat shortcut keys and they aren't wrong. There are other sections, like [InstallCommon] where you have 2 buttons that won't be never displayed together ("&Close" and "&Cancell") so they can have the same letter. Also there are values that are used in several menus, (specially in the 3 menus that plus adds to the chat windows (the plus menu, the enhenced one, and the other that is shown when you click the button next to the bolck one
). I mean, those "&" should be checked with other keys from other sections
well, with all this I don't want you drop the proyect. In fact it's a good program that can be very useful. Continue the great work
quote:
Originally posted by Shunter
Since VB6 had numerous issues concerning Unicode files
I know, but it is possible write a program that handles unicode files (my translator does
)
quote:
Originally posted by Shunter
and it seems impossible to make it scroll to a certain point in a TextBox or RichTextBox (if someone knows a way, please email me!),
you have a textbox named Text1 and a RichTextBox named RichTextBox1. Both have the text
hello . Ok, the next 2 codes do what you want. Exactly, they select the 2 "l" in hello.
code:
Text1.SelStart = 2
Text1.SelLength = 2
Text1.SetFocus
code:
RichTextBox1.SelStart = 2
RichTextBox1.SelLength = 2
RichTextBox1.SetFocus
quote:
Originally posted by CookieRevised
That would be a very bad idea... This will result in very crappy translations. The ampersand should be placed in a logical manner by a human. For example: "&Cancel Transfer" (first letter in sentence, first letter of main word) or "Cancel &Transfer" and not "Ca&ncel Transfer" (because c and a were already in use?)
totally agree