Welcome to the Calyx Software Message Boards where you can share ideas and solutions with other Calyx users! Calyx personnel including Tech Support, Development, QA, and Business Planning often visit these message boards unofficially to better understand our customers' needs. To submit your suggestions Click Here.
This discussion forum is a service provided by Calyx Software. Calyx Software does not endorse any particular point of view expressed in this forum or any information provided in it. The use of the information provided by other users in this message board is at your own risk.
Calyx Software Message Board
Home      Members   Calendar   Who's On
Welcome Guest ( Login | Register )
      


12»»

How can I share print groups?Expand / Collapse
Author
Message
Posted 7/26/2005 10:22:44 AM
Forum Newbie

Forum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum Newbie

Group: Forum Members
Last Login: 6/15/2007 10:38:35 AM
Posts: 5, Visits: 18
Is there a way I can share print groups without having to create the print group on every computer on my network?

Jason Sanborn
Calyx Software Quality Assurance


Disclaimer: this post carries no explicit or implied warranty. Nor is there any guarantee that the information contained in this post is accurate. It is offered in the hopes of helping others, but you use it at your own risk. The author will not be liable for any damages that occur as a result of using this post.

Post #31
Posted 7/26/2005 10:43:58 AM


Sepal

Sepal

Group: Moderators
Last Login: Yesterday @ 4:06:35 PM
Posts: 1,183, Visits: 9,261
Only in 5.1

Disclaimer:  This post carries no explicit or implied warranty. Nor is there any guarantee that the information contained in this post is accurate. It is offered in the hopes of helping others, but you use it at your own risk. The author will not be liable for any damages that occur as a result of using this post.
Post #33
Posted 8/2/2005 7:49:03 AM
Forum Member

Forum MemberForum MemberForum MemberForum MemberForum MemberForum MemberForum MemberForum Member

Group: Forum Members
Last Login: 3/16/2007 4:25:08 PM
Posts: 36, Visits: 905
Instead of running to each computer to copy the print group config files, I wrote a script that remotely copied the config files to each computer across the domain.
Post #44
Posted 8/2/2005 9:32:00 AM


Supreme Being

Supreme Being

Group: Moderators
Last Login: 12/21/2008 11:16:31 PM
Posts: 837, Visits: 1,901
Point 5.1 will have the ability to define Form Groups (also known as "Print Groups") as either Local, called "My Print Groups", or as Networked, called "Shared Print Groups".  Shared print groups will be stored in the \Pnttempl folder (under a new sub-folder named "PrintGroups").  The file format of the print groups will stay the same.  Local print groups will still be stored in the \Winpoint\PCL folder. 

Bryan
Point Product Manager
Post #48
Posted 8/4/2005 10:08:41 AM
Forum Newbie

Forum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum Newbie

Group: Forum Members
Last Login: 11/10/2005 9:50:43 AM
Posts: 5, Visits: 14
It's actually very easy to copy and paste the print groups by doing the following:

Go onto the computer that has the desired print groups that you want to copy and go to the following folder on your computer:

C:\WINPOINT\pcl

Go to "View" | Arrange Icons By | and click on Type

You should see a text file called BRWPG right near the top. Double click on it to open it, click any where in the document and then hit Cnrl A, and then Cntrl C to copy. Now Create an email addressed to everyone that you want to have the print group too, Hit Cntl V where you would write the message, and send it. Go onto each computer that you emailed, copy the contents of the email, and paste into the winpoint\pcl\BRWPG file on there computer.


If you cannot find the "BRWPG" file, it means that they do not currently have any print groups set up. You will want to go into Caylx on their computer, and create just a simple print group which can consist of just one form. This will create the "BRWPG" text file, which you can then paste right over from your email.

Hope this helps,

Andrew
Post #61
Posted 8/4/2005 3:00:01 PM
Junior Member

Junior MemberJunior MemberJunior MemberJunior MemberJunior MemberJunior MemberJunior MemberJunior Member

Group: Forum Members
Last Login: 9/7/2005 2:28:51 PM
Posts: 11, Visits: 15
There are actually four files in C:\WINPOINT\PCL that you will want to distribute, not just BRWPG.  The files are:

  • BRWPG.INI  (for borrowers)
  • COBRWPG.INI (for coborrowers)
  • PRSPG.INI (for prospects)
  • COPRSPG.INI (for coprospects)

Your best bet is to maintain your print groups in one place, and then distribute them via a script when users log on to the network.  I haven't seen 5.1 yet, but if you upgrade then the new methods provided in 5.1 sound like an even better solution.

Tom R. Williams
Mortgage Technology Consultant

thomastx@swbell.net

Post #73
Posted 8/8/2005 12:25:07 AM
Forum Member

Forum MemberForum MemberForum MemberForum MemberForum MemberForum MemberForum MemberForum Member

Group: Forum Members
Last Login: 3/16/2007 4:25:08 PM
Posts: 36, Visits: 905
Since several posts have mentioned the use of a script to copy the print group info around, I found the script I created for this task. It makes a backup copy of the config files in case you've got a user that has configured the print groups already.

'==========================================================================
' NAME: PointConfig.vbs
' DATE : 4/12/2004
' AUTHOR: Paul D. Terrell , Terrell ITC
' COMMENT: Copies Point configuration files to networked computer.
' Place Shortcut toolbar config files in C:\Updates\Tables
' Place Print Group and Form config files in C:\Updates\PCL
'PARAMETER: Computer name or IP address
'==========================================================================

Option Explicit
Dim objArgs,strComputerName
Dim objFileSystem,objFolder,objFiles,objFile

Set objArgs = WScript.Arguments
strComputerName = objArgs(0)

Set objFileSystem=CreateObject("Scripting.FileSystemObject")
Set objFolder = objFileSystem.GetFolder("C:\Updates\Tables")
Set objFiles = objFolder.Files
If objFiles.count > 0 Then
For Each objFile in objFiles
If objFileSystem.FileExists("\\"& strComputerName & "\c$\Winpoint\Tables\" & objFile.name) Then
objFileSystem.MoveFile "\\"& strComputerName & "\c$\Winpoint\Tables\" & objFile.name, "\\"& strComputerName & "\c$\Winpoint\Tables\Backup"
End If
Next
End If
objFileSystem.CopyFile "C:\Updates\Tables\*.*", "\\"& strComputerName & "\c$\Winpoint\Tables"

Set objFolder = objFileSystem.GetFolder("C:\Updates\PCL")
Set objFiles = objFolder.Files
If objFiles.count > 0 Then
For Each objFile in objFiles
If objFileSystem.FileExists("\\"& strComputerName & "\c$\Winpoint\PCL\" & objFile.name) Then
objFileSystem.MoveFile "\\"& strComputerName & "\c$\Winpoint\PCL\" & objFile.name, "\\"& strComputerName & "\c$\Winpoint\PCL\Backup"
End If
Next
End If
objFileSystem.CopyFile "C:\Updates\PCL\*.*", "\\"& strComputerName & "\c$\Winpoint\PCL"
Post #86
Posted 8/8/2005 9:05:34 AM
Forum Newbie

Forum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum Newbie

Group: Forum Members
Last Login: 10/5/2005 12:19:20 PM
Posts: 1, Visits: 3
FYI - With 5.1, you can now opt to share the print groups on your network.

Jenn

Post #88
Posted 12/7/2005 6:39:15 AM
Junior Member

Junior MemberJunior MemberJunior MemberJunior MemberJunior MemberJunior MemberJunior MemberJunior Member

Group: Forum Members
Last Login: 11/21/2006 4:04:42 PM
Posts: 16, Visits: 98
Is there any way to truly share print groups in 5.1 with PDS?  Essentially set up one group on the server without having to go to each workstation and set them up individually? 

I cant find any documentation regarding this in the manual or on Calyx's website.

 

Thanks.

Post #1377
Posted 12/20/2005 8:18:06 PM