Search found 1290 matches

by BobRichards
Sun Jan 14, 2024 4:08 pm
Forum: Integration Development
Topic: PDF text "Copy With Formatting" fails when Automation Rules runs.
Replies: 1
Views: 11813

Re: PDF text "Copy With Formatting" fails when Automation Rules runs.

It sounds like a codebase conversion issue. This is where the characters being read in are in a different UTF (or ASCII) encoding than Python expected. See this URL for more information and recommendations.

IronPython Unicode HOWTO
by BobRichards
Fri Jan 12, 2024 12:38 pm
Forum: Server
Topic: Verify package is working
Replies: 2
Views: 8084

Re: Verify package is working

If you have the Select server on your local machine, then add breakpoints to the code and do a debug build. This will allow you to fully debug the server package. Be sure to stop the currently running Select server instance since only one instance can run at a time and your debugging will start its ...
by BobRichards
Fri Jan 05, 2024 5:24 pm
Forum: Automation Code Snippets
Topic: Add endorsement to file
Replies: 1
Views: 20144

Re: Add endorsement to file

I'm not sure what the problem is. The code you commented out seems like it should do the trick. I have added my version of function NeedsEndorsements() that has an optimization to stop searching for 'ENDORS_WV_11' immediately after finding it instead of continuing through the list unnecessarily. # I...
by BobRichards
Tue Jan 02, 2024 3:02 pm
Forum: Integration Development
Topic: Cannot add Invoice Payments via the SoftPro Select SDK
Replies: 4
Views: 26135

Re: Cannot add Invoice Payments via the SoftPro Select SDK

I'm glad you found the problem. Thanks for the update!
by BobRichards
Sat Dec 23, 2023 5:19 pm
Forum: Integration Development
Topic: Cannot add Invoice Payments via the SoftPro Select SDK
Replies: 4
Views: 26135

Re: Cannot add Invoice Payments via the SoftPro Select SDK

Please submit your code. I'll take a look at it.
by BobRichards
Sat Dec 23, 2023 5:18 pm
Forum: ReadyDoc Visibility Conditions
Topic: Visibilty Conditions Examples
Replies: 6
Views: 17240

Re: Visibilty Conditions Examples

So me your code to take a look at.
by BobRichards
Sun Dec 10, 2023 8:10 pm
Forum: ProForm (Order Tracking)
Topic: What's all this Security Group stuff anyway?
Replies: 3
Views: 34565

Re: What's all this Security Group stuff anyway?

Add Other Properties to the User Group Collections Now that we have the basics out of the way, let's see what other properties we can add to User Groups. public void AddGroupCollections(SelectServer ss, ISecurityGroup group) { // Optionally add existing users. Here we are adding the current user! v...
by BobRichards
Sun Dec 10, 2023 7:50 pm
Forum: ProForm (Order Tracking)
Topic: What's all this Security Group stuff anyway?
Replies: 3
Views: 34565

Re: What's all this Security Group stuff anyway?

See if Current User is in Security Group Typically we want to see if our currently logged in user is a member of a Security Group. In this example, I don't care if the user has been added to the group directly or if another group of users has been added to our target group. The code below gets the ...
by BobRichards
Sun Dec 10, 2023 7:09 pm
Forum: ProForm (Order Tracking)
Topic: What's all this Security Group stuff anyway?
Replies: 3
Views: 34565

Re: What's all this Security Group stuff anyway?

Create a Security Group The minimum requirement to create a security group is to get a new group object from Select, set a few string properties, then save the group. public void CreateSecurityGroups(SelectServer ss) { // Create new Select group and set properties. var secMgr = ss.GetService<ISecur...
by BobRichards
Fri Dec 08, 2023 4:48 pm
Forum: ProForm (Order Tracking)
Topic: What's all this Security Group stuff anyway?
Replies: 3
Views: 34565

What's all this Security Group stuff anyway?

What is a Security Group At a high level, groups are collections of users that share the same permissions. The permissions assigned to a group will apply to every user that is a member. Groups can be added to other groups to associated groups of users en masse to enable additional permissions. Ther...