Search found 4 matches

by josh.perkins
Mon Sep 02, 2013 1:48 pm
Forum: ChangeVue
Topic: Visual Studio 2012 Plug-In
Replies: 0
Views: 17626

Visual Studio 2012 Plug-In

I use ChangeVue for simple source management/storage when using PowerShell Studio. I would like to use the same repository for my c# programs created in VS 2012. I cannot select ChangeVue within VS 2012 source control (there doesn't appear to be a plugin). Can I use ChangeVue (latest version) with V...
by josh.perkins
Thu Aug 29, 2013 11:40 am
Forum: PowerShell GUIs
Topic: Application exits when $frmName.Hide() is called
Replies: 2
Views: 2651

Re: Application exits when $frmName.Hide() is called

Great, thank you for the quick reply.
by josh.perkins
Thu Aug 29, 2013 11:10 am
Forum: PowerShell GUIs
Topic: Application exits when $frmName.Hide() is called
Replies: 2
Views: 2651

Application exits when $frmName.Hide() is called

When I minimize my form using the following Resize event, my form closes (exits, PowerShell Studio debug stops). Any help would be appreciated.
PowerShell Code
Double-click the code block to select all.
$frmMainUI_Resize={
	if ($frmMainUI.WindowState -eq 'Minimized') {
		$frmMainUI.Hide()
	}
}
by josh.perkins
Fri Jun 07, 2013 9:13 am
Forum: PowerShell GUIs
Topic: Problem with handling event in checkedlistbox control
Replies: 1
Views: 2656

Problem with handling event in checkedlistbox control

Not sure how to properly handle this in PowerShell studio. I have a checkedlistbox and want to display a textbox when a specific item in the checkedlistbox is checked. The problem I am running into is that the checkedlistbox (itemcheck and click) event doesn't see the check value until after the eve...