see attached... I assure you it is safe.
how did he do the cell style textbox. Where you click on it, and it highlights like in excel is that with a datagrid?
Printable View
see attached... I assure you it is safe.
how did he do the cell style textbox. Where you click on it, and it highlights like in excel is that with a datagrid?
Uhm... post a screenshot showing what you mean. I'm still not downloading it.
here, its like a textbox, but you can click on each character once, and it selects that character.
looks like a rich text box to me
A readonly textbox or readonly RTB. If I'm guessing right, it's like Query Analyzer's SQL pane.
how would you get it to only be able to select one character at a time like that. You cant select a bunch of those lines, you edit each one like a cell.
Oh, well that's OK then. :rolleyes:Quote:
Originally posted by Grunt
see attached... I assure you it is safe.
Through the keypress event, he'd be replacing the character at the cursor's position.Quote:
Originally posted by Grunt
how would you get it to only be able to select one character at a time like that. You cant select a bunch of those lines, you edit each one like a cell.
ok... Can you please help on this.
I get the mouse position with:
how do i do the mouseclick event if somebody clicks on the character.Code:Dim MouseX, MouseY As Integer
MouseX = childForms(childForm).txtTabStylistChild.MousePosition.X
MouseY = childForms(childForm).txtTabStylistChild.MousePosition.Y