Forms :: MDIContainer Inside Another MDIContainer - MainForm For My System ?
Aug 30, 2010
I have One MainForm for my system. This MainForm is MDIContainer. From that form, i call other forms that are MDIContainers too. So, when i try to open one of this childForms from the MainForm
frmMain is GrandParent form
frmSub is Parent form
frmChild is child form
frmSub.MdiParent = Me // Me is the frmMain which is the Grandparent form
frmSub.Show()
I get this error.
Form cannot be both an MDI child and MDI parent.
Parameter name: value
View 3 Replies
ADVERTISEMENT
Aug 21, 2008
see the code below i placed form and made it isMDIcontainer=trueadded treeview to this form and docked to leftadded split Containeradded 2 child forms namde Form3 & Form4
everything ok, except one thing the child forms not showing up
Public Class Form2
Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code].....
View 2 Replies
Jun 14, 2010
Currently, I have a LoginForm that authenticates a user and it works fine. I have a MainForm, which is displayed if a valid username and password is entered. I have done this by using the following code in my LoginForm:Private Sub OK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles
[Code]...
Now this does exactly what I want except I fear it's a work around and it's not the best approach. Also, note that I am using Me.Hide() to hide the LoginForm, is there a way to show the MainForm and then close the LoginForm instead of hiding it? Doesn't Me.Hide() call creates an overhead?
View 7 Replies
Aug 13, 2011
I'm creating an app, with a splashscreen, loginform (just enter a name) and a mainform.With I use my.settings. Now here comes the issue I run into.The splashscreen should check (onload) if the my.settings.user contains any info, if it does, the mainform should be shown, if not the loginform should be shown. On my app settings I have splashscreen set to the splashscreen and the first form is set to login form.
[Code]...
View 11 Replies
Oct 24, 2010
I've made an app with vb 2010, which holds a mainform. On it is a menutoolstrip with button, when I click on that button a second form is opened on a second monitor and the button is being checked (different color).
When I click the button again, it is unchecked, but the form on the second monitor is still open, while it should be closed.
Here is the code I use:
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
Aug 26, 2010
I would like to know if its possible to start up a second windows forms inside the parent form. Ex: A button is pressed and a new form is showed. I would like to keep that new form inside the parent form, and have it not be able to go outside the parent form.
View 2 Replies
Sep 8, 2010
I have the code which checks if there is a selected tab
Private Function GetBrowser() As WebBrowser
If TabControl1.SelectedTab IsNot Nothing Then
For Each c As Control In TabControl1.SelectedTab.Controls
If TypeOf (c) Is WebBrowser Then
Return c
[Code]...
View 2 Replies
Apr 28, 2009
I have a panel with some controls in it (several textboxes, a slider, 2 buttons, and a small groupbox).. When I click a button, I want all of the textboxes within the panel to be readonly... So I have this code: [code] When I run it though, I get the following error:Unable to cast object of type 'System.Windows.Forms.Button' to type 'System.Windows.Forms.TextBox'.If I remove a button, it moves on to give me the same error but for a label..
View 4 Replies
Mar 16, 2009
With the following imported namespaces in my project :
Imports System.Windows.Forms
Imports System.Reflection
.. I cannot add..
[code].....
View 6 Replies
Jan 23, 2010
Private Sub wb_Scrape(ByVal sender As System.Object, ByVal e As
[Code]...
View 5 Replies
Oct 20, 2010
Win7 64 bit; fully patched VS2008 targeting FW2.0; VB.Net; running in Debug Mode (not tested in Release mode)I have a resonably complex app which I am refactoring a bit. As part of that, I relocated some code from a subroutine into a Click Event Handler. The Event Handler will, late in the handler, call the, reduced in function, subroutine. The point of this is thatNow when I click the button associated with the modified Handler I get:A first chance exception of type 'System.AccessViolationException' occurred in System.Windows.Forms.dll<br />With Error System.AccessViolationException Attempted to read or write protected memory.This is often an indication that other memory is corrupt.
at MusicManager2009.frmMain2.cmdLoadAlbum_Click(Object sender, EventArgs e)
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnClick(EventArgs e)
[code].....
All functions of the app, except those that start from the buttonclick in question, work as before in the problem version.The problem persists after rebuilding the entire solution, after restarting VS, and after rebooting the PC.
View 10 Replies
Feb 19, 2010
When I run my project I get "An unhandled exception of type 'System.StackOverflowException' occurred in System.Windows.Forms.dll"
Public Class frmViewReport
Dim objForm As New frmViewReport
Private Sub frmViewReport_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
objForm.ViewReport("C:a2.rtp", , "@parameter1=test�mter2=10")
[code]....
View 1 Replies
Nov 16, 2009
I have the following code running, the first time I change the selected index, everything runs smoothly. However, if I try to change the selected index again, nothing happens and the subcategories combobox values do not change.
Private Sub cboMainCategory_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cboMainCategory.SelectedIndexChanged
'* make sure the combobox is fully loaded
[code]....
View 2 Replies
May 6, 2009
I keep getting an eroor this error says: An unhandled exception of type 'System.ArgumentOutOfRangeException' occurred in system.windows.forms.dll Additional information: Specified argument was out of the range of valid values.
Option Strict On
Public Class frmWeeklyReport
Inherits System.Windows.Forms.Form
[code].....
View 7 Replies
Feb 12, 2011
A first chance exception of type 'System.InvalidOperationException' occurred in System.Windows.Forms.dll It displays in my Immediate Window when i run my program, I'm using a text reader to read a number of XML files using background worker...most the time it stops so something is wrong but sometimes it works fine.
View 2 Replies
Feb 6, 2010
I am working on a card game, and i get this werid error:
A first chance exception of type 'System.Reflection.TargetParameterCountException' occurred in System.Windows.Forms.dll
The code that is cousing this error is:
Private Delegate Sub ShowcardDelegate(ByVal test As String, ByVal objtest As Object, ByVal value As Boolean)
Private Sub Showcard(ByVal test As String, ByVal objtest As Object, ByVal value As Boolean)
If objtest.InvokeRequired Then
[code].....
View 10 Replies
Feb 23, 2009
I want to cast a system.string to system.windows.forms.form
View 2 Replies
Jun 27, 2011
VB 2008, DataGridView,DataGridView1_CellLeave(sender, New System.EventArgs)
"Unable to cast object of type 'System.EventArgs' to type 'System.Windows.Forms.DataGridViewCellEventArgs'."
What is the Correct String for "New System.EventsArgs"
Anybody there is to help me out.
View 1 Replies
Mar 31, 2010
I am writing a program for my A-level coursework But for some reason I got this build error this has never occurred to me before, I have no idea why I can't use string for the name of my form.
View 8 Replies
Mar 5, 2012
When I add a new, empty form to my VB.NET VS9 project, the linenherits System.Windows.Forms.Formis missing.What am I doing wrong here?I thought it would be added automatically.I experienced that some thing get weird if this line is not there (Form_Load is not firing, I think).
View 3 Replies
May 24, 2009
i want to use the following function
Dim
buffer() As Byte = System.IO.File.ReadAllBytes( ImageSourcePath)
inside a backgroundworker but it does not retunr any byte at all while if this is places outside the backgroundowrker it works files.
View 1 Replies
Jun 29, 2011
I'm quite new to this app.config function. Hope someone can show me the road on this. I have a solution which comprise of 5 projects and one of them just to retrieve the value from the app.config file to be read by other projects. So, in the app.config file, i have my connection string stated inside and i can use it nicely.
[Code]...
View 1 Replies
Sep 10, 2011
i'm working on a Java app wich uses the CMD.i want to control the app completely though a forms application and so i created a invisible CMD console that starts and runs,the only problem i keep getting. is that after startup and further commands send to the CMD window doesnt work. not commands are received.heres my code
the basic functions
vb.net
Private WithEvents MyProcess As Process
Private Delegate Sub AppendOutputTextDelegate(ByVal text As String)
Private Sub MyProcess_ErrorDataReceived(ByVal sender As Object, ByVal e As System.Diagnostics.DataReceivedEventArgs) Handles MyProcess.ErrorDataReceived
AppendOutputText(vbCrLf & "Error: " & e.Data)
End Sub
Private Sub MyProcess_OutputDataReceived(ByVal sender As Object, ByVal e As System.Diagnostics.DataReceivedEventArgs) Handles MyProcess.OutputDataReceived
AppendOutputText(vbCrLf & e.Data)
End Sub
Private Sub AppendOutputText(ByVal text As String)
If outputtextbox.InvokeRequired Then
Dim myDelegate As New AppendOutputTextDelegate(AddressOf AppendOutputText)
Me.Invoke(myDelegate, text)
Else
outputtextbox.AppendText(text)
End If
End Sub
the startup that works.
VB.net
MyProcess = New Process
With MyProcess.StartInfo[code].......
i sometimes replace the textboxx2.text with a custom command like "exit".so when i press the button after entering exit for example nothing happens.but when the app starts it does gets the first 2 commands. so why is it failing at the buttons.
View 16 Replies
Jan 17, 2011
[Code]...
there is one problem here the root node on the line "GetDirectories(info.GetDirectories(0, rootNode))" here is the error "Error 1 Value of type 'System.Windows.Forms.TreeNode' cannot be converted to 'System.IO.SearchOption'."
View 4 Replies
Jun 25, 2010
My project worked a first and now its giving me a problem.The error
Quote:
Unable to cast object of type 'System.Windows.Forms.MouseEventArgs' to type 'System.ComponentModel.RunWorkerCompletedEventArgs'.
View 2 Replies
May 16, 2011
[URL]The issue is as soon as I change the value of the text boxes it gives me an error and forces me to close the project.
The error is:Unable to cast object of type 'System.EventArgs' to type 'System.Windows.Forms.KeyPressEventArgs'.
However I'm supposed to clear the number of gallons used and the total charged when a change is made to the contents of the 2 text boxes on the form.
View 3 Replies
Mar 12, 2010
When I do this
Public Class cInherits : Inherits Panel
I get this: Base class 'System.Windows.Forms.Panel' specified for class 'MenuButton' cannot be different from the base class 'System.Windows.Forms.UserControl' of one of its other partial types.
How do I inherit?
View 4 Replies
Dec 24, 2009
Now I want to display picture in picturebox1.To do this I use this codes, but it does not display picture
on this line: Dim arrPicture() As Byte = CType(dt2.Rows(0)("img_path"), Byte())
it shows this message,
Unable to cast object of type 'System.DBNull' to type 'System.Byte[]'.[code]......
View 1 Replies
Jun 12, 2011
Unable to cast object of type 'System.String' to type 'System.Windows.Forms.TextBox'.
View 12 Replies