Search results for query: *

  • Users: ByteCarp
  • Content: Threads
  • Order by date
  1. B

    Question Programatically controlling IME mode...

    Can't find any reference to this, so I'll throw it out here... 2 part question: First, is it possible to change IME modes with code? For example, I have Microsoft IME enabled for Japanese. When it is enabled, and I highlight and right click on text, the popup menu provides a *Reconversion*...
  2. B

    Question Sending a KeyEvent to text box through CODE does not put character in Text Box...

    Seems like this should be doable, but I'm having no luck - I have an Array of buttons with Japanese kana characters to act as a user input. Pressing a button (using a mouse) raises an event with the character as the data. My thought was just to use the same handler as the textbox key events...
  3. B

    Out of Memory in String variable

    I'm looping through an xml node list and concatenating a string variable with the following: for x=0 to nl.count-1 temp$=temp$ & nl(x).attributes("text1").value Next x I then use the temp$ variable to fill a rich text box: rtf.text=temp$ I know this isn't a smart way to do things, and an...
  4. B

    Question Accessing Events from Nested User Controls

    OK I really ought to know what the best approach for this is, but I'd rather get some expert input - What is the "BEST" way to access the methods and properties of nested user controls? For example, suppose you create a custom control (FirstControl) that has a label and a text box. You then...
Back
Top