IDE :: #Regions Are Left Justified In Text Editor?
Nov 3, 2010
In my IDE #Region statement are left justified by the auto outlining tool. I think this is ugly. Is there anyway to make #Regions have standard indentions? I am using Visual studio 2008 version 9.0. See code block below for an example.
[Code]...
View 1 Replies
ADVERTISEMENT
Dec 1, 2010
I am using drawstring to print text. However the biggest complaint is that when printing several paragraphs, I have not been able to find a way to justify the left and right so that it automatically add spaces to match up the words on the right margin such as ms word.
View 5 Replies
Mar 31, 2011
Ho can you make a dynamic label stay right justified, so that when the label.text is filled the text starts at the right edge of the label and fills to the left? Currently the text fills to the right from the left edge of the labels location and tends to run off the form.
View 1 Replies
Jul 10, 2010
I'm fairly new to VB.NET, and I'm working on a text editor with a tabbed interface. I deal with large text files. Should I have each tab / text document open up in a new thread or a process? I basically want the entire application to always run fast as the text editor is just one part of it. If I have several large text files open I don't want the rest of the application slowing down a bit.
View 2 Replies
Dec 31, 2009
I'm adding a method to find and select text in my text editor. Everything worked fine, including the ability to find all instances of the text. My problem came when I tried to make it more user-friendly (doesn't it always?). Originally I had only a menu item with a shortcut( Ctrl + F) which invoked an input box.
Then I added a textbox and a button (similar to that seen in a web browser's Find() method) that calls the method in the same manner as the Find/Replace menu option and displays the desired text in the textbox. Everything works fine except that the text is not selected. I have MessageBoxes displaying the values of required variables in 3 places (marked ***FOR DEBUG ONLY***) to make sure that no values are being changed, but all variables are the same. The method still locates the text, but it is not highlighted.
I think it could have something to do with which object has focus. (When I click the button, the selected text loses focus?). But if I click everything with the menu items, it still works...
Here is the
*****code with [code] tags in the 4th post on this thread****
Public Sub FindText()
'Make sure there is text in the textbox...If txtTextbox.Text <> "" Then'Find the end of the current selection... Dim curSelectionEnd As Integer =
[Code]....
View 3 Replies
Feb 20, 2009
how can i import text from text file to access so that:
Text sample:
F2009021908362600111154050110230000203024116461000000000001000
Would be in access
Col1|Col2|Col3|Col4|Col5 and so on.
F|2009|02|19|08
So the point is, how can i put vb to read from left as many characters i want and put the selected range in to access?
View 6 Replies
Mar 19, 2009
im trying to addapt my printing code so it will print my text what ever i have selected it to be in the text editor. here is the code i have at the moment
Private Sub PrintDocument1_BeginPrint(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintEventArgs) Handles mypdoc.BeginPrint
str = CType(Me.ActiveMdiChild, frmSplit).RTB.Text 'If this was a single text
[Code].....
View 8 Replies
Jun 15, 2009
My text file is like this
G0 G90 G54
X200.876 Y-140.576
G0 Z 5.
[Code].....
I need to add N1,N2...Nn to the left hand site of the lines in my text file.
View 6 Replies
Jun 22, 2011
When you set a region equal to another, or set it equal to a new instance, do you have to call dispose on the region, or does VB do that? (I guess this isn't necessarily specific to regions)
ex:
'at some point in the code a region is created
Dim Rgn as New Region(SomeRect)
'....
[Code].....
If Rgn now points to the Rgns(0) clone, what happens to the original memory created by "New Region(SomeRect)"? Do I need to call dispose on Rgn before assigning it to the the Rgns(0) clone?
View 4 Replies
Aug 13, 2010
I'm getting an error when changing a picturebox region in a timer_tick event.
[code]....
View 4 Replies
Jun 23, 2010
I know i can collapse all regions with Ctrl+M, Ctrl+O - but that also collapses all of the subs/functions/properties etc within the #Region.if it collapsed all of the sub regions too - just not the subs etc.Is there a way to collapse all top level regions only? Maybe an extension?
View 1 Replies
Oct 30, 2010
I always get worried and my layout when i code. I always get myself in a flap when coding and worried i should be doing it different.What i am going on about is not the code it self. But where i actually put the code.
What i am thinking about is functionality (does it matter if formload code is at top/bottom/ or even middle)
And read ability. Do i put all button events into regions?
View 4 Replies
Oct 8, 2010
I've programmed a text editor and controlled through its sound as a program, but I want to distinguish it from other software
View 5 Replies
Mar 5, 2009
how when i open my text editor that in the blue area at the top it displays "untitled" but when a file is saved it shows in blue the new title name.im using vb2008?
View 7 Replies
Jan 29, 2012
I am making a text editor.I downloaded someone else's Project and found 1 bit of code did not work.
Private Sub openFileDialog1_FileOk(sender As System.Object, e As System.ComponentModel.CancelEventArgs) Handles openFileDialog1.FileOk
End Sub
[code].....
View 3 Replies
Jan 15, 2009
I have to produce a basic text editor with buttons along the top and a richtext box below. I am currently struggling with 'Save if changes are made' objective. At the minute clicking my exit button rather than close/X (something i have to disable but havent yet) brings up the do you want to save message box regardless of any changes and also, clicking the yes button does nothing.
CODE:
I recieve no errors and apologise if i have forgotten to include something useful
View 4 Replies
Jul 29, 2009
I am using a RichTextBox as a text editor. Each chr() has its own color. I am using rtfText.SelectionColor with rtfText.SelectedText. I have to, or I think I have to, Use For/Next Loops with Do While Loops to search for each Chr() using Mid() & InStr(). Of course this works very well but, it is waaaaayyyyy to slow.Some of the files can be over 8MB. Is there a better way? Am I doing this right?
View 4 Replies
Apr 10, 2009
how to add a replace method to a text editor (notepad) to search for a word and replace it
1. say in (notepad) you type something in the textbox1-------"me"
2. then am suppose to type "me" in text box 2---and
3. click the find button and it suppose to find the text in textbox1
4. then you type in textbox3---- "us" and
5. click the replace button and it replaces "me" with "us"
View 4 Replies
Oct 24, 2009
how to turn these off? I am trying to work through a VB book and whenever I type in code huge yellow screentips come up that are distracting.
View 4 Replies
Mar 24, 2011
I am working on a simple text editor for medieval Latin and I have a custom medieval Latin ttf that does exactly what I want. My question is: How can I embed that font into my text editor so that it can ONLY use that font, and so that when I send my text editor app to others they can start using it right away without having to download any fonts?
View 2 Replies
Aug 13, 2010
I have written a MDI Text Editor and I have written sub routines for print preview, cut, copy and so on, when testing my program, I click print preview when there are no documents active and the program crashes, the same happens with cut, copy, paste.
I know this is because I have not handled any error exceptions, the truth is im not sure how to.
I have got the code that makes print preview work with my mdi documents, but what code can I use or how can I add it to my existing sub routines to possibly show a message box saying something like "This Function Cannot Be Used With No Active Documents" something like that.
Could I use an If Statement? or Try, Catch, Block? - I am using a different computer as I am currently at work but if anyone needs the code I currently have for my sub routines.
View 10 Replies
May 4, 2009
I've found out how to change colours for the text editor, etc, but is there any way to change the colours in the help? It'd be nice to be able to have [for example] white text on a black background. It'd be easier on the eyes for lengthy reading sessions.No crops were circled, or animals mutilated in the making of this sig.
View 3 Replies
Oct 9, 2010
So, I was making shortcuts for a text editor I made. The first 3, that I originally included were control-b control-i and control-u for the bold italics and underline. That worked fine. Recently, I added control-s and control-o for save and open. I don't know why, but once I press control-s or control-o once, the control key seems to stay "pressed", so whenever I press just b, u, i, s, or o, they activate the commands. Here's my
[code]...
View 3 Replies
Jul 28, 2010
I am writing a MDI Text Editor and I want the user to be able to change the language of the application i.e I want the text in the form and the controls to change language of whatever the user wants, I have built the sub menu needed for the languages, french, german, chinees and so on, but how do I code this??
I have some information on Globalization and localization but it does not really cover what I need, can anyone help or do I need to search more into Globalization and Localization??
View 2 Replies
Dec 8, 2010
I have a vbp file that I would like to open with a computer without vb. I don't need to run the file, but I would just like to look at the source code
View 2 Replies
Jul 30, 2009
I am doing a Windows Form Application assignment (Simple User Interface Text Editor - practically my own version of MS Notepad) for my VB.Net course... I have practically completed the project however there were certain items we had to add to one of the dropdown menus one being Word Wrap (Under the Edit drop down). I am really confused as what to do here for the WordWrapToolStripMenuItem_Click event handler?!
[Code]...
View 7 Replies
Jan 10, 2010
now only i am studinf vb.net..i hav to create a rich text box using vb.net...
View 2 Replies
Mar 22, 2012
I have a problem dealing with labels text.i am declaring the text filed and its location but the location moves left at run time from the original location where I put it, moreover in the user machine it moves left much further than.
View 2 Replies
Apr 2, 2009
Perhaps I am using the wrong Keywords when I am searching..... I want to use a Masked TextBox for a Money entry point on my Form. The Mask is $000.00, the problem I have is if the user wants to enter a value $9.99 (999), he gets $999.00. I have tried the TextAlign Right, that just moves the text to the right side. The RightToLeft just means that it the entry then looks like __$999 How can I make it Fill from Right to Left? Or is there a bertter control to use? I like the masked text box idea because I can eliminate the literals for calculations that I will be doing.
View 2 Replies
Apr 9, 2009
how to add a replace method to a text editor (notepad) to search for a word and replace it in visual basic 2005
1. say in (notepad) you type something in the textbox1-------"me"
2. then am suppose to type "me" in text box 2---and
3. click the find button and it suppose to find the text in textbox1
4. then you type in textbox3---- "us" and
5. click the replace button and it replaces "me" with "us"
View 7 Replies