Search found 150 matches

by clum09
Wed Sep 05, 2018 8:55 am
Forum: PrimalScript
Topic: Autocase and color function names
Replies: 8
Views: 4657

Re: Autocase and color function names

One thing I have found that can quickly trigger the PrimalScript Editor to lose autocase and color during editing my script is when I am editing the parameters of a function similar to the one below. function Get-Something { param ([Parameter(Mandatory=$true, ValueFromPipeline=$true)] [string] $para...
by clum09
Thu Aug 30, 2018 6:59 am
Forum: PrimalScript
Topic: Autocase and color function names
Replies: 8
Views: 4657

Re: Autocase and color function names

It has nothing to do with the theme issue. PrimalScript has just become very unstable since the last several releases - up to point where it is not usable. Even if I work on one single script for a long period of time, the autocase and coloring problem starts to happen, and all the sudden the progra...
by clum09
Fri Aug 17, 2018 9:21 am
Forum: PrimalScript
Topic: Autocase and color function names
Replies: 8
Views: 4657

Re: Autocase and color function names

It seems like the autocasing and coloring problem happens when I work on multiple scripts for a longer period of time. When this problem occurs, I have to close all the scripts, close PrimalScript, and then re-start PrimalScript again in order for the autocasing and coloring to work normally. This h...
by clum09
Fri Aug 17, 2018 5:28 am
Forum: PrimalScript
Topic: Autocase and color function names
Replies: 8
Views: 4657

Autocase and color function names

Product, version and build: 7.4.116 32 or 64 bit version of product: 64 bit Operating system: Windows 10 32 or 64 bit OS: 64 bit PromalScript randomly fails to auto case and color the function names within the script when the script has a large number of functions and the editor has been used for a ...
by clum09
Wed Aug 15, 2018 10:28 am
Forum: PrimalScript
Topic: Class Browser not display contents
Replies: 8
Views: 4787

Re: Class Browser not display contents

Here is another example of the Class Browser pane not showing the function names of the scripts currently opened in PrimalScript. ClassBrowsers3.jpg The Class Browser pane only shows the functions from Get-DeployVMXMLData.ps1 script, but failed to show the functions from DeployVM.ps1 script. This is...
by clum09
Tue Aug 14, 2018 2:16 pm
Forum: PrimalScript
Topic: Class Browser not display contents
Replies: 8
Views: 4787

Re: Class Browser not display contents

After I had closed both scripts, and then I re-opened them in PrimalScript again, the Class Browser pane only shows the function names from one of the scripts - no function names showing for the second scripts. See the screen shot below. ClassBrowsers2.jpg It only shows function names for Setup.ps1 ...
by clum09
Tue Aug 14, 2018 2:00 pm
Forum: PrimalScript
Topic: Class Browser not display contents
Replies: 8
Views: 4787

Re: Class Browser not display contents

I just took a screen shot of PrimalScript not showing anything in the Class Browser pane. I opened two scripts in PrimalScript, and when I tried to check the function names from the Class Browser pane, nothing showed up. See the attachment below. This behavior is very annoying and is happening rando...
by clum09
Fri Aug 10, 2018 8:41 am
Forum: PrimalScript
Topic: Class Browser not display contents
Replies: 8
Views: 4787

Class Browser not display contents

Product, version and build: 7.4.115 32 or 64 bit version of product: 64-bit Operating system: Windows 10 32 or 64 bit OS: 64 bit This new version of PrimalScript periodically fails to display the function names in the editor's Class Browser pane when I open and work on more than one script in the ed...
by clum09
Tue Jul 10, 2018 8:25 am
Forum: PowerShell GUIs
Topic: Close splash form and password dot character
Replies: 7
Views: 2590

Re: Close splash form and password dot character

Hi Davidc, I just found out that the textbox of Windows Form has a property known as UseSystemPasswordChar. Once I set this property to $True, the issue with the password character went away. For the splash form closing issue, I just moved to the form closing routine to the $Form_StateCorrection_Loa...
by clum09
Thu Jul 05, 2018 3:40 pm
Forum: PowerShell GUIs
Topic: Close splash form and password dot character
Replies: 7
Views: 2590

Re: Close splash form and password dot character

Hi jvierra, Thank you for the response. You miss-understand my description. There is a region called Generated Events below the User Generated Script region within the splash form that the $Close_Form event calls to clean up the form code before the $form1.Close() code closes the form, but the splas...