WinFormPS icon indicating copy to clipboard operation
WinFormPS copied to clipboard

PowerShell functions for Windows Forms controls

Results 3 WinFormPS issues
Sort by recently updated
recently updated
newest added

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'...