Search found 107 matches

by StupidSexyFlanders
Mon Jun 25, 2012 5:27 am
Forum: PowerShell Studio
Topic: Auto complete
Replies: 18
Views: 9055

Auto complete

I am have trouble doing this as well. For testing, the script does nothing by try to Get (and Add) the snapin. I have the snapin installed and it works from both the PS CMI and from PowerGUI. But errors out in Studio:ERROR: Get-PSSnapin : No Windows PowerShell snap-ins matching the pattern 'Quest.Ac...
by StupidSexyFlanders
Thu Jun 21, 2012 11:15 am
Forum: PowerShell Studio
Topic: Progress bar text overlay
Replies: 2
Views: 2783

Progress bar text overlay

Looking to put some text inside a progress bar (instead of a label above it). I see to remember being able to do this manually in the past, but I cannot find the proper property/control. Can this be done?Ideally it would look similar to these ones (coded in PowerGUI), except with dynamically changin...
by StupidSexyFlanders
Wed Jun 20, 2012 10:29 am
Forum: PowerShell Studio
Topic: Importing (converting) Snippets
Replies: 4
Views: 2826

Importing (converting) Snippets

I was able to figure this out. Turned out that all my existing files we set to read-only. Once I changed that attribute, they converted fine. :)
by StupidSexyFlanders
Wed Jun 20, 2012 9:18 am
Forum: PowerShell Studio
Topic: Importing (converting) Snippets
Replies: 4
Views: 2826

Importing (converting) Snippets

Yeah, that's one of the steps I mentioned above. Didn't work. They files would show up in the list, but it would always throw an error and fail on the first file listed (see attached):

by StupidSexyFlanders
Wed Jun 20, 2012 5:42 am
Forum: PowerShell Studio
Topic: Importing (converting) Snippets
Replies: 4
Views: 2826

Importing (converting) Snippets

Trying to use the batch snippet panel/converter and can't figure out what it's looking for.I defined my own 'snippets' folder (full of *.ps1 files) . The folder indeed appeared in the Snippets panel (called 'Custom'), but none of its' contents were shown.I noticed all the native snippets had a .snip...
by StupidSexyFlanders
Tue Jun 19, 2012 7:12 am
Forum: PowerShell Studio
Topic: Dynamic Text for label
Replies: 2
Views: 2172

Dynamic Text for label

Ah, that was the key. I replaced all this:$getDomain = Get-ChildItem env:USERDOMAIN[string]$D = $getDomain.Value$DomainName.Text = $DWith just this: $DomainName.Text = $env:UserDomainThanks!
by StupidSexyFlanders
Tue Jun 19, 2012 6:25 am
Forum: PowerShell Studio
Topic: Dynamic Text for label
Replies: 2
Views: 2172

Dynamic Text for label

I need a label that will reflect the current working domain when the form loads (using PSS3.0.4). Here's what I have so far (just showing relevant sections):$OnLoadFormEvent={#TODO: Initialize Form Controls here $getDomain = Get-ChildItem env:USERDOMAIN [string]$D = $getDomain.Value} $DomainName.Fon...
by StupidSexyFlanders
Mon Jun 11, 2012 8:21 am
Forum: PowerShell Studio
Topic: Launching the file/folder browser.
Replies: 2
Views: 6597

Launching the file/folder browser.

Thanks! That worked well.
by StupidSexyFlanders
Mon Jun 11, 2012 5:25 am
Forum: PowerShell Studio
Topic: Setting a default font/font size?
Replies: 2
Views: 2667

Setting a default font/font size?

I will explore that, thanks! I also found that if I set the main form at font x, it will retro-actively resize all the elements within the form to match.
by StupidSexyFlanders
Thu Jun 07, 2012 10:40 am
Forum: PowerShell Studio
Topic: Setting a default font/font size?
Replies: 2
Views: 2667

Setting a default font/font size?

Seem the font properties for any new form are MS Sans Serif 8.25pt. I can change the size easy enough, but something there are dozens of elements and I would rather set a new default font size (or even a new default font). I have poked around in the various config files, but couldn't find anything. ...