• Welcome to Valhalla Legends Archive.
 
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - yuleball

#1
hi, i am using rtb. I want to print a specific character when user presses Alt+some key by using chrW() method. I want to detect in KeyPress() event of rtb when user presses Alt+Key. How can i do that? I know i can detect (Alt+x) like combinations in Key_Down event of rtb and then i have used KeyCode = (decimal value of character to be printed). but its not working
#2
Actually, I'm developing urdu editor. In urdu If i want to store the characters with diacritics there would be billions of fonts. I have developed separate fonts for diacritic and base characters using Scanfont and fontlab.
#3
hi I am designing an editor program. I am using ChrW() and AscW() functions to print the character on screen. I want to implement combining diacritical marks(or accent marks) i-e if i print a character and then i want to put diacritic on it by using specific key then i shud be able to place diacritic above or below that character so that they appear as one character. Is there any way to accomplish this in vb?
#4
Visual Basic Programming / Re: adding textbox to rtb
December 11, 2008, 03:45 AM
In Microsft word there is a way to add TextBox. I want to do the same in rtb. Is there a way to do this? Plz help :(
#5
yeah.....it worked. thnx a lot.
#6
Visual Basic Programming / fully justify text in rtb
December 07, 2008, 02:45 AM
I want to fully justify text in rtb. I am designing an urdu editor. The urdu language is written from right to left. So the text is right justified initially.
Waiting for reply
#7
Thnx I'll check that
#8
Visual Basic Programming / backspace and delete key
December 06, 2008, 12:42 AM
I want to exchange the functioning of backspace and delete key e-g if i press backspace it should delete the character on the right side of cursor and vicee versa for delete key. How can i implement this in rtb?
#9
Visual Basic Programming / adding textbox to rtb
December 06, 2008, 12:35 AM
I am designing an editor program using rich text box in vb 6.0. I want to add a special box for entering verse or poems so that when I click a button, this box is placed at current position of cursor e-g if cursor is at line#3, the box is placed at line#3 and focus is changed from rtb to box. And after entering text in this box, when i click rtb, focus is changed from box to rtb, also cursor is placed below this box. Also I want that when I save the document, this box is also saved with. I have tried adding text box to accomplish these tasks but i am having problem setting position of textbox, setting focus and position of cursor. Also I dont think it can be saved with document. Is there a way to accomplish this by adding some box to rtb?