Search found 103 matches

by lontru
Mon Mar 25, 2019 1:24 am
Forum: PowerShell GUIs
Topic: Ping/Tracert Gui - responsive forms
Replies: 4
Views: 1703

Re: Ping/Tracert Gui - responsive forms

I have tried the sample code from the blog and it works but my brain can gasp it. So i created a simple form and added the custom control "Button - Start Job" https://i.imgur.com/g4tMkah.png $buttonStartJob_Click={ $buttonStartJob.Enabled = $false #Create a New Job using the Job Tracker Ad...
by lontru
Mon Mar 25, 2019 12:57 am
Forum: PowerShell GUIs
Topic: Marquee - progress bar how to use it?
Replies: 6
Views: 7778

Re: Marquee - progress bar how to use it?

Is this where you are refering to? i only have these?
Image
by lontru
Mon Mar 25, 2019 12:39 am
Forum: PowerShell GUIs
Topic: Marquee - progress bar how to use it?
Replies: 6
Views: 7778

Re: Marquee - progress bar how to use it?

is there a download link for the sample showed in the blog?

The code behind this form?
Image
by lontru
Mon Mar 25, 2019 12:34 am
Forum: PowerShell GUIs
Topic: Ping/Tracert Gui - responsive forms
Replies: 4
Views: 1703

Ping/Tracert Gui - responsive forms

Hi I want to create a responsive form so the gui doesnt freeze when used as sample i want to create a gui where you type in a device/hostname. And then you can ping and tracert without locking the gui at the same time is this possible at all before i continue this? https://i.imgur.com/5oEZUqZ.png So...
by lontru
Thu Mar 14, 2019 3:37 am
Forum: PowerShell GUIs
Topic: Marquee - progress bar how to use it?
Replies: 6
Views: 7778

Marquee - progress bar how to use it?

https://info.sapien.com/index.php/guis/gui-controls/spotlight-on-the-progressbar-control I have a loop that run when i press a button until a condition is meet. so i want to use the Marquee animation but i cant figure out how to use it? Marquee Indicates progress by continuously scrolling a block ac...
by lontru
Sun Jan 27, 2019 1:55 pm
Forum: PowerShell GUIs
Topic: Get cell content before removing ? datagridview1.Rows.Remove
Replies: 6
Views: 1921

Re: Get cell content before removing ? datagridview1.Rows.Remove

$buttonColumns_Click={ $datagridview1.SelectedRows | ForEach-Object{ Write-Host ('{0}|{1}|{2}' -f ($_.Cells['name'].Value),($_.Cells['length'].Value), ($_.Cells['Fullname'].Value)) } } I can use above code to export the selected row to a log or csv file - so if the user want to undo the delete i ca...
by lontru
Sun Jan 27, 2019 12:31 pm
Forum: PowerShell GUIs
Topic: Get cell content before removing ? datagridview1.Rows.Remove
Replies: 6
Views: 1921

Re: Get cell content before removing ? datagridview1.Rows.Remove

how do i export selected rows as to an csv file?
by lontru
Sun Jan 27, 2019 2:38 am
Forum: PowerShell GUIs
Topic: Get cell content before removing ? datagridview1.Rows.Remove
Replies: 6
Views: 1921

Get cell content before removing ? datagridview1.Rows.Remove

Hi SAPIANS, I want to log what get removed from the gridview I have this for deleting selected rows $button_Remove_Click={ $datagridview1.SelectedRows | ForEach-Object { $datagridview1.Rows.Remove($_) log -message "$_" } } How do i get each cell content value so i can log it to the log. li...
by lontru
Mon Jan 14, 2019 1:23 pm
Forum: PowerShell Studio
Topic: Find/Replace function - how to clear the mark again?
Replies: 2
Views: 1475

Find/Replace function - how to clear the mark again?

Powershell Studio 2017

I have used the Find/Replace tool and pressed Mark all

How do i clear does marks again? red tags at the line numbers?
marks_all.PNG
marks_all.PNG (35.62 KiB) Viewed 1475 times