Search found 17 matches

by tbednarz
Mon Apr 18, 2016 5:39 am
Forum: Former and Future Customers - Questions
Topic: HelpWriter and binary Cmdlets
Replies: 10
Views: 12777

Re: HelpWriter and binary Cmdlets

Hi David, I can confirm, that this is working now. I just learned that it is crucial to give the installation directory, dll and module itself the correct names! I have two additional questions: [*] Multilanguage support: Cmdlet help supports multi-language and requires correct distribution in direc...
by tbednarz
Thu Apr 14, 2016 2:25 pm
Forum: Former and Future Customers - Questions
Topic: HelpWriter and binary Cmdlets
Replies: 10
Views: 12777

Re: HelpWriter and binary Cmdlets

Ok, thanks I will try.
by tbednarz
Wed Apr 13, 2016 11:16 pm
Forum: Former and Future Customers - Questions
Topic: HelpWriter and binary Cmdlets
Replies: 10
Views: 12777

Re: HelpWriter and binary Cmdlets

Currently the module makes up ONE DLL with a growing number of Cmdlets. The DLL itself my reference other DLLs, e.g. I have implemented a DAL (data access layer) using NHibernate and Fluent in a DLL. This DLL is referenced and used INSIDE the implementation of some cmdlets to retrieve or store data ...
by tbednarz
Wed Apr 13, 2016 9:02 am
Forum: Former and Future Customers - Questions
Topic: HelpWriter and binary Cmdlets
Replies: 10
Views: 12777

Re: HelpWriter and binary Cmdlets

Hi, Sorry, since I did not get an answer for a few days, I did not come back for a while... To answer your question: Yes of course. I need this all the time when debugging my cmdlet in Visual Studio 2015. Here is the output from PS: PS C:\WINDOWS\system32> d: cd D:\Projects\AssetManager\PSModules\Be...
by tbednarz
Wed Apr 06, 2016 12:31 pm
Forum: Former and Future Customers - Questions
Topic: HelpWriter and binary Cmdlets
Replies: 10
Views: 12777

Re: HelpWriter and binary Cmdlets

This is what I have already tried but didn't work. Find attached the screenshot of the error message.
by tbednarz
Wed Apr 06, 2016 5:01 am
Forum: Former and Future Customers - Questions
Topic: HelpWriter and binary Cmdlets
Replies: 10
Views: 12777

HelpWriter and binary Cmdlets

Hi, I am testing HelpWriter latest version. I am writing binary Cmdlets (those written in C#) using Visual Studio 2015. I am looking for a suitable help editor and found your Help Writer. I downloaded it but I cannot load my own DLL's. Binary Cmdlets are compiled in DLLs, there is no psm module. Is ...
by tbednarz
Wed Feb 10, 2016 1:23 am
Forum: PowerShell GUIs
Topic: contextmenustrip opening event question
Replies: 3
Views: 2982

Re: contextmenustrip opening event question

Hmm I am probably too stupid, but when I drag it in the designer, it is sort of everywhere. In the following article (https://www.sapien.com/blog/2011/12/16/primalforms-2011-spotlight-on-the-contextmenustrip-control/) is written: For your convenience, when you drop a ContextMenuStrip in the designer...
by tbednarz
Wed Feb 10, 2016 12:12 am
Forum: PowerShell GUIs
Topic: contextmenustrip opening event question
Replies: 3
Views: 2982

contextmenustrip opening event question

I added a contextmenustrip control zu a form created with PowerShell Studio 2015. This form has TabControls and within the tabs many other controls. The context menu appears everywhere when I right-click with the mouse! So I implemented the event contextmenustrip_Opening and set $_.Cancel = $true. T...
by tbednarz
Wed Feb 03, 2016 11:36 am
Forum: PowerShell GUIs
Topic: How to create a 'Wait cursor' (hourglass)
Replies: 10
Views: 10014

Re: How to create a 'Wait cursor' (hourglass)

Thanks very much, this is very interesting stuff, especially when it comes to 'parallelize' things. But currently my problem is, that a single call to a remote machine has VERY different execution times. I work a lot on AD where you just do one query. Sometimes the result is here instantly sometimes...
by tbednarz
Wed Feb 03, 2016 12:56 am
Forum: PowerShell GUIs
Topic: How to create a 'Wait cursor' (hourglass)
Replies: 10
Views: 10014

Re: How to create a 'Wait cursor' (hourglass)

GUIs have two threads. One is the UI and the other is the background code processes. The events can even be reentered which can cause issues. Here is an example of how easy it is to set a wait cursor when calling a long running WMI method. Interesting! This works as expected! As already mentioned I...