Search found 5913 matches

by davidc
Fri Sep 07, 2012 12:26 pm
Forum: Productivity Pack Support
Topic: how to use primalforms CE radio buttons
Replies: 8
Views: 12387

how to use primalforms CE radio buttons

Looking at your script, it might be better for you to use combo boxes instead of radio buttons. It will make it easier for you to determine the selected value. You can use the combobox's SelectedItem property directly without having to translate the radio buttons to strings.

David
by davidc
Fri Sep 07, 2012 12:19 pm
Forum: Productivity Pack Support
Topic: how to use primalforms CE radio buttons
Replies: 8
Views: 12387

how to use primalforms CE radio buttons

PrimalForms CE comes with a Getting Started Guide and a few samples. The blog has various PrimalForms article with samples that should help you get started. I can't tell what the problem with the Radio Button is without seeing what you are doing. Are you trying to determine what radio button is chec...
by davidc
Fri Sep 07, 2012 10:47 am
Forum: Productivity Pack Support
Topic: how to use primalforms CE radio buttons
Replies: 8
Views: 12387

how to use primalforms CE radio buttons

Please zip and send the pff and the ps1 file to support@sapien.com. I will take a look at it to determine what the problem is.

David
by davidc
Fri Sep 07, 2012 10:20 am
Forum: Productivity Pack Support
Topic: how to use primalforms CE radio buttons
Replies: 8
Views: 12387

how to use primalforms CE radio buttons

You need to group the radio buttons by using a container such as a Groupbox.

I recommend reading the following blog article:

http://www.sapien.com/blog/2011/07/08/p ... n-control/

David
by davidc
Fri Sep 07, 2012 9:11 am
Forum: Former and Future Customers - Questions
Topic: Debug Modules?
Replies: 5
Views: 3102

Debug Modules?

I ran a test and you can add the break point in the script or using the debug console (while at a break) and it will open the module file:

Set-PSBreakpoint -Script "C:Users..Plebius.psm1" -Line 2372

David
by davidc
Fri Sep 07, 2012 8:16 am
Forum: Former and Future Customers - Questions
Topic: Debug Modules?
Replies: 5
Views: 3102

Debug Modules?

There is no built in mechanism to debug modules, but you could try using the Breakpoint cmdlets to set in breakpoint inside a module's file.

David
by davidc
Fri Sep 07, 2012 5:33 am
Forum: Former and Future Customers - Questions
Topic: Powershell Studio 2012 - Object Browser and Console Intellisense
Replies: 1
Views: 2120

Powershell Studio 2012 - Object Browser and Console Intellisense

PowerShell Studio asks PowerShell for all the modules and Snapins and creates a cache. If your module is located in another directory, not reference by PowerShell, then it will not display. In order to add the modules, you will need an automatic way for PowerShell to find them (no profile). You can ...
by davidc
Fri Sep 07, 2012 5:12 am
Forum: PowerShell Studio
Topic: Parameter comment wrong
Replies: 1
Views: 1646

Parameter comment wrong

I verified with MSDN and the value is in milliseconds: http://msdn.microsoft.com/en-us/library/ms160065.aspx It is possible the operating system is overriding your settings. There is a minimum and maximum time it could allow. For more details please refer to the Remarks section in the MSDN page. And...
by davidc
Fri Sep 07, 2012 4:55 am
Forum: PrimalForms
Topic: auto increment when compile to exe
Replies: 1
Views: 17092

auto increment when compile to exe

There is no mechanism for this, but I will add it to the wish list.

David
by davidc
Fri Sep 07, 2012 4:53 am
Forum: PrimalForms
Topic: Can not export to EXE
Replies: 4
Views: 20572

Can not export to EXE

Make sure you use the File Menu instead of the Project Menu to for individual files. Note: You cannot package Module files.


David