Search found 8 matches

by bush3102
Tue Aug 18, 2020 11:58 am
Forum: PowerShell
Topic: Refresh listview data on a button click
Replies: 2
Views: 2334

Re: Refresh listview data on a button click

I ended up adding

Code: Select all

$listview1.Items.Clear()
before the function was called to clear out the items from the List View

Code: Select all

$button1_Click={
	#TODO: Place custom script here
	$listview1.Items.Clear()
	Get-DBlist -DBSearch $global:DBName
}
by bush3102
Tue Aug 18, 2020 11:52 am
Forum: Feedback
Topic: Forums Answer Flag
Replies: 2
Views: 13858

Forums Answer Flag

In the forums, would it be possible to put a flag somewhere in the responses to a post as an indicator that this particular response answered my question. Also, potentially add an "up vote" for comment.
by bush3102
Tue Aug 18, 2020 11:36 am
Forum: PowerShell
Topic: Refresh listview data on a button click
Replies: 2
Views: 2334

Refresh listview data on a button click

I am using the following script, when I click on a button to run a SQL query (searching based on a text box), I have the results sent to a List View. When I change what is in the text box and click the button again, the results are added to the bottom of the previous list. When I add "-Clear&qu...
by bush3102
Wed Aug 12, 2020 10:03 am
Forum: PowerShell
Topic: Unable to find type [System Web Security Membership]
Replies: 3
Views: 5844

Re: Unable to find type [System Web Security Membership]

PowerShell 7 does not support subsystems that are Windows only and should not be used except when it is necessary to run code on non-windows systems. The module will never be available on non-windows systems due to architecture differences and products. This module is for IIS and SharePoint only. I...
by bush3102
Mon Aug 10, 2020 11:35 am
Forum: PowerShell
Topic: Unable to find type [System Web Security Membership]
Replies: 3
Views: 5844

Re: Unable to find type [System Web Security Membership]

System.Web.DLL is not part of .NetCore and will not work with Powershell 7. So I have to create my own password generator.
by bush3102
Mon Aug 10, 2020 11:19 am
Forum: PowerShell
Topic: Unable to find type [System Web Security Membership]
Replies: 3
Views: 5844

Unable to find type [System Web Security Membership]

Powershell Studio Version: 2020 Powershell version: 7 - 64 bit I have a button that I want to generate a random password using the following code that will show the password in a textbox for the user to see. However, when I run the script I get the following error message: Unable to find type (perio...
by bush3102
Mon Aug 10, 2020 11:15 am
Forum: PowerShell
Topic: Problem posting a problem
Replies: 1
Views: 1174

Re: Problem posting a problem

Powershell Studio Version: 2020 Powershell version: 7 - 64 bit I have a button that I want to generate a random password using the following code that will show the password in a textbox for the user to see. However, when I run the script I get the following error message: Unable to find type (perio...
by bush3102
Mon Aug 10, 2020 11:12 am
Forum: PowerShell
Topic: Problem posting a problem
Replies: 1
Views: 1174

Problem posting a problem

I am trying to post a new topic with some Powershell code in it, but I get the following message when trying to preview my message. I don't have any external links in my question, just the script I have a question about. Sorry. You need to have made a minimum of 5 posts before you can include extern...