Search found 5 matches

by Filters
Mon Jan 21, 2019 12:06 pm
Forum: PowerShell GUIs
Topic: little bit of value passing to form
Replies: 3
Views: 1582

Re: little bit of value passing to form

maybe this will sound stupid question but i'm new to powershell
but from otherside?

Code: Select all

Call-AddEmployeeForm_psf $p1.text,
					  $p2.text,
					  $p3.text
something like that?
by Filters
Mon Jan 21, 2019 6:28 am
Forum: PowerShell GUIs
Topic: little bit of value passing to form
Replies: 3
Views: 1582

little bit of value passing to form

hi i'm having problem with multiple value passing to new form
with one value there is no problem but how to pass 2-3-5 different values to new form

Code: Select all

(Show-Domain_Users_psf $select_domain.Text)

Code: Select all

param ($domain_selected)
but how to pass multiple values to new form :|
by Filters
Wed Nov 28, 2018 3:25 am
Forum: PowerShell
Topic: add property from sql data
Replies: 3
Views: 2031

Re: add property from sql data

ty for help you saved me a lot of time ;)
by Filters
Wed Nov 28, 2018 2:13 am
Forum: PowerShell
Topic: add property from sql data
Replies: 3
Views: 2031

add property from sql data

I need to add property to each record when I get result from sql query or add header so I can work with that data later can some one help me how to do this just i'm new to powershell function gettables { $ServerInstance = "****** " $Database = "**********" $ConnectionTimeout = 30...
by Filters
Thu Nov 08, 2018 1:48 am
Forum: PowerShell Studio
Topic: pass form data
Replies: 1
Views: 1561

pass form data

Hi I'm new to powershell and stuck with a little problem with data sending from mainform to childform No data is showed in child form :( and version is 2018 Main Form $MainForm_Load={ $textbox1.Text = 'bla bla bla'} $buttonCallChildForm_Click={ if((Show-ChildForm_psf) -eq 'OK'){$textbox1.Text = $Chi...