Search found 18 matches

by tconley@semprautilities.com
Fri Aug 28, 2020 12:49 pm
Forum: PowerShell Studio
Topic: Connect-VIserver not recognised in PS Studio
Replies: 3
Views: 1671

Re: Connect-VIserver not recognised in PS Studio

i am having the same issue with it not finding the invoke-sqlcmd commandlet
by tconley@semprautilities.com
Fri Aug 28, 2020 12:37 pm
Forum: PowerShell Studio
Topic: How to Define a DAtabinding/Datasource
Replies: 1
Views: 1510

How to Define a DAtabinding/Datasource

Product, version and build: Operating system: windows 10 PowerShell version: 5.1.17763.1007 32 or 64 bit OS: 64 I am trying to you powershell studio 2020 I use to use primal forms serval year ago but im running into issues. I have added my database on my sql server to the object browser which work f...
by tconley@semprautilities.com
Tue Aug 25, 2020 10:23 am
Forum: Former and Future Customers - Questions
Topic: Primal forms to Primal Script
Replies: 4
Views: 2796

Re: Primal forms to Primal Script

i install primal forms but it doesnt seem to want to run properly on windows 10. Any suggestions so i can fix my forms
by tconley@semprautilities.com
Mon Aug 24, 2020 1:05 pm
Forum: Former and Future Customers - Questions
Topic: Primal forms to Primal Script
Replies: 4
Views: 2796

Re: Primal forms to Primal Script

thanks i will give it a try
by tconley@semprautilities.com
Mon Aug 24, 2020 9:52 am
Forum: Former and Future Customers - Questions
Topic: Primal forms to Primal Script
Replies: 4
Views: 2796

Primal forms to Primal Script

I have a question about 10+ year ago i used primal form to develop some form for my company. I have since moved on to other work but they are still used daily. However, due to infrastructure replace i need to do some code changes to keep the forms working. The issue is at the time i converted them t...
by tconley@semprautilities.com
Thu Mar 15, 2012 5:25 am
Forum: PrimalForms
Topic: Primal forms 2011 certificates
Replies: 1
Views: 3049

Primal forms 2011 certificates

I am trying to use certificates issued by my company certificate authority. I tried to export my script signing certficate so i could present it to primal forms. It appears you only take .pfx files. My company on issues .cer or .p7b files. Is there a way to load these? ALso do you plan to add suppor...
by tconley@semprautilities.com
Fri Feb 17, 2012 8:20 am
Forum: PrimalForms
Topic: Data Sorce for DatagridView
Replies: 1
Views: 22910

Data Sorce for DatagridView

I have been using PrimalForm 2009 for a while now and love it. I just upgrade to 2011 and created the database connections in my database browser. When ever I add a datagridview a dialog popsup saying Datagridview Tasks. The first and main item is a datasource selection drop down. Which is always em...
by tconley@semprautilities.com
Mon Mar 29, 2010 6:25 am
Forum: PowerShell
Topic: Function accepting Parameter and Pipeline input
Replies: 3
Views: 5645

Function accepting Parameter and Pipeline input

Actually you can use $_ inside of the process section of a function. I am just trying to make this handle data where it comes from parameter or pipeline.Reference information:http://huddledmasses.org/writing-better ... -pipeline/
by tconley@semprautilities.com
Mon Mar 29, 2010 5:12 am
Forum: PowerShell
Topic: Function accepting Parameter and Pipeline input
Replies: 3
Views: 5645

Function accepting Parameter and Pipeline input

I have been working on a function and I want it to be able to function correctly either getting input from the pipeline or from parameters being passed to it. I have gotten it work for Pipeline input but I am having trouble getting it to accept parameters as well. function get-netinfo ([string]$ipad...
by tconley@semprautilities.com
Thu Jan 28, 2010 11:57 am
Forum: PowerShell
Topic: Storing Data in a Collection
Replies: 3
Views: 2163

Storing Data in a Collection

no it actually very common in powershell. You can define all of the different element and then add them to a custom object. I use it all of the time I just haven't used it with a form my regular scripts have no problem. $temp = "" | select-object element1, element2 then you can add the val...