473,804 Members | 2,123 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Rich Text Box

gsgurdeep
94 New Member
I am using rich text box control in my vb.net windows application to format some user define text formatting.

I placed 3 buttons for bold, italic, & underline to change text formatting.

These buttons perform very well separately. But when want to use more than one option at same text, latest formatting option overwrites previous formatting.

Give Me Any Suggestion Please Help Me.
Dec 23 '08 #1
4 1992
truezplaya
115 New Member
Could you use a global bool value to show if the button is clicked, Then do some checks so
after you have defined these you would set these true and false in the button click events
dim b1 as bool = false // bold
dim b2 as bool = false etc etc /italics


private sub checkButtonsCli cked
if b1 = true and b2 = true then
//your text or text box properties italics bold set to true
end sub

you would have to cover all the combinations but that the quickest idea that came to me. Sorry i'm not amazing at programming
Dec 23 '08 #2
truezplaya
115 New Member
very simple way
set some global bool variables
on buttonclick set these to either false or true
do some checks so if b1 = true and b2 = true then set properties for bold and italics
as i said very simple but possibly not the best way
Dec 23 '08 #3
phvfl
173 Recognized Expert New Member
A flexible way of this is to use the FontStyle as a flag i.e. if the font should be bold and underlined the style is FontStyle.Bold And FontStyle.Under line.

A very thrown together implementation would be:

Expand|Select|Wrap|Line Numbers
  1. Private Sub AddStyle(ByVal style As FontStyle)
  2.     Dim newStyle As FontStyle = testRich.SelectionFont.Style Or style
  3.     Dim ifont As New Font(testRich.Font, newStyle)
  4.     testRich.SelectionFont = ifont
  5.   End Sub
  6.  
  7.   Private Sub RemoveStyle(ByVal style As FontStyle)
  8.     Dim newStyle As FontStyle = testRich.SelectionFont.Style Xor style
  9.     Dim ifont As New Font(testRich.Font, newStyle)
  10.     testRich.SelectionFont = ifont
  11.   End Sub
  12.  
  13.   Private Function HasStyle(ByVal style As FontStyle) As Boolean
  14.     Return (testRich.SelectionFont.Style And style) = style
  15.   End Function
This assumes that the RichTextBox control is called testRich. Calling these procedures is done by:
Expand|Select|Wrap|Line Numbers
  1. ' HasStyle(FontStyle.Bold) = False
  2. AddStyle(FontStyle.Bold)
  3.  
  4. ' HasStyle(FontStyle.Bold) = True
  5. RemoveStyle(FontStyle.Bold)
  6.  
  7. ' HasStyle(FontStyle.Bold) = False
The And, Or & XOr (Exclusive Or) are all bitwise operator. A brief tutorial can be seen here.

Using this method means that you can use any of the FontStyle values.
Dec 24 '08 #4
gsgurdeep
94 New Member
Thanks for your interest.
But these answers are not helping me.

but finally i have found the solution of my problem.
I used following code for bold event

rich_text.Selec tionFont = New Font(rich_text. SelectionFont, IIf(rich_text.S electionFont.Un derline, rich_text.Selec tionFont.Style - System.Drawing. FontStyle.Under line, Me.at5_descript ion.SelectionFo nt.Style + System.Drawing. FontStyle.Under line))

Underline & italic events are same as this code
Jan 7 '09 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

3
8699
by: Alfredo Agosti | last post by:
Hi folks, I have an Access 2000 db with a memo field. Into the memo field I put text with bold attributes, URL etc etc What I need to to is converting the rich text contained into the memo field in plain text. That's because I truncate the string text but if, when I truncate it there's a rich tag the code following the truncated string is corrupted. Don't know if it's clear enough.
1
7777
by: PC User | last post by:
I found this Rich Text Editor and I've been trying to recreate it in my own application. I've had trouble with the COMCTL.ImageListCtrl and the COMCTL.Toolbar to recreate the toolbar. And I've had trouble with COMCTL.SBarCtrl in recreating the status bar. Does anyone have any experience with these or know of any website that explaines how to use these? http://www.access-programmers.co.uk/forums/attachment.php?attachmentid=5545 ...
1
3417
by: Peter | last post by:
I have written a small terminal app that reads and writes to the serial port. In particular as the data is read from the serial port it is appended to the rich text box. The problem I am experiencing is this: When CrLf is received in the same read and appended to the rich text box, it processes it by moving to the beginning of the next line. This is right. When Cr is received at the end of one read it is appended to the rich text box....
4
2777
by: David Davis | last post by:
Woll2Woll has a product for Delphi called Infopower which has a rtf control with a built-in word processor. Does anyone know of a third party control that has the same capabilities. I don't have the experience in Dot Net to write one myself. -- Thanks David Davis
0
2456
by: ray well | last post by:
hi, my app has two parallel rich text boxes containing the same content in 2 different languages. the lines parallel each other, line #3 in english contains the same content as line #3 in french. i need the two boxes to syncronize, if someone scrolls and clicks on line 23 in the english side, it should scroll to line 23 in the french side, and the same from french to english.
1
11776
by: tomi.trescak | last post by:
Hi I have a problem with storing rich text in MySQL. I store rich text in MySQL (in column with type "text") which i get from Rich Textbox control. When i do reverse processing by trying to fill rich text back to rich techbox (i set correct property "Rtf") i get whole text like: { tf1ansiansicpg1250deff0deflang1029{fonttbl{f0fnilfcharset0
9
8307
by: Neil | last post by:
I need to implement a rich text box in an MDB file for a user base that consists of Access 2000 and Access 2002. Unfortunately, I'm using Access 2003 on my development machine. My understanding is that because of security issues, the Microsoft Rich Textbox Control doesn't work in Access 2003. Thus, I'm left with 3 options: 1) Downgrade my development machine to Access 2002 (if I could even find a copy somewhere). 2) Upgrade all...
5
5371
by: ARC | last post by:
Just found out something interesting with Access 2007... In table design, if you set a memo field to the new rich text option, and put that control on a form, set the control to rich text, you can only use the text formatting menus IF the control is on a parent form! If the control is placed on a form that is a subform, the mini format toolbar, and the access toolbar will not work! However, if you place the control on a self-contained...
4
5486
by: Neil | last post by:
Just found out that the Microsoft Rich Textbox does not support full text justification, since it's based on Version 1.0 of the RichEdit Window Class, and full text justification is only available in versions 3.0 or later of the class. However, also just found out that the new Rich Text property in Access 2007 ALSO does not support full text justification! This seems incredible, that MS would create a brand new application, and not...
16
11140
by: Neil | last post by:
I posted a few days ago that it seems to me that the Access 2007 rich text feature does not support: a) full text justification; b) programmatic manipulation. I was hoping that someone might know one way or the other whether that was true or not, or could point me to an article or help text that would. What I have seen so far online and in Access 2007 help seems to confirm the above. But that (or at least (b)) seems incredible that it...
0
10600
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10352
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10354
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9175
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7642
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5535
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5673
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3835
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3002
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.