Alternatives To RichTextBox?
Sep 8, 2010
For sometime now whenever I am in need of formatted text I have been using RichTextBox control and save data to RTF format. However lately I started using RTF editor control that allows you to insert images into rtf. And although this works, the file sizes grow immensely.I was wondering if nowadays there are any better alternatives (preferably available for free) that people can use in windows applications for viewing and editing documents.
View 1 Replies
ADVERTISEMENT
Jan 5, 2011
Are there any alternatives to Codedom? THe reason I am asking is because Codedom is not letting me use pointers(unsafe code) which is a must in my project. I have hear of the System.emit namespace though.
View 2 Replies
Nov 19, 2010
give me some alternatives to FileLen & LOF?
View 3 Replies
Dec 7, 2010
I am using vb.net / Winform 2010.I am looking for a free (or very cheap) alternative to the DataGridView, one that looks more like what I see on ads for XTraGrid. Something that will multiple lines per records, and for lines to be rolled up, and expanded by clicking, etc.
View 1 Replies
Mar 31, 2011
I'm thinking of porting my application from VB.net to the C# based MONO project, so it can run on both Windows and Mac. However, I am in need of a Mac-friendly alternative to WPF. It has to have very similar functionality. QML (by QT) is not a viable option, as it costs far too much money for us.
View 3 Replies
Jan 1, 2010
is PaintEventArgs.Graphics the only way to get the Graphics of a Form?
View 10 Replies
Sep 21, 2010
When I try to code in VB2010, I usually unmark the reference to Microsoft.VisualBasic. Because I do not want to use the legacy functions of VB6. I want to complete walk in .Net path. And I have found some alternatives for the old VB6 functions. But the rest not. Where can I find the list of those methods or classes (alternatives for the VB6 functions) ?(For eg: when I tried to find the difference of 2 dates, I couldn't find any other alternatives. So, I came back and used the Microsoft.VisualBasic reference for using DateDiff())?
View 24 Replies
May 20, 2011
I'm working on a small utility program and found that I have a need to copy the contents of listboxes, textboxes and other control from one to another.
I just started playing around with Drag and Drop but it seems lacking a bit...for instance, if I wanted to drag the contents of a listview to a text box, it doesn't look like I can do that easily if at all.
Can you use a drag and drop to copy the contents of different control types easily?I thought about using the drag and drop method for notification of the intent to copy the contents and then I would code the copying.
The idea (although I know it will be slow but that is okay for this utility) to copy the source to a textbox and then from the textbox to the target. The content won't be that large and speed is not a concern at this point.
Here is my issue if I have to do it this way.
1 - How can I use the control names to do this?
2 - How do I get the target control name?
I figured I would create a function that I would pass the source control name and the target control name and based on type, perform the appropriate method of copying the data.
I haven't figured out a way to get the target control name. I can use activecontrol.name for the source.
View 1 Replies
Feb 18, 2009
I have the need to constantly use the TabControl but somehow its current look is boring, is there any tricks out there to make it more interesting? Or what are the alternative controls that I could use to replace it?
View 3 Replies
Dec 24, 2009
I'm developing in VB.NET with Visual Studio 2005.I have a ComboBox (myCombo) on a form that gets populated within the Load method.I also have handled myCombo.SelectedIndexChanged to change a label on the form.
Edit: The way I added the event handler was by double-clicking on the combo box on the designer. Skeleton code then came up in the code view.It looks like what's happening is when the form loads, SelectedIndexChanged gets fired each time an item is added to myCombo.This isn't what I want, but I'm thinking there's another event handler that only gets called when the user changes the selection.
Here's some code for what I have:
Private Sub myDlg_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
' this is all I do with myCombo in this sub
list = GetListOfItemsToAdd()
[code].....
Update: The solution I used was to remove the Handles clause after the event generator, and add this before the "End Sub" above:
AddHandler myCombo.SelectedIndexChanged, AddressOf myCombo_SelectedIndexChanged
View 4 Replies
Mar 4, 2010
I am currently working on a program that takes Visual Basic data in the form of a text file, and then stores this data in C++. Some of the data from Visual Basic is of the type Decimal. C++ has no built in type equivalent to decimal. I don't want to use double because there is a possible loss of significant figures if the numbers are large enough.One option is write my own decimal class.
View 2 Replies
Jan 16, 2011
I'm developing in VB.NET with Visual Studio 2005.I have a ComboBox (myCombo) on a form that gets populated within the Load method.I also have handled myCombo.SelectedIndexChanged to change a label on the form.Edit: The way I added the event handler was by double-clicking on the combo box on the designer. Skeleton code then came up in the code view.
View 2 Replies
Dec 14, 2011
I been using Boston workstation for a project but the version i have is about 8 years old and it only works with terminal not GUI apps. what alternatives are out there for automation scripting Gui apps in visual studio.
View 2 Replies
Aug 11, 2010
recommended alternatives for speech recognition other than Microsoft Speech libraries?
View 2 Replies
Aug 26, 2010
I have a richtextbox with a large file inside....I want to be able to search for "Fornication" within the text (KJV Bible) and have every instance of that word to pop up into another richtextbox along with the scripture it is in.
View 1 Replies
Jun 28, 2011
I'm currently having a problem dragging and dropping my label1.text to a richtextboxt which isn't created on design time...well im currently found a solution but i think it is only for a temporary solution because i use a drag and drop i drag it to a textbox then it willl transfer the data to the richtextbox....through the use of the textbox... here is the code ive come through..[code]...
View 2 Replies
Jul 25, 2011
I am creating a text editor like notepad. Well its an advance type because it is a tabbed notepad type. It saves html files.
I only created tabcontrol on the design time named TabControl1. the tabpages and the richtextbox are created on the form load and when adding tabs. [code]...
View 7 Replies
Jul 26, 2011
I have 2 forms. The 1 is named frmMain. inside of it is a Richtextbox named RTB.
The other form is named frmInsert. Inside of it is a Richtextbox named rtbtext.[code]..
View 5 Replies
Sep 15, 2011
I'm using a richtextbox in vb.net. I need to maintain the text formatting while inserting a new entry.I have this issue solved although I am having difficulty with getting a new line between my new text and the prior existing text.Most solutions online presume you're working with rich textbox. text which accepts controlchars.lf, vbcrlf, and chr(10)... even chr(13) adds one single newline.How do i get the newline in rtf formatting?I prefer to have the new text entered at the top of the richtextbox as a user should see the latest update first.In addition, if this can be done more elegantly, I'm open for suggestions.Where you see controlchars.lf is where I want an rtf-based new line to show up. [code]
View 1 Replies
Aug 6, 2009
How to make RichTexBox when open a file to show the lines .To be like Notepad++ when open a file shows lines: Image:
Like .txt file thise sentences:
Hello!
How are you?
I'm Ok, Thanks for asking.
and when i start the program and open the file in richtextbox to show the lines of sentences . Like thise:
1. Hello!
2. How are you?
3. I'm ok, Thanks for asking.
How to be done? Because i'm using search button that show the word on what line is it.. so i need the lines people to know what line to search
View 1 Replies
Jan 22, 2010
I have a Dynamic Fields comming from database. These fields populated on RichTextBox after changing the color.Means Different Fields in Different Color.
View 1 Replies
Jun 4, 2011
why can't I find a property for my richtextbox for centering its text? A textbox has a property named "TextAlign" while in richtextbox, there is none. How do I center the text in my richtextbox?
View 3 Replies
Apr 10, 2012
This is my first post at the forums, if I did something wrong making this topic Okey so here is the deal. The program task is to take 50 codes including letters and numbers. Take them and insert them into a webpage(webbrowser1) witch is designed to deal with these codes(3 fields). To check if the codes is valid etc.
Here is what I got :
WebBrowser1.document.GetElementById("Website textbox ID here").SetAttribute("value", TextBox1.Text)
WebBrowser1.document.GetElementById("Website textbox ID here").SetAttribute("value", TextBox2.Text) '
WebBrowser1.document.GetElementById("Website textbox ID here").SetAttribute("value", TextBox3.Text) '
What this does it takes textbox1.text input(first part of code) and inserts in the first field at the website.The to others to exactly the same.But instead of having 3 diffrent texboxes I want it like in this pic.
View 4 Replies
Nov 5, 2008
Just had a question regarding a Windows Form Application in Visual Studio 2008.I was wondering if it is possible to have a RichTextBox and have a < (previous) and >(next) button. When the user selects the Next button, a new blank RichTextBox will be displayed, when the user selects previous button, the prevoius RichTextBox w/ whatever text was in there before will be displayed.
View 2 Replies
Jun 23, 2009
I've got a RTB that I use to display some info for a user. Scroll bars on the right to move the data visually up and down.
I don't want to allow the user to alter text in the RTB - it's for display only.
How would I go about that without using ENABLE=FALSE?
View 6 Replies
Nov 27, 2009
I want to end the selection in a rich text box.Example:
Sentence - "I was walking in the park and found a coin."
I want to select from "walking" to "found"
RichTextbox1.SelectionStart = RichTextbox1.Find("walking")
[code].....
View 3 Replies
Sep 11, 2010
I need my app to enter each line of a richtextbox for a different field in my webpage.Currently what im thinking is:
Get string of first line in RichTextBox
Enter string into webpage
Delete first line in RichTextBox
loop
View 5 Replies
Aug 9, 2010
I have not been able to "Get" properties of richtextboxes that are in other forms in my MDI interface. I'm creating a document editor which specifically call for a richtextbox for each form. I'm attempting to implement a Find/Find All form, which is why I need to "Get" text from each document by creating a property for each. However, I keep getting "null" erroer messages.
My property structure follows:
Public ReadOnly Property rtb_txt_form() As String
Get
Return Solution.TextForm.RichTextBox1.Text.ToString()
[code]....
View 5 Replies
Mar 12, 2009
I am bringing in data to a richtextbox but when I bring it isn't aligned like i thought it would. Is there a property or something i need to enable to get this to work. Here is how I would have imagined it to work:-I figured this wouldn't display correctly.this was just an example, but was hoping to have the asterisks display even with the last asterisks on the first line and the slash on the last line.
/************************
* *
* Some Text *
************************/
The text when i look at the .Text Property and click the magnifying glass shows it like i would imagine but within the control itself the alignment is all over the place and doesn't make much sense how it is doing it. If i bring the same text file into notepad it all looks fine and is also aligned correctly.what I need to enable to get this to work?
I should also mention that I thought maybe it had something to do with tabs, but when i view the .rtf property for many of the lines that should be aligned still are not even without tabs.
View 5 Replies
Mar 22, 2011
I would like to make a line of text in my richtextbox multicolor. I have tried various implementations provided on the web and read up on SelectedText and other topics but can't seem to get it to work the way I would like to.Here is what I have so far
RichTextBox1.Text = "This is black "
RichTextBox1.SelectionFont = New Font("Microsoft Sans Serif", 8.25, FontStyle.Bold)
RichTextBox1.SelectionColor = Color.Green
RichTextBox1.SelectedText = "[BOLD GREEN]"
RichTextBox1.Text = RichTextBox1.Text + " black again"
The colors I want are stated as the text. What happens is: the entire line turns green, "[BOLD GREEN]" appears at the beginning of the textbox instead of inline. I want it to read like this: "this is black" as black. "[BOLD GREEN]" as green and "black again" as black.
View 1 Replies