WinFormPS
WinFormPS copied to clipboard
PowerShell functions for Windows Forms controls
The function help examples for the majority of the examples are really hard to follow. The function help examples should leverage examples that the consumers can easily plug in and...
``` PARAMETER FindingColumns Specifies the column(s) to search Value or NotValue PARAMETER NotValue Specifies the value to not match in all column (param FindingColumns is recomanded) ```
``` function Find-DataGridViewValue { # https://github.com/lazywinadmin/WinFormPS/blob/master/WinFormPS.psm1 Find-DataGridViewValue -DataGridView $datagridview1 -Value $textbox1.Text This will find the value and select the cell(s) .EXAMPLE PS C:\> Find-DataGridViewValue -DataGridView $datagridview1 -Value $textbox1.Text -RowForeColor 'Red'...