Hi i have got a proj i want to remove errors in it.
This is winform application in vb.net when i try to open form then it does not show form elements(button label etc) it show this.
One or more errors
encountered while loading the designer. The errors are listed below. Some
errors can be fixed by rebuilding your project, while others may require code
changes.
at System.Xml.XmlTextReaderImpl.Throw(Exception
e)
at
System.Xml.XmlTextReaderImpl.Throw(String res, String arg)
at System.Xml.XmlTextReaderImpl.ParseEntityName()
at
System.Xml.XmlTextReaderImpl.ParseAttributeValueSlow(Int32 curPos, Char
quoteChar, NodeData attr)
at
System.Xml.XmlTextReaderImpl.ParseAttributes()
at
System.Xml.XmlTextReaderImpl.ParseElement()
at System.Xml.XmlTextReaderImpl.ParseElementContent()
at
System.Xml.XmlTextReaderImpl.Read()
at System.Xml.XmlTextReader.Read()
at
Microsoft.VisualStudio.Design.VSTypeResolutionService.GeneratedAssemblyEntry.RealizeMoniker(String
moniker)
at Microsoft.VisualStudio.Design.VSTypeResolutionService.GeneratedAssemblyEntry.get_FileName()
at
Microsoft.VisualStudio.Design.VSTypeResolutionService.AssemblyEntry.get_AssemblyName()
at
Microsoft.VisualStudio.Design.VSTypeResolutionService.AssemblyEntry.Search(String
fullName, String typeName, Boolean ignoreTypeCase, Assembly& assembly,
String description)
at
Microsoft.VisualStudio.Design.VSTypeResolutionService.SearchGeneratedEntries(AssemblyName
assemblyName, String typeName, Boolean ignoreTypeCase, Assembly&
assembly)
at
Microsoft.VisualStudio.Design.VSTypeResolutionService.GetType(String typeName,
Boolean throwOnError, Boolean ignoreCase, ReferenceType refType)
at
Microsoft.VisualStudio.Design.Serialization.CodeDom.AggregateTypeResolutionService.GetType(String
name, Boolean throwOnError, Boolean ignoreCase)
at
Microsoft.VisualStudio.Design.Serialization.CodeDom.AggregateTypeResolutionService.GetType(String
name)
at
System.ComponentModel.TypeDescriptor.CreateDesigner(IComponent component, Type
designerBaseType)
at
System.ComponentModel.Design.DesignSurface.CreateDesigner(IComponent component,
Boolean rootDesigner)
at Microsoft.VisualStudio.Design.VSDesignSurface.CreateDesigner(IComponent
component, Boolean rootDesigner)
at
System.ComponentModel.Design.DesignerHost.AddToContainerPostProcess(IComponent
component, String name, IContainer containerToAddTo)
at System.ComponentModel.Design.DesignerHost.Add(IComponent
component, String name)
at System.ComponentModel.Design.DesignerHost.System.ComponentModel.Design.IDesignerHost.CreateComponent(Type
componentType, String name)
at System.ComponentModel.Design.Serialization.DesignerSerializationManager.CreateInstance(Type
type, ICollection arguments, String name, Boolean
addToContainer)
at
System.ComponentModel.Design.Serialization.DesignerSerializationManager.System.ComponentModel.Design.Serialization.IDesignerSerializationManager.CreateInstance(Type
type, ICollection arguments, String name, Boolean
addToContainer)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeInstance(IDesignerSerializationManager
manager, Type type, Object[] parameters, String name, Boolean
addToContainer)
at
System.ComponentModel.Design.Serialization.ComponentCodeDomSerializer.DeserializeInstance(IDesignerSerializationManager
manager, Type type, Object[] parameters, String name, Boolean
addToContainer)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializer.DeserializeStatementToInstance(IDesignerSerializationManager
manager, CodeStatement statement)
at
System.ComponentModel.Design.Serialization.CodeDomSerializer.Deserialize(IDesignerSerializationManager
manager, Object codeObject)
at System.Windows.Forms.Design.ControlCodeDomSerializer.Deserialize(IDesignerSerializationManager
manager, Object codeObject)
at
Infragistics.Shared.Serialization.UltraCodeDomSerializer.Deserialize(IDesignerSerializationManager
manager, Object codeObject)
at
System.ComponentModel.Design.Serialization.TypeCodeDomSerializer.DeserializeName(IDesignerSerializationManager
manager, String name, CodeStatementCollection statements)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeStatement(IDesignerSerializationManager
manager, CodeStatement statement)
so what is this how can i remove this error.

Hirendra SisodiyaPosted Sep 22, 2010, 12:54 AM
Vikas AhlawatPosted Sep 22, 2010, 12:52 AM
Thanks very much, My problem is solved
Actually Infragistics.win.ultraWingrid.design was not added in my proj.
but VS2005 not give any type of error that reference not added.
You are also MVP for me.
Thanks very much again
Hirendra SisodiyaPosted Sep 21, 2010, 8:34 AM
you can try these steps:
1. take a Back up of your application.
2. remove reference of Infragistics.win.ultraWingrid and Infragistics.win.ultraWingrid.design
3. add new ultra grid on the form
if problem not solved the n you can try these steps
1. remove reference of Infragistics.win.ultraWingrid and Infragistics.win.ultraWingrid.design
2. comment all code in the designer.cs file releted to ultra grid
3. add new ultra grid on the form
thanks
Vikas AhlawatPosted Sep 21, 2010, 8:23 AM
I found that when i try to drag and drop ultraGrid then the same error appear.
And when made a new proj and try to add ultragrid in it then it successfully added.
Means the problem in my old application.
where i can't add ultragrid but other controls successfully added.
Hirendra SisodiyaPosted Sep 21, 2010, 3:16 AM
Hello Vikas
i tried your code.
i add your designer code in our test application and add all infragistics reference and open designer, its open successfuly
check attached form
thanks
Vikas AhlawatPosted Sep 21, 2010, 12:30 AM
Vikas AhlawatPosted Sep 15, 2010, 6:10 AM
Partial Class frmLogin
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
Friend WithEvents txtUserName As System.Windows.Forms.TextBox
Friend WithEvents txtPassword As System.Windows.Forms.TextBox
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container
Dim Appearance3 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance1 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance2 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Me.txtUserName = New System.Windows.Forms.TextBox
Me.txtPassword = New System.Windows.Forms.TextBox
Me.EP = New System.Windows.Forms.ErrorProvider(Me.components)
Me.chkUnmaskPassword = New Infragistics.Win.UltraWinEditors.UltraCheckEditor
Me.lblPassword = New System.Windows.Forms.Label
Me.Label1 = New System.Windows.Forms.Label
Me.cmdOK = New Infragistics.Win.Misc.UltraButton
Me.cmdCancel = New Infragistics.Win.Misc.UltraButton
CType(Me.EP, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'txtUserName
'
Me.txtUserName.BackColor = System.Drawing.Color.White
Me.txtUserName.Location = New System.Drawing.Point(12, 127)
Me.txtUserName.Name = "txtUserName"
Me.txtUserName.Size = New System.Drawing.Size(308, 21)
Me.txtUserName.TabIndex = 0
'
'txtPassword
'
Me.txtPassword.Location = New System.Drawing.Point(12, 180)
Me.txtPassword.Name = "txtPassword"
Me.txtPassword.PasswordChar = Global.Microsoft.VisualBasic.ChrW(9679)
Me.txtPassword.Size = New System.Drawing.Size(308, 21)
Me.txtPassword.TabIndex = 1
'
'EP
'
Me.EP.ContainerControl = Me
'
'chkUnmaskPassword
'
Appearance3.ForeColor = System.Drawing.Color.White
Me.chkUnmaskPassword.Appearance = Appearance3
Me.chkUnmaskPassword.BackColor = System.Drawing.Color.Transparent
Me.chkUnmaskPassword.BackColorInternal = System.Drawing.Color.Transparent
Me.chkUnmaskPassword.Location = New System.Drawing.Point(12, 211)
Me.chkUnmaskPassword.Name = "chkUnmaskPassword"
Me.chkUnmaskPassword.Size = New System.Drawing.Size(128, 22)
Me.chkUnmaskPassword.TabIndex = 2
Me.chkUnmaskPassword.Text = "Unmask Password"
'
'lblPassword
'
Me.lblPassword.AutoSize = True
Me.lblPassword.BackColor = System.Drawing.Color.Transparent
Me.lblPassword.ForeColor = System.Drawing.Color.White
Me.lblPassword.Location = New System.Drawing.Point(9, 158)
Me.lblPassword.Name = "lblPassword"
Me.lblPassword.Size = New System.Drawing.Size(66, 13)
Me.lblPassword.TabIndex = 6
Me.lblPassword.Text = "Password:"
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.BackColor = System.Drawing.Color.Transparent
Me.Label1.ForeColor = System.Drawing.Color.White
Me.Label1.Location = New System.Drawing.Point(11, 106)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(70, 13)
Me.Label1.TabIndex = 7
Me.Label1.Text = "Username:"
'
'cmdOK
'
Appearance1.BackColorAlpha = Infragistics.Win.Alpha.Transparent
Me.cmdOK.Appearance = Appearance1
Me.cmdOK.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.cmdOK.Font = New System.Drawing.Font("Verdana", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdOK.Location = New System.Drawing.Point(113, 242)
Me.cmdOK.Name = "cmdOK"
Me.cmdOK.Size = New System.Drawing.Size(99, 32)
Me.cmdOK.TabIndex = 3
Me.cmdOK.Text = "Sign In"
'
'cmdCancel
'
Appearance2.BackColorAlpha = Infragistics.Win.Alpha.Transparent
Me.cmdCancel.Appearance = Appearance2
Me.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.cmdCancel.Font = New System.Drawing.Font("Verdana", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdCancel.Location = New System.Drawing.Point(221, 242)
Me.cmdCancel.Name = "cmdCancel"
Me.cmdCancel.Size = New System.Drawing.Size(99, 32)
Me.cmdCancel.TabIndex = 4
Me.cmdCancel.Text = "&Cancel"
'
'frmLogin
'
Me.AcceptButton = Me.cmdOK
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.Color.White
Me.BackgroundImage = Global.EducationManagement.My.Resources.Resources.LoginScreen
Me.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
Me.CancelButton = Me.cmdCancel
Me.ClientSize = New System.Drawing.Size(338, 300)
Me.ControlBox = False
Me.Controls.Add(Me.cmdCancel)
Me.Controls.Add(Me.cmdOK)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.lblPassword)
Me.Controls.Add(Me.chkUnmaskPassword)
Me.Controls.Add(Me.txtPassword)
Me.Controls.Add(Me.txtUserName)
Me.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "frmLogin"
Me.ShowInTaskbar = False
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
CType(Me.EP, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents EP As System.Windows.Forms.ErrorProvider
Friend WithEvents chkUnmaskPassword As Infragistics.Win.UltraWinEditors.UltraCheckEditor
Friend WithEvents lblPassword As System.Windows.Forms.Label
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents cmdOK As Infragistics.Win.Misc.UltraButton
Friend WithEvents cmdCancel As Infragistics.Win.Misc.UltraButton
End Class
Dorababu MekaPosted Sep 15, 2010, 6:08 AM
Vikas AhlawatPosted Sep 15, 2010, 6:05 AM
But from starting i m seeing same error in these forms, they does not appear properly even once.
Dorababu MekaPosted Sep 15, 2010, 6:01 AM
One more question is that form was clear to you before you viewed means at any time did you see that form with controls or directly the form is displaying like that in the first attempt
Dorababu MekaPosted Sep 15, 2010, 5:57 AM
Vikas AhlawatPosted Sep 15, 2010, 5:55 AM
Dorababu MekaPosted Sep 15, 2010, 5:52 AM
Vikas AhlawatPosted Sep 15, 2010, 5:49 AM
Partial Class frmLibraryClearance
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Private Sub InitializeComponent()
Dim Appearance14 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance15 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance16 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance17 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance18 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance19 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance20 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance21 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance22 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance23 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance24 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance25 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim Appearance26 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmLibraryClearance))
Me.Panel1 = New System.Windows.Forms.Panel
Me.gdView = New Infragistics.Win.UltraWinGrid.UltraGrid
Me.Panel2 = New System.Windows.Forms.Panel
Me.cmdCancel = New Infragistics.Win.Misc.UltraButton
Me.lblSearchResult = New System.Windows.Forms.Label
Me.cmdSearch = New Infragistics.Win.Misc.UltraButton
Me.CboToDate = New Infragistics.Win.UltraWinEditors.UltraDateTimeEditor
Me.CboFromDate = New Infragistics.Win.UltraWinEditors.UltraDateTimeEditor
Me.Label5 = New System.Windows.Forms.Label
Me.Label4 = New System.Windows.Forms.Label
Me.txtReturnDate = New System.Windows.Forms.Label
Me.txtIssueDate = New System.Windows.Forms.Label
Me.Label2 = New System.Windows.Forms.Label
Me.cboStudentName = New System.Windows.Forms.ComboBox
Me.Label3 = New System.Windows.Forms.Label
Me.Panel1.SuspendLayout()
CType(Me.gdView, System.ComponentModel.ISupportInitialize).BeginInit()
Me.Panel2.SuspendLayout()
CType(Me.CboToDate, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.CboFromDate, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'Panel1
'
Me.Panel1.BackColor = System.Drawing.Color.Transparent
Me.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.Panel1.Controls.Add(Me.gdView)
Me.Panel1.Location = New System.Drawing.Point(14, 110)
Me.Panel1.Name = "Panel1"
Me.Panel1.Size = New System.Drawing.Size(518, 307)
Me.Panel1.TabIndex = 67
'
'gdView
'
Appearance14.BackColor = System.Drawing.SystemColors.Window
Appearance14.BorderColor = System.Drawing.SystemColors.InactiveCaption
Me.gdView.DisplayLayout.Appearance = Appearance14
Me.gdView.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid
Me.gdView.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.[False]
Appearance15.BackColor = System.Drawing.SystemColors.ActiveBorder
Appearance15.BackColor2 = System.Drawing.SystemColors.ControlDark
Appearance15.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical
Appearance15.BorderColor = System.Drawing.SystemColors.Window
Me.gdView.DisplayLayout.GroupByBox.Appearance = Appearance15
Appearance16.ForeColor = System.Drawing.SystemColors.GrayText
Me.gdView.DisplayLayout.GroupByBox.BandLabelAppearance = Appearance16
Me.gdView.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid
Appearance17.BackColor = System.Drawing.SystemColors.ControlLightLight
Appearance17.BackColor2 = System.Drawing.SystemColors.Control
Appearance17.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal
Appearance17.ForeColor = System.Drawing.SystemColors.GrayText
Me.gdView.DisplayLayout.GroupByBox.PromptAppearance = Appearance17
Me.gdView.DisplayLayout.MaxColScrollRegions = 1
Me.gdView.DisplayLayout.MaxRowScrollRegions = 1
Appearance18.BackColor = System.Drawing.SystemColors.Window
Appearance18.ForeColor = System.Drawing.SystemColors.ControlText
Me.gdView.DisplayLayout.Override.ActiveCellAppearance = Appearance18
Appearance19.BackColor = System.Drawing.SystemColors.Highlight
Appearance19.ForeColor = System.Drawing.SystemColors.HighlightText
Me.gdView.DisplayLayout.Override.ActiveRowAppearance = Appearance19
Me.gdView.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted
Me.gdView.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted
Appearance20.BackColor = System.Drawing.SystemColors.Window
Me.gdView.DisplayLayout.Override.CardAreaAppearance = Appearance20
Appearance21.BorderColor = System.Drawing.Color.Silver
Appearance21.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter
Me.gdView.DisplayLayout.Override.CellAppearance = Appearance21
Me.gdView.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText
Me.gdView.DisplayLayout.Override.CellPadding = 0
Appearance22.BackColor = System.Drawing.SystemColors.Control
Appearance22.BackColor2 = System.Drawing.SystemColors.ControlDark
Appearance22.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element
Appearance22.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal
Appearance22.BorderColor = System.Drawing.SystemColors.Window
Me.gdView.DisplayLayout.Override.GroupByRowAppearance = Appearance22
Appearance23.TextHAlignAsString = "Left"
Me.gdView.DisplayLayout.Override.HeaderAppearance = Appearance23
Me.gdView.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti
Me.gdView.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand
Appearance24.BackColor = System.Drawing.SystemColors.Window
Appearance24.BorderColor = System.Drawing.Color.Silver
Me.gdView.DisplayLayout.Override.RowAppearance = Appearance24
Me.gdView.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.[False]
Appearance25.BackColor = System.Drawing.SystemColors.ControlLight
Me.gdView.DisplayLayout.Override.TemplateAddRowAppearance = Appearance25
Me.gdView.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill
Me.gdView.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate
Me.gdView.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy
Me.gdView.Location = New System.Drawing.Point(-1, 0)
Me.gdView.Name = "gdView"
Me.gdView.Size = New System.Drawing.Size(518, 306)
Me.gdView.TabIndex = 68
Me.gdView.Text = "UltraGrid1"
'
'Panel2
'
Me.Panel2.BackColor = System.Drawing.Color.Transparent
Me.Panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.Panel2.Controls.Add(Me.cmdCancel)
Me.Panel2.Controls.Add(Me.lblSearchResult)
Me.Panel2.Controls.Add(Me.cmdSearch)
Me.Panel2.Controls.Add(Me.CboToDate)
Me.Panel2.Controls.Add(Me.CboFromDate)
Me.Panel2.Controls.Add(Me.Label5)
Me.Panel2.Controls.Add(Me.Label4)
Me.Panel2.Controls.Add(Me.txtReturnDate)
Me.Panel2.Controls.Add(Me.txtIssueDate)
Me.Panel2.Controls.Add(Me.Label2)
Me.Panel2.Controls.Add(Me.cboStudentName)
Me.Panel2.Controls.Add(Me.Label3)
Me.Panel2.Location = New System.Drawing.Point(14, 12)
Me.Panel2.Name = "Panel2"
Me.Panel2.Size = New System.Drawing.Size(518, 92)
Me.Panel2.TabIndex = 70
'
'cmdCancel
'
Me.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.cmdCancel.Location = New System.Drawing.Point(411, 40)
Me.cmdCancel.Name = "cmdCancel"
Me.cmdCancel.Size = New System.Drawing.Size(81, 25)
Me.cmdCancel.TabIndex = 71
Me.cmdCancel.Text = "&Cancel"
'
'lblSearchResult
'
Me.lblSearchResult.AutoSize = True
Me.lblSearchResult.BackColor = System.Drawing.Color.Transparent
Me.lblSearchResult.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.lblSearchResult.ForeColor = System.Drawing.Color.Blue
Me.lblSearchResult.Location = New System.Drawing.Point(307, 68)
Me.lblSearchResult.Name = "lblSearchResult"
Me.lblSearchResult.Size = New System.Drawing.Size(194, 13)
Me.lblSearchResult.TabIndex = 217
Me.lblSearchResult.Text = "0000000000 record(s) found"
Me.lblSearchResult.TextAlign = System.Drawing.ContentAlignment.MiddleRight
'
'cmdSearch
'
Appearance26.Image = CType(resources.GetObject("Appearance26.Image"), Object)
Me.cmdSearch.Appearance = Appearance26
Me.cmdSearch.Location = New System.Drawing.Point(411, 7)
Me.cmdSearch.Name = "cmdSearch"
Me.cmdSearch.Size = New System.Drawing.Size(81, 25)
Me.cmdSearch.TabIndex = 208
Me.cmdSearch.Text = "&Search"
'
'CboToDate
'
Me.CboToDate.DateTime = New Date(2007, 6, 4, 0, 0, 0, 0)
Me.CboToDate.Location = New System.Drawing.Point(138, 64)
Me.CboToDate.Name = "CboToDate"
Me.CboToDate.Size = New System.Drawing.Size(121, 22)
Me.CboToDate.TabIndex = 210
Me.CboToDate.Value = New Date(2007, 6, 4, 0, 0, 0, 0)
'
'CboFromDate
'
Me.CboFromDate.DateTime = New Date(2007, 6, 4, 0, 0, 0, 0)
Me.CboFromDate.Location = New System.Drawing.Point(138, 36)
Me.CboFromDate.Name = "CboFromDate"
Me.CboFromDate.Size = New System.Drawing.Size(121, 22)
Me.CboFromDate.TabIndex = 209
Me.CboFromDate.Value = New Date(2007, 6, 4, 0, 0, 0, 0)
'
'Label5
'
Me.Label5.AutoSize = True
Me.Label5.BackColor = System.Drawing.Color.Transparent
Me.Label5.Location = New System.Drawing.Point(107, 68)
Me.Label5.Name = "Label5"
Me.Label5.Size = New System.Drawing.Size(20, 13)
Me.Label5.TabIndex = 216
Me.Label5.Text = " :"
'
'Label4
'
Me.Label4.AutoSize = True
Me.Label4.BackColor = System.Drawing.Color.Transparent
Me.Label4.Location = New System.Drawing.Point(107, 40)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(20, 13)
Me.Label4.TabIndex = 215
Me.Label4.Text = " :"
'
'txtReturnDate
'
Me.txtReturnDate.AutoSize = True
Me.txtReturnDate.BackColor = System.Drawing.Color.Transparent
Me.txtReturnDate.ForeColor = System.Drawing.SystemColors.ControlText
Me.txtReturnDate.Location = New System.Drawing.Point(14, 68)
Me.txtReturnDate.Name = "txtReturnDate"
Me.txtReturnDate.Size = New System.Drawing.Size(60, 13)
Me.txtReturnDate.TabIndex = 214
Me.txtReturnDate.Text = "To Date "
'
'txtIssueDate
'
Me.txtIssueDate.AutoSize = True
Me.txtIssueDate.BackColor = System.Drawing.Color.Transparent
Me.txtIssueDate.ForeColor = System.Drawing.SystemColors.ControlText
Me.txtIssueDate.Location = New System.Drawing.Point(14, 40)
Me.txtIssueDate.Name = "txtIssueDate"
Me.txtIssueDate.Size = New System.Drawing.Size(71, 13)
Me.txtIssueDate.TabIndex = 213
Me.txtIssueDate.Text = "From Date "
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.BackColor = System.Drawing.Color.Transparent
Me.Label2.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label2.ForeColor = System.Drawing.Color.Black
Me.Label2.Location = New System.Drawing.Point(117, 12)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(12, 13)
Me.Label2.TabIndex = 212
Me.Label2.Text = ":"
Me.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight
'
'cboStudentName
'
Me.cboStudentName.FormattingEnabled = True
Me.cboStudentName.Location = New System.Drawing.Point(138, 9)
Me.cboStudentName.Name = "cboStudentName"
Me.cboStudentName.Size = New System.Drawing.Size(254, 21)
Me.cboStudentName.TabIndex = 207
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.BackColor = System.Drawing.Color.Transparent
Me.Label3.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label3.ForeColor = System.Drawing.SystemColors.ControlText
Me.Label3.Location = New System.Drawing.Point(14, 12)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(88, 13)
Me.Label3.TabIndex = 211
Me.Label3.Text = "Student Name"
Me.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight
'
'frmLibraryClearance
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackgroundImage = Global.EducationManagement.My.Resources.Resources.TopRightCurveLightGreen
Me.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
Me.CancelButton = Me.cmdCancel
Me.ClientSize = New System.Drawing.Size(544, 430)
Me.ControlBox = False
Me.Controls.Add(Me.Panel2)
Me.Controls.Add(Me.Panel1)
Me.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.Name = "frmLibraryClearance"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Library Clearance"
Me.Panel1.ResumeLayout(False)
CType(Me.gdView, System.ComponentModel.ISupportInitialize).EndInit()
Me.Panel2.ResumeLayout(False)
Me.Panel2.PerformLayout()
CType(Me.CboToDate, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.CboFromDate, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
End Sub
Friend WithEvents Panel1 As System.Windows.Forms.Panel
Friend WithEvents Panel2 As System.Windows.Forms.Panel
Friend WithEvents lblSearchResult As System.Windows.Forms.Label
Friend WithEvents cmdSearch As Infragistics.Win.Misc.UltraButton
Friend WithEvents CboToDate As Infragistics.Win.UltraWinEditors.UltraDateTimeEditor
Friend WithEvents CboFromDate As Infragistics.Win.UltraWinEditors.UltraDateTimeEditor
Friend WithEvents Label5 As System.Windows.Forms.Label
Friend WithEvents Label4 As System.Windows.Forms.Label
Friend WithEvents txtReturnDate As System.Windows.Forms.Label
Friend WithEvents txtIssueDate As System.Windows.Forms.Label
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents cboStudentName As System.Windows.Forms.ComboBox
Friend WithEvents Label3 As System.Windows.Forms.Label
Friend WithEvents gdView As Infragistics.Win.UltraWinGrid.UltraGrid
Friend WithEvents cmdCancel As Infragistics.Win.Misc.UltraButton
End Class
Vikas AhlawatPosted Sep 15, 2010, 5:45 AM
in .designer.cs file line4 is blank line.
Dorababu MekaPosted Sep 15, 2010, 5:41 AM