Replies
This now works properly without exception.
I have another issue but will create another post for it because it is specific only to the latest 22.1 version I believe, and it is also unrelated to this issue.
Thanks so much for your help Andrew!!
Hi Andrew,
I am sorry for the delay I was battling covid and was not able to get back to this for a while.
Your response and assistance has been tremendous and greatly appreciated.
I did check out and run your code and there is a lot less going on there than in the code that I had.
Hopefully I can do more with less.
I was able to add a brand new grid from the toolbox for version 22.1 and that allows me to add new rows and select the value which adds a new row to the the grid as well as the datasource without throwing exceptions.
If I need to update other fields in the datasource which event would I do that in?
I am still trying to work that out.
Would it be while the grid is still in edit mode?
For example the user selects a voting member on a new row from the dropdown.
I need to update that voting member's User ID in the datasource (and other fields as listed below).
This field is in the datasource but not displayed, it is hidden in the grid.
If I can accomplish this without an exception (I am not getting an exception yet), then I will be able to complete the rest of what I need to do?
The dataset consists of the following:
Column 0 : Details_Id : displayed with a button to be used to remove an existing member from the grid/datasource
Column 1 : Company_Number : hidden column but needs to be populated as an integer
Column 2 : Spa_Id: hidden column but needs to be populated as a string
Column 3 : Voting_Member : displayed with a dropdown populated by a ValueList to select from a list of names
Column 4 : Voting_Member_Id : hidden column but needs to be populated after selection as a string
Column 5 : Conflict : displayed with a dropdown populated by a ValueList of blank, Yes, and No
Column 6 : Accept_Outcome : displayed with a dropdown populated by a ValueList of blank, Yes, and No
Column 7 : Line_Number : displayed with a dropdown to store the line number in the grid so the user can choose a different line number to move members around in the grid
Column 8 : Tally_Type : displayed with a button to be used to resort the members in the grid according to their line number values but the datasource for this column needs to be populated with a value from outside the grid as an integer
The user can be able to select and add multiple members to the grid without saving.
Saving will save the values to the database. That I can handle.
I have all this in place correctly I believe but I just need to be able to update these fields accordingly when adding the value to the grid on a new selection.
Thanks for your help!
Hi Andrew,
In unzipped and compiled your solution and ran it.
I don't remember how C# handles things, (been a long time that I have been working with VB),
however in the version of Infragistics that I am using I noticed that when I select the Ultra Grid control there are 200 events you could code for.
When I try to see how many events are available in your C# code I can only see the 3 handlers you created.
I did also notice that the version numbers were slightly off from what I downloaded from the Infragistics site.
Would this have anything do with the exception I am getting?
In my license file I have the following:
Infragistics.Win.UltraWinGrid.UltraGrid, Infragistics4.Win.UltraWinGrid.v21.2, Version=21.2.20212.46, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb
Conversely in your license file you have the following:
Infragistics.Win.UltraWinGrid.UltraGrid, Infragistics4.Win.UltraWinGrid.v22.1, Version=22.1.20221.33, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb
I always have a new row that the user can select a value from any dropdown and as soon as they do that the _CellChange event is fired and as soon as it leaves that event it throws the exception.
In your code you don't have a way of doing that.
The only time you won't see the new row is when it disappears when the grid is switched into edit mode and then when it finishes being in edit mode the new row is added to the existing list in the grid and a new add new row appears.
I believe that when the user selects a value in the dropdown in any of the cells, the _CellChange event is triggered.
The selected value is added to a new row in the datasource and the OnSelectionCommitted event of the dropdown in the cell is triggered.
If the row is new, and not the first row in the grid, it throws the exception.
If it is an existing row in the grid where you are just selecting a different value then there is no exception thrown.
If there was no value there but it is an existing row in the grid it also does not throw the exception.
Am I not using the correct version for 21.2, you said that the latest version is 22.1, so should I be using that?
The Target Framework of our solution is .Net 4.5 and I am using Visual Studio 2019 and VB .Net if that matters.
*** I just noticed that the license file in the solution is using the following:
Infragistics.Win.UltraWinGrid.UltraGrid, Infragistics4.Win.UltraWinGrid.v14.2, Version=14.2.20142.1000, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb
I will remove that and see if that makes a difference!
Again I am so thankful for your assistance with this issue.
Hi Andrew,
I will try to see if I can get any info. from the modules window, thanks.
UPDATE:
This is what it shows as the path for the dll:
C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Win.UltraWinGrid.v21.2\v4.0_21.2.20212.46__7dd5c3163f2cd0cb\Infragistics4.Win.UltraWinGrid.v21.2.dll
This is going to get detailed, but I hope it helps to explain things better.
When the grid first loads if there are no associated records and the grid appears with the new row empty row in the grid.
When you select any of the dropdowns the values are displayed and you can choose a value.
It could be the Members or the Yes/No values or a number depending on the cell you choose in the grid.
If there are existing associated records then the grid displays those rows and a new row below it so that you can choose a value in any of the cells of the new row.
You could also change any existing values in the existing rows.
Only the newly added row (after the first one is set) will produce the exception when selected.
So the 2nd and then consecutively after that will produce the exception but not the first.
I use the DataTable in a dataset to populate a DataView to be sorted and filtered.
This is used as the DataSource for the BindingSource and this is used as the DataSource of the grid.
_dvVSMemberGrid = New Data.DataView(_dsVoteSheetData_Original.Tables("SPA_VOTE_SHEETS_DETAILS"))
_dvVSMemberGrid.Sort = "LINE_NO ASC"
_dvVSMemberGrid.RowFilter = "TALLY_TYPE = " & _iSelectedTallyType
_bindDSFromSelectedTallyDetails.DataSource = _dvVSMemberGrid
UltraGridVSVotingMembers.DataSource = _bindDSFromSelectedTallyDetails
I define the ValueList objects to use in the dropdowns in the cells.
Dim vlVotingMembers As ValueList = CreateDataSource_For_MembersGrid()
Dim vlYesNo As ValueList = New ValueList()
vlYesNo.ValueListItems.Add("", "")
vlYesNo.ValueListItems.Add("Yes", "Yes")
vlYesNo.ValueListItems.Add("No", "No")
Dim vlLineNumbers As ValueList = New ValueList()
For iLines = 0 To 19
vlLineNumbers.ValueListItems.Add(iLines, iLines.ToString)
Next
Then on the form load and when I need to reload the form I assign them to the ValueList of the dropdown in the cell.
'This is just a list of full names to select.
UltraGridVSVotingMembers.DisplayLayout.Bands(0).Columns(3).Style = ColumnStyle.DropDownList ' VOTING_MEMBER
UltraGridVSVotingMembers.DisplayLayout.Bands(0).Columns(3).ValueList = vlVotingMembers
UltraGridVSVotingMembers.DisplayLayout.Bands(0).Columns(3).ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always
UltraGridVSVotingMembers.DisplayLayout.Bands(0).Columns(3).Header.Caption = "Voting Member"
UltraGrid_ComboEditor_Members.ValueList = vlVotingMembers
' This is used for both the Conflict and Accept Outcome cells – only displaying Conflict here for space puposes.
UltraGridVSVotingMembers.DisplayLayout.Bands(0).Columns(5).Style = ColumnStyle.DropDownList ' CONFLICT
UltraGridVSVotingMembers.DisplayLayout.Bands(0).Columns(5).ValueList = vlYesNo
UltraGridVSVotingMembers.DisplayLayout.Bands(0).Columns(5).ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always
UltraGridVSVotingMembers.DisplayLayout.Bands(0).Columns(5).Header.Caption = "Conflict"
' This is for the line numbers that the user can choose to move members around where they want in the grid.
UltraGridVSVotingMembers.DisplayLayout.Bands(0).Columns(7).Style = ColumnStyle.DropDownList ' LINE_NO
UltraGridVSVotingMembers.DisplayLayout.Bands(0).Columns(7).ValueList = vlLineNumbers
UltraGridVSVotingMembers.DisplayLayout.Bands(0).Columns(7).Header.Caption = "Line Number"
' In the grid's CellUpdate event CellEventArgs is passed in as the variable e.
e.Cell.Row.Update is called and that calls AfterCellUpdate
Once it returns back to CellUpdate and that e.Cell.Row.Update statement, I have to populate some values on the dataobject key fields and things.
The user may not save right away so I have to make sure the record from a data perspective is as complete as possible.
Then I reset the DataSource by creating a new DataView object from the same table and at this point I can see the new record with the values added.
_dvVSMemberGrid = New Data.DataView(_dsVoteSheetData_Original.Tables("SPA_VOTE_SHEETS_DETAILS"))
_dvVSMemberGrid.Sort = "LINE_NO ASC"
_dvVSMemberGrid.RowFilter = "TALLY_TYPE = " & _iSelectedTallyType
_bindDSFromSelectedTallyDetails.DataSource = _dvVSMemberGrid
Then after it leaves the CellUpdate method that is where the exception seems to occur.
- Hi Andrew,
I copied and pasted the solution folder and all of its contents into another folder and from that I removed the Infragistics reference completely from the NuGet package in the solution and added the reference to each of the 21.2 Infragistics dlls to the form references. There were no compilation errors. I did a clean build and a rebuild of the solution. I am getting the exact same error with the same results. If I click continue everything seems to be fine and working as expected but I still get the exception:
- System.NullReferenceException: Object reference not set to an instance of an object.
at Infragistics.Win.EditorWithCombo.Infragistics.Win.IValueListOwner.OnSelectionChangeCommitted()I can change the values of any other cell's dropdowns for preexisting records, but when I select any of the dropdowns on a record that does not exist yet, then I get that same exception.
- I have 6 visible columns consisting of 2 buttons and 4 dropdowns.
1 is populated with names, 2 are blank/yes/no and 1 is numbers from 0 to 19.We have a folder in the project called Components, pre-NuGet configuration we had all of our dlls in this folder. I had both 14.2 and 21.2 Infragistic dlls so I deleted all the 14.2 Infragistic dlls from this folder and tried all the aforementioned steps again.
The result unfortunately was the same.I just had a thought that I will try to delete the current grid and now re-add it from the 21.2 library.
Does it hold onto the version that it was created from somewhere?
I will report my results probably Monday.
Thanks so much for your reply Andrew, I will verify that and setup using version 21.2. I thought I tried this but will give it another try and let you know what I find out.
I will also let my team know about the Nuget packages.
Hi Andrew,
Thanks so much!
I am really desperate here.
You are correct It is probably not THE latest version but I think we went from version 14.2 to 21.2.
Is there a definitive way to determine exactly what dll is being used?
One of our other developers (used to be my boss) created a NuGet package to use which comprises all the Infragistics tools we reference.
I am unfortunately the lower cog in the wheel here.
Is there a NuGet package that I should be using?
This is a piece of a very large application with other 3rd party tools.
See below for the entire exception contents:
Thanks,
Mickey Manganelli
Senior Programmer Analyst – BCRS (Best's Credit Rating System)
Ambest Road, Oldwick, NJ, 08858, USA
E-mail: Mickey.Manganelli@ambest.com
************** Exception Text **************
System.NullReferenceException: Object reference not set to an instance of an object.
at Infragistics.Win.EditorWithCombo.Infragistics.Win.IValueListOwner.OnSelectionChangeCommitted()
at Infragistics.Win.ValueList.ProcessSelectionChangeCommitted()
at Infragistics.Win.ValueListDropDown.SelectItemByMouse(ValueListItem valueListItem)
at Infragistics.Win.ValueListDropDown.OnMouseUp(MouseEventArgs e)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
************** Loaded Assemblies **************
mscorlib
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4420.0 built by: NET48REL1LAST_C
CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
----------------------------------------
BCRS
Assembly Version: 9.2.0.13
Win32 Version: 9.2.0.13
CodeBase: file:///C:/Azure_DevOps/BCRSMickeyLocal/Mickey1/Components/BCRS.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4400.0 built by: NET48REL1LAST_C
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4360.0 built by: NET48REL1LAST_C
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4390.0 built by: NET48REL1LAST_C
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
DevComponents.DotNetBar2
Assembly Version: 14.0.0.19
Win32 Version: 14.0.0.19
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/DevComponents.DotNetBar2/14.0.0.19__7eb7c3a35b91de04/DevComponents.DotNetBar2.dll
----------------------------------------
System.Configuration
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4190.0 built by: NET48REL1LAST_B
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Core
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4455.0 built by: NET48REL1LAST_C
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Xml
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4084.0 built by: NET48REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
Oracle.DataAccess
Assembly Version: 4.121.2.0
Win32 Version: 4.121.2.0
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_64/Oracle.DataAccess/v4.0_4.121.2.0__89b483f429c47342/Oracle.DataAccess.dll
----------------------------------------
System.Data
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4455.0 built by: NET48REL1LAST_C
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_64/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
System.Transactions
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4084.0 built by: NET48REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_64/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll
----------------------------------------
Microsoft.VisualBasic
Assembly Version: 10.0.0.0
Win32 Version: 14.8.4084.0 built by: NET48REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
----------------------------------------
AMBExceptionHandler
Assembly Version: 3.0.0.1
Win32 Version: 3.0.0.1
CodeBase: file:///C:/Azure_DevOps/BCRSMickeyLocal/Mickey1/Components/AMBExceptionHandler.DLL
----------------------------------------
System.EnterpriseServices
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4084.0 built by: NET48REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_64/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
----------------------------------------
Accessibility
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4084.0 built by: NET48REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
----------------------------------------
DataMgr
Assembly Version: 3.0.0.1
Win32 Version: 3.0.0.1
CodeBase: file:///C:/Azure_DevOps/BCRSMickeyLocal/Mickey1/Components/DataMgr.DLL
----------------------------------------
modFunctions
Assembly Version: 1.0.1679.17035
Win32 Version: 1.0.1679.17035
CodeBase: file:///C:/Azure_DevOps/BCRSMickeyLocal/Mickey1/Components/modFunctions.DLL
----------------------------------------
System.Data.Entity
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4084.0 built by: NET48REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Data.Entity/v4.0_4.0.0.0__b77a5c561934e089/System.Data.Entity.dll
----------------------------------------
System.Numerics
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4084.0 built by: NET48REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Numerics/v4.0_4.0.0.0__b77a5c561934e089/System.Numerics.dll
----------------------------------------
BCRSCore
Assembly Version: 3.0.0.2
Win32 Version: 3.0.0.2
CodeBase: file:///C:/Azure_DevOps/BCRSMickeyLocal/Mickey1/Components/BCRSCore.DLL
----------------------------------------
BCRSDatabase
Assembly Version: 3.0.0.1
Win32 Version: 3.0.0.0
CodeBase: file:///C:/Azure_DevOps/BCRSMickeyLocal/Mickey1/Components/BCRSDatabase.DLL
----------------------------------------
TXTextControl.Windows.Forms
Assembly Version: 25.0.1000.500
Win32 Version: 25.0.1002.500
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/TXTextControl.Windows.Forms/v4.0_25.0.1000.500__6b83fe9a75cfb638/TXTextControl.Windows.Forms.dll
----------------------------------------
TXTextControl
Assembly Version: 25.0.1800.500
Win32 Version: 25.0.1802.500
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/TXTextControl/v4.0_25.0.1800.500__6b83fe9a75cfb638/TXTextControl.dll
----------------------------------------
System.Data.DataSetExtensions
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4084.0 built by: NET48REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Data.DataSetExtensions/v4.0_4.0.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll
----------------------------------------
C1.Win.C1Spell
Assembly Version: 1.2.20023.29
Win32 Version: 1.2.20033.37
CodeBase: file:///C:/Azure_DevOps/BCRSMickeyLocal/Mickey1/Components/C1.Win.C1Spell.DLL
----------------------------------------
Infragistics4.Win.v14.2
Assembly Version: 14.2.20142.1000
Win32 Version: 14.2.20142.1000
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Infragistics4.Win.v14.2/v4.0_14.2.20142.1000__7dd5c3163f2cd0cb/Infragistics4.Win.v14.2.dll
----------------------------------------
Infragistics4.Shared.v14.2
Assembly Version: 14.2.20142.1000
Win32 Version: 14.2.20142.1000
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Infragistics4.Shared.v14.2/v4.0_14.2.20142.1000__7dd5c3163f2cd0cb/Infragistics4.Shared.v14.2.dll
----------------------------------------
Infragistics4.Win.UltraWinGrid.DocumentExport.v14.2
Assembly Version: 14.2.20142.1000
Win32 Version: 14.2.20142.1000
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Infragistics4.Win.UltraWinGrid.DocumentExport.v14.2/v4.0_14.2.20142.1000__7dd5c3163f2cd0cb/Infragistics4.Win.UltraWinGrid.DocumentExport.v14.2.dll
----------------------------------------
Infragistics4.Documents.Reports.v14.2
Assembly Version: 14.2.20142.1000
Win32 Version: 14.2.20142.1000
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Infragistics4.Documents.Reports.v14.2/v4.0_14.2.20142.1000__7dd5c3163f2cd0cb/Infragistics4.Documents.Reports.v14.2.dll
----------------------------------------
Infragistics4.Win.UltraWinGrid.ExcelExport.v14.2
Assembly Version: 14.2.20142.1000
Win32 Version: 14.2.20142.1000
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Infragistics4.Win.UltraWinGrid.ExcelExport.v14.2/v4.0_14.2.20142.1000__7dd5c3163f2cd0cb/Infragistics4.Win.UltraWinGrid.ExcelExport.v14.2.dll
----------------------------------------
Infragistics4.Documents.Excel.v14.2
Assembly Version: 14.2.20142.1000
Win32 Version: 14.2.20142.1000
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Infragistics4.Documents.Excel.v14.2/v4.0_14.2.20142.1000__7dd5c3163f2cd0cb/Infragistics4.Documents.Excel.v14.2.dll
----------------------------------------
Infragistics4.Win.UltraWinEditors.v14.2
Assembly Version: 14.2.20142.1000
Win32 Version: 14.2.20142.1000
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Infragistics4.Win.UltraWinEditors.v14.2/v4.0_14.2.20142.1000__7dd5c3163f2cd0cb/Infragistics4.Win.UltraWinEditors.v14.2.dll
----------------------------------------
Infragistics4.Win.UltraWinGrid.v14.2
Assembly Version: 14.2.20142.1000
Win32 Version: 14.2.20142.1000
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Infragistics4.Win.UltraWinGrid.v14.2/v4.0_14.2.20142.1000__7dd5c3163f2cd0cb/Infragistics4.Win.UltraWinGrid.v14.2.dll
----------------------------------------
UIAutomationProvider
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4455.0 built by: NET48REL1LAST_C
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/UIAutomationProvider/v4.0_4.0.0.0__31bf3856ad364e35/UIAutomationProvider.dll
----------------------------------------
Infragistics4.Win.Misc.v14.2
Assembly Version: 14.2.20142.1000
Win32 Version: 14.2.20142.1000
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Infragistics4.Win.Misc.v14.2/v4.0_14.2.20142.1000__7dd5c3163f2cd0cb/Infragistics4.Win.Misc.v14.2.dll
----------------------------------------
Infragistics4.Win.UltraWinSpellChecker.v14.2
Assembly Version: 14.2.20142.1000
Win32 Version: 14.2.20142.1000
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Infragistics4.Win.UltraWinSpellChecker.v14.2/v4.0_14.2.20142.1000__7dd5c3163f2cd0cb/Infragistics4.Win.UltraWinSpellChecker.v14.2.dll
----------------------------------------
UIAutomationTypes
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4455.0 built by: NET48REL1LAST_C
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/UIAutomationTypes/v4.0_4.0.0.0__31bf3856ad364e35/UIAutomationTypes.dll
----------------------------------------
VistaButton
Assembly Version: 1.0.3408.12365
Win32 Version: 1.0.0.0
CodeBase: file:///C:/Azure_DevOps/BCRSMickeyLocal/Mickey1/Components/VistaButton.DLL
----------------------------------------
Infragistics4.Win.UltraWinDataSource.v14.2
Assembly Version: 14.2.20142.1000
Win32 Version: 14.2.20142.1000
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Infragistics4.Win.UltraWinDataSource.v14.2/v4.0_14.2.20142.1000__7dd5c3163f2cd0cb/Infragistics4.Win.UltraWinDataSource.v14.2.dll
----------------------------------------
TXSpell.Windows.Forms
Assembly Version: 7.0.600.500
Win32 Version: 7.0.600.500
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/TXSpell.Windows.Forms/v4.0_7.0.600.500__6b83fe9a75cfb638/TXSpell.Windows.Forms.dll
----------------------------------------
TXSpell
Assembly Version: 7.0.600.500
Win32 Version: 7.0.600.500
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/TXSpell/v4.0_7.0.600.500__6b83fe9a75cfb638/TXSpell.dll
----------------------------------------
AMBest_Text_Editor
Assembly Version: 3.0.0.1
Win32 Version: 3.0.0.1
CodeBase: file:///C:/Azure_DevOps/BCRSMickeyLocal/Mickey1/Components/AMBest_Text_Editor.DLL
----------------------------------------
TXDocumentServer
Assembly Version: 25.0.1100.500
Win32 Version: 25.0.1102.500
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/TXDocumentServer/v4.0_25.0.1100.500__6b83fe9a75cfb638/TXDocumentServer.dll
----------------------------------------
TXDrawing
Assembly Version: 25.0.300.500
Win32 Version: 25.0.300.500
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/TXDrawing/v4.0_25.0.300.500__6b83fe9a75cfb638/TXDrawing.dll
----------------------------------------
TXDocumentServer.Windows.Forms
Assembly Version: 25.0.800.500
Win32 Version: 25.0.802.500
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/TXDocumentServer.Windows.Forms/v4.0_25.0.800.500__6b83fe9a75cfb638/TXDocumentServer.Windows.Forms.dll
----------------------------------------
System.Web
Assembly Version: 4.0.0.0
Win32 Version: 4.8.4465.0 built by: NET48REL1LAST_B
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_64/System.Web/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Web.dll
----------------------------------------
C1.Win.C1SpellChecker.2
Assembly Version: 2.0.20121.104
Win32 Version: 2.0.20121.104
CodeBase: file:///C:/Azure_DevOps/BCRSMickeyLocal/Mickey1/Components/C1.Win.C1SpellChecker.2.DLL
----------------------------------------
txtools
Assembly Version: 25.0.800.500
Win32 Version: 25.0.801.500
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_64/txtools/v4.0_25.0.800.500__6b83fe9a75cfb638/txtools.dll
----------------------------------------
Microsoft.VisualStudio.Debugger.Runtime.Desktop
Assembly Version: 16.0.0.0
Win32 Version: 16.10.10610.2
CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Visual%20Studio/2019/Professional/Common7/IDE/Remote%20Debugger/x64/Runtime/Microsoft.VisualStudio.Debugger.Runtime.Desktop.dll
----------------------------------------
Infragistics4.Win.SupportDialogs.v14.2
Assembly Version: 14.2.20142.1000
Win32 Version: 14.2.20142.1000
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Infragistics4.Win.SupportDialogs.v14.2/v4.0_14.2.20142.1000__7dd5c3163f2cd0cb/Infragistics4.Win.SupportDialogs.v14.2.dll
----------------------------------------
TXTextControl.Server
Assembly Version: 25.0.1000.500
Win32 Version: 25.0.1002.500
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/TXTextControl.Server/v4.0_25.0.1000.500__6b83fe9a75cfb638/TXTextControl.Server.dll
----------------------------------------
Microsoft.VisualStudio.DebuggerVisualizers
Assembly Version: 16.0.0.0
Win32 Version: 16.0.40501.4
CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Visual%20Studio/2019/Professional/Common7/Packages/Debugger/Visualizers/netstandard2.0/Microsoft.VisualStudio.DebuggerVisualizers.dll
----------------------------------------
netstandard
Assembly Version: 2.0.0.0
Win32 Version: 4.8.4084.0
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/netstandard/v4.0_2.0.0.0__cc7b13ffcd2ddd51/netstandard.dll
----------------------------------------
DataSetVisualizer.DebuggeeSide
Assembly Version: 16.0.0.0
Win32 Version: 16.0.40501.4
CodeBase: file:///C:/Program%20Files%20(x86)/Microsoft%20Visual%20Studio/2019/Professional/Common7/Packages/Debugger/Visualizers/netstandard2.0/DataSetVisualizer.DebuggeeSide.DLL
----------------------------------------
************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.
For example:
When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.