Forms - RichTextBox User Control On Main Form - Error: StackOverflowExecption Was Unhandled
Apr 7, 2011
What I have is a user control that has two RichTextBoxes. In the user control, there is RichTextBox1's TextChanged event, I want it to set RichTextBox2's Text to the same as RichTextBox1's Text, I'm currently using: RichTextBox2.Text = RichTextBox1.Text. The user control is on the main form, when I run the application and type I get this error: StackOverflowExecption was unhandled. [Code]
View 4 Replies
ADVERTISEMENT
Jan 5, 2011
The code is listed below which hopefully illustrates what I'm trying to do:[code]....
View 12 Replies
Feb 8, 2011
I am looking for a way to be able to use the tab control on my main form and transfer all 3 other forms onto that main form that has the tab control. Problem being is that some functions are named the same in each of the septate forms i want to bring into just one for the tab control.Is there a way to separate the code for each form ON the main form of the tab control so i don't have to rename/recode each of the 3 forms i want to place on the main form of the tab control? [code]so when i put both form1 and form2 code on the main form where the tab control is, its going to tell me that i have a duplicate function name.
View 2 Replies
Nov 25, 2010
I have a main form and a user control form. The user control form is on the main form. How can I send data from user control label1 to main form label 1?
View 3 Replies
Aug 18, 2009
I have a windows application with a main form, on which a user control is added dynamically when a device connects trough USB.
On a user control, there is a thread wich is getting data from the device trough USB and when it is finished, I want to change a progressbar that is located on the main windows form where user control reside.
This is the code that is I call on the user control thread to change the progress bar value:
Frm_Main.UpdateProgressBar(CInt((AllBytesReceived / MaxBytesInFlash) * 100))
and this is a code that is called on the main form:
Private Delegate Sub UpdateProgressBarDelegate(ByVal value As Integer)
[Code]....
View 8 Replies
Apr 23, 2009
I need to quickly demonstrate a project and decided to create a user control that is connected to an Access database through pure simple data connections (create the dataset and drag it on the control.)When I build the project and add the usercontrol to panel control on the main form, no data is shown in the datagrid.When I add the data components directly on the main form, the data is displayed properly. why I can't get my databound user control to display the data on my main form?
View 2 Replies
Sep 3, 2009
How to control other form from a main form? For example :
I want to change background color in Form2 after a button in Form1 is clicked.
View 3 Replies
Apr 26, 2011
I dynamically load a user control in a form (Form 1).
In my user control there are two things :
a Textbox (TxtBox1) and a Command Button
WHen the button is clicked, it opens a new form (Form 2) Form2.ShowDialog()
My question is, in Form 2, how can i set a value to TxtBox1 of the user control?
View 2 Replies
Nov 30, 2010
i am trying to convert netspell to VB.Net so instead of using the pop up dialog, i want it to use the richtextbox on the main form. I have nearly finished converting the whole project, but i have encountered a few errors, these are listed bellow.
Error11Property 'InnerHash' is 'ReadOnly'.C:UsersThomas Brentnalldocumentsvisual studio 2010ProjectsNetSpellVB.NetNetSpellVB.NetDictionaryAffixAffixRuleCollection.vb41113NetSpellVB.Net
Error12Property 'InnerHash' is 'ReadOnly'.C:UsersThomas Brentnalldocumentsvisual studio
[code]....
View 1 Replies
Dec 25, 2010
I need to make Mastermind for school (vb.net).It must work as single-player (thats already finished), but we also must make it work multiplayer. We got the server with the task, and don't have to program its ourselves.I can't find why I get this error.
View 1 Replies
May 11, 2011
Error occuring at line: SqlDataSource3.UpdateParameters("TechID").DefaultValue() = CInt(technicianRow("TechID"))
Here is full VB code:
[code]....
View 1 Replies
Apr 14, 2011
An unhandled exception of type 'System.StackOverflowException' occurred in System.Windows.Forms.dll it also says make sure you do not have infinate loop or infinate recursion il give all code in order that they are executed in Check the chechbox and it disables all irelevent stuff and populates the combobox
Private Sub CheckBox_Spray_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox_Spray.CheckedChanged
If Me.CheckBox_Spray.Checked = True Then
[code]....
View 4 Replies
Dec 18, 2009
Option Strict Off Option Explicit On
Imports Microsoft.VisualBasic
Imports System
Imports System.Data
Imports System.Data.OleDb
Imports System.Data.DataSet
[Code]...
View 1 Replies
Mar 27, 2011
I Was Coding A Tabbed Web Browser With A Progress Bar In Visual Basic 2010 Express Edition. I Started De-Bugging The Browser When It Pointed To This Sub: Private Sub Loading(ByVal sender As Object, ByVal e As Windows.Forms.WebBrowserProgressChangedEventArgs)
ToolStripProgressBar1.Maximum = e.MaximumProgress
ToolStripProgressBar1.Value = e.CurrentProgress
End Sub
And Showed This Error Message: ArgumentOutOfRangeException Was Unhandled By User Code Value of '-1' Is Not Valid For 'Value'. 'Value' Should Be Between 'Minimum' And 'Maximim'
View 1 Replies
Mar 15, 2010
I've got a Panel on a main Form containing a PictureBox control on Top of a TableLayout control. Both the child controls have their docking properties set to Top. The Picture control has sizemode set to Zoom.
What I'm finding is that the picture doesn't size properly when I start the app. There is a border at the top and bottom in the PictureBox control. It's only when I resize the overall form that it's correct.
So at the moment I've got this ugly bit of startup code, just to fix the problem Me.WindowState = FormWindowState.Normal Me.WindowState = FormWindowState.Maximized
What am I missing?
View 2 Replies
Apr 29, 2011
[Code] I want like to check if a file exist on main form, if not: force open settings form. And then when the user is closing the form with exit button = check if the file exist again. If it doesn't exist, close application. It's a huge application and I need optimized on most parts. Also, the settings form is asking the closing question two times.
View 1 Replies
Mar 25, 2010
im trying to do where the main form is a login form if the USer and password matches that in the code it goes to the main screen if it doesent it launches a form saying this user and or password is incorrect and when you click ok it closes that message window as well as the login form stop the program from launching is has to match the user and password from the text on text box one and masked textbox 1.
View 3 Replies
Jun 7, 2009
In the main form the user can choose to download information from a device.Since this request takes time, when "download information" is pressed I open new form in a separate thread: Private Sub RunDownload()
[Code]...
View 3 Replies
Apr 20, 2011
When I open my child form,
frm_Analogs.ShowDialog()
It opens up the new form, but now I can not interact with my main form. It will not accept focus or allow me to interact with it.
Do I need to change the form type?
View 4 Replies
May 8, 2012
ok so i viewed some other question that are ruffly the same and i am still confused, here is the stacktrace
at Game3.My.MyProject.MyForms.Create__Instance__[T](T Instance) in 17d14f5c-a337-4978-8281-53493378c1071.vb:line 190
at Game3.My.MyProject.MyForms.get_Character_Creator()
at Game3.My.MyApplication.OnCreateMainForm() in C:UsersMasonDocumentsVisual Studio 2010ProjectsGame3Game3My ProjectApplication.Designer.vb:line 35
[Code]...
also, where is game3.my.myproject, obviously its a line of code but what is it in.
View 6 Replies
Jul 25, 2009
I always get this error during the Paint event: System.AccessViolationException was unhandled. The weird thing is that it doesn't happen the first time it goes through.
Here's the code.
Friend CustomFont As Font = GetCustomFont()
Private Function GetCustomFont() As Drawing.Font
Try
Dim PFC As Drawing.Text.PrivateFontCollection
[CODE]...
Symbols is just a 2 dimensional array of characters.
View 7 Replies
Apr 7, 2010
I have to write an application that consists of mainly one main form, but several different things I wanna display. Pretty standard I guess. So there is a menu, some controls, and the main stuff below (ranging form graphs, tables, dropdown boxes, print preview, etc). I would like to use it like one would use frames in html, design an object that is limited to a box or panel that I define. The literature I have does not give me a clear idea of how to do this (yet). The most obvious seem to be the use of MDI, open a predefined form with no borders, maximize it before showing and remove all minimize/maximize options. But that does not work so well. The form inside the MDI parent does not fit the size that is given for it when it is loaded. e.g.
[CODE]:......................
So my main question is: Is MDI the way to go here at all or are there better/easyer ways to achieve this? If MDI is the way to go, how do I sucessfully restrict a child form inside another object, without giving the user any opportunity to resize (i noticed that I have minnimize/maximize/close buttons, even if I disable them on the child forms themselves)
View 6 Replies
Mar 17, 2011
I've created a windows form application in vb 2010. I've got all my forms complete and now want to add a Login screen. One the login screen, after the username/password is entered and OK is pressed, I try to open the a connection string. Obviously if the connection fails, the user has entered the incorrect credentials. If the credentials are ok, True is returned and I then open up the Main form that shows the correct items for the logged in user.
[Code]...
View 5 Replies
Nov 20, 2009
I need to get a subtotal from multiple forms and add them together on the main form. I can add two forms together but not the third.
View 1 Replies
Feb 8, 2012
I have a couple of user controls, which I show in my main form.
So let's say here's what i want:
Sub Show_Control1()
UserControl1.Show
'CODE TO HIDE EVERY OTHER DISPLAYED USER CONTROL ON THE MAIN FORM
End sub
Right now I have to hide them one by one with hide, because I don't know what's the current displayed form.
View 2 Replies
Mar 28, 2009
Is it possible to be able to have a main form load, but then have a logon form load on top of it and the user cannot select anything from the main form until the have logged in.
View 4 Replies
Apr 20, 2011
I want to create a text editor control and I tried to download a RichTextBox control in vs 2008 but i can't find it fo free. any one can give me a link to download it for free.
View 6 Replies
Jun 22, 2010
I was a vb6 user, done a few projects only with forums Now i am moving to vb.net(vb2010) and i have some trouble.Lets say we have a form(form1), a module(mod1) and a textbox on the form1.
i want to start a Sub (DoWork) in the module but in a new thread.
Dim Thread1 As System.Threading.Thread
Thread1 = New Threading.Thread(AddressOf mod1.DoWork)
Thread1.Start()
The DoWork sub does some stuff and when it's finished i want to change the text of a textbox1 in the main form and start another sub (DoWork2) on the main form under the main thread not the one DoWork is running under.
Plese do not refer me to another post that mighe give me a part answer, try to explain to me what i have to do and why.
View 3 Replies
May 25, 2009
I am using the following code in the 'Application.Designer.vb' to set one of the two forms as the the mainform for my splash screen.The global string array gSetupStr(0,1) only produces a correct result when any Msgbox is inserted before the 'If' statement.However,I do not want the Msgbox during a splash screen, but do want to control the mainform. [code]
View 1 Replies
Apr 22, 2011
i'am having trouble in making a spell checker for vb.net richtextbox control.I have made a form with richtextbox control and a panel control. I have put a listbox control in the panel control and filled with certain words. What iam able to do is whenever i select a word and click a button the panel appears just below the word (using get position from char) and display the choice. What iam not able to do is:
1) Select each word one-by-one whenever i click a button say F1 - I know keypress event but how do i select the words through keypress. I know they are separated by spaces but iam not familiar as to how to take advantage of it. The major problem being that there can be 2-3 words together sometimes colored as red. Eg: What i want is when i press F1 first time "this" is selected, next time "is" is selected and next time "nice car color" is selected. The two things are spaces and red color but i don't get anything from it.
2) Display the panel correctly within the main form's border. Right now when i select the last word of the sentence some part of panel disappears as it hides behind the main form. Eg - only 1/4th appears and rest hides. I can't find a way to limit it from moving when it has reached the main form size. I want to constrain it between top-bottom and left-right border of main form.
View 1 Replies