Search found 13 matches

by rocky.pabillore
Tue Aug 28, 2018 8:23 am
Forum: PowerShell Studio
Topic: Executable with Switches
Replies: 4
Views: 2817

Re: Executable with Switches

Param ( [switch]$hello, [switch]$no ) if ($hello) { $wshell = New-Object -ComObject Wscript.Shell $wshell.Popup("Answer is: is present", 0, "Done", 0x1) } elseif ($no) { $wshell = New-Object -ComObject Wscript.Shell $wshell.Popup("Answer is: hello not present", 0, "...
by rocky.pabillore
Mon Aug 27, 2018 10:39 am
Forum: PowerShell Studio
Topic: Executable with Switches
Replies: 4
Views: 2817

Executable with Switches

To help you better we need some information from you. *** Please fill in the fields below. If you leave fields empty or specify 'latest' rather than the actual version your answer will be delayed as we will be forced to ask you for this information. *** Product, version and build: PoSh Studio 2018, ...
by rocky.pabillore
Fri Aug 03, 2018 9:03 am
Forum: PowerShell
Topic: Printing a document with QR Code
Replies: 1
Views: 1130

Printing a document with QR Code

Hey guys, currently an intern left with a very half/baked gui to print out documents with qr code. He's using the word api for this and it is very very buggy, and sometimes it would not print to the right printer. jvierra posted this on the vbsscripts forum: Set pd = CreateObject("MSComDlg.Comm...
by rocky.pabillore
Wed Jul 18, 2018 11:04 am
Forum: PowerShell GUIs
Topic: TabControl Focus on a specific tab
Replies: 1
Views: 1173

TabControl Focus on a specific tab

Hey guys, I've been banging my head to how do this properly but essentially I have 3 tabs, User Summary, comp Summary and unnamedtab. when I search for a computer, i'd like to have the comp summary to be focused or selected. It seem pretty easy but i've done addpage/remove and it seem like when remo...
by rocky.pabillore
Tue Dec 05, 2017 9:27 am
Forum: Feedback
Topic: Another Crucial Issue Please Beware.
Replies: 3
Views: 6352

Re: Another Crucial Issue Please Beware.

Thank you Cody, I've uploaded it now.
by rocky.pabillore
Fri Dec 01, 2017 11:38 am
Forum: Feedback
Topic: Another Crucial Issue Please Beware.
Replies: 3
Views: 6352

Another Crucial Issue Please Beware.

Not too long ago, I was looking around the net and found something that should probably make sure to fix. [Compiling Issue]
I would gladly PM you the pdf.
by rocky.pabillore
Thu Apr 27, 2017 8:58 am
Forum: Feedback
Topic: Something to think about. Please Fix this issue.
Replies: 3
Views: 6191

Re: Something to think about. Please Fix this issue.

we just tested this on a script that was compiled using version 3, and it did spit out everything as a string. Version 5 so far did not.
by rocky.pabillore
Wed Apr 26, 2017 5:25 pm
Forum: Feedback
Topic: Something to think about. Please Fix this issue.
Replies: 3
Views: 6191

Something to think about. Please Fix this issue.

My coworker found this powershell decompiler. The source code I heard was not published. Some of us users write confidential codes with passwords and wrap it up using your packaging tool to create .exe. This tool can decompile any exe scripts. Link: https://www.remkoweijnen.nl/blog/2017/03/13/conver...
by rocky.pabillore
Tue Apr 25, 2017 7:50 am
Forum: PowerShell GUIs
Topic: SearchBox Function
Replies: 3
Views: 1930

Re: SearchBox Function

Thank you for the reply, I'm just so lost, Can you give me an example where there is a textbox with a button, and whatever the textbox has, it will be a variable on the child form? $printers = import-csv -Path C:\temp\allprinters.csv | Where-Object { $_.name -contains "$searchtextbox_TextChange...