Question : Pagemaker Export to PDF in Windows 7

Have a client who has been using Pagemaker 7.0.2 on Windows XP.  Creates a newsletter, exports to PDF.  Works fine.

Installed Pagemaker on new PC with Windows 7.  Installation worked, but when trying to export to PDF, get an error message that postscript driver is not installed.  Have tried various methods to install a postscript driver without success.

Any ideas out there?

Answer : Pagemaker Export to PDF in Windows 7

Hi,
  it is best practice to use "using" to create,show and destroy the modal forms. you should check for whether user is changed something and clicked accept button (which a button sets DialogResult = DialogResult.OK).if he click "cancel" button (which a button sets DialogResult = DialogResult.Cancel), you should not do update cell value. have attached sample.

ViewAgenciesByJobsForm.ShowDialog(this)

sets current form as parent form.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
if (e.ColumnIndex == 0 && e.RowIndex > 0)
{
  using  (frmLookupJob ViewAgenciesByJobsForm =
                       ViewAgenciesByJobsForm = new frmLookupJob())
  {
     if(ViewAgenciesByJobsForm.ShowDialog(this) == DialogResult.OK))
         dgvViewJobLinker[1,dgvViewJobLinker.CurrentCell.RowIndex].Value                   = ViewAgenciesByJobsForm.CellValue;

   }
}


in frmLookupJob , it will something like:

(1) btnOk click event :
    CellValue = "my new Value"
    DialogResult   =DialogResut.OK;

(2) btnCancel click event :
    DialogResult   =DialogResut.Cancel;
Random Solutions  
 
programming4us programming4us