Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a
null
check for the DataGridView
instance before calling the…
… `NotifyMSAAClient` method. Fixes #12752 ## Root Cause - The issue occurs because the `NotifyMSAAClient` method is called without checking if the `DataGridView` instance is `null`. This leads to a potential `NullReferenceException`. ## Proposed changes - Add a `null` check for the `DataGridView` instance before calling the `NotifyMSAAClient` method. ## Customer Impact - Prevents runtime crashes when the `DataGridView` is `null`. ## Regression? - No ## Risk - Minimal ## Screenshots ### Before ### After ## Test methodology - Manual testing ## Test environment(s) - `10.0.100-alpha.1.25064.3`
- Loading branch information