Search found 5 matches

by Jimcesse
Fri Jan 22, 2016 7:19 am
Forum: Former and Future Customers - Questions
Topic: Link for download PowerShell Studion Trial version
Replies: 2
Views: 5569

Re: Link for download PowerShell Studion Trial version

Yes... I do not viewed before login the web page...

Thanks.
by Jimcesse
Fri Jan 22, 2016 6:10 am
Forum: Former and Future Customers - Questions
Topic: Link for download PowerShell Studion Trial version
Replies: 2
Views: 5569

Link for download PowerShell Studion Trial version

Hi folks

I am try to download PowerShell Studio trial version, but in the webpage is not the link... Where is that !?

Cheers !!!
by Jimcesse
Mon Nov 25, 2013 2:54 pm
Forum: PowerShell GUIs
Topic: Concatenate String and Textbox.Text
Replies: 1
Views: 2395

Concatenate String and Textbox.Text

Hi Folk !!!

How do you concatenate String and Varible like Textbox.Text... I have per example:
PowerShell Code
Double-click the code block to select all.
$textbox1.Text = "Hello"
And I need add 2 * one from beginning and another from end, that's look like this *Hello*

Thanks for your comments !!!!
by Jimcesse
Sun Nov 24, 2013 7:19 am
Forum: PowerShell GUIs
Topic: Combobox Enabled or Disable a Textbox
Replies: 3
Views: 8480

Re: Combobox Enabled or Disable a Textbox

Hi Thanks for your comment !!! Yes, I know VB is not PS :D... But your code don't work for me :cry: (Not Enabled TextBox) I'm trying with this: $combobox2_SelectedIndexChanged={ If ($combobox2.SelectedIndex -ge 0) { $UserTextSelection = $combobox2.SelectedItem.ToString() } If ($UserTextSelection -eq...
by Jimcesse
Sat Nov 23, 2013 8:19 pm
Forum: PowerShell GUIs
Topic: Combobox Enabled or Disable a Textbox
Replies: 3
Views: 8480

Combobox Enabled or Disable a Textbox

Hi Folks, I'm trying to create a GUI with PowerShell Studio 3.1.26... The idea is create a form with 2 combobox, when combobox1 is selected this enable combobox2 and depending of choice selected combobox2 enable a textbox1... Here my code: $combobox2_SelectedIndexChanged={ If ($combobox2.SelectedInd...