Jump to content

Jim B.

Registered Users - Approved
  • Posts

    5
  • Joined

Converted

  • Location
    Lowell, MA

Converted

  • FusionPro Products
    Yes

Converted

  • FusionPro VDP software version
    6.0P1f

Converted

  • OS
    Mac OS 10.4.11

Converted

  • Acrobat Version
    Acrobat 9.x

Jim B.'s Achievements

Rookie

Rookie (2/14)

  • First Post Rare
  • Week One Done
  • One Month Later
  • One Year In
  • Conversation Starter Rare

Recent Badges

10

Reputation

  1. Hi Dan, Thanks for taking the time to edit my code. I added the not adding rows when there's no content code. When no copy is added to the "Content" field the "Time" and "Title" fields disappear. I need the "Time" and "Title" fields to show even if there is copy or no copy in the "Content" field. When no copy is added to the "Content" field then the "Content" field suppresses and the remaining type moves up to fill the space. Attached is a screen shot of an example of my copy. Your help is appreciated.
  2. Hello, I am looking for help with suppressing rows in a table. What i need is, if the "Content1" and "Content2" fields are not filled out, then the rest of the rows move up and if the same fields are filled out then the copy prints. Right now if the "Content1" and "Content2" fields are not filled out, there is a gap showing. I believe i need a rule, just not sure on how to create one. Attached is my table. var myTable = new FPTable; myTable.AddColumns(7100, 26000); myTable.AddRows(24); myTable.Rows[0].Cells[0].Font="Myriad Pro Light"; myTable.Rows[0].Cells[0].TextColor="Black"; myTable.Rows[0].Cells[0].Margins = new FPTableMargins; myTable.Rows[0].Cells[0].Margins.Right = 0; myTable.Rows[0].Cells[0].Content = Field("Time1"); myTable.Rows[0].Cells[1].Font="Myriad Pro Light"; myTable.Rows[0].Cells[1].TextColor="Black"; myTable.Rows[0].Cells[1].Margins = new FPTableMargins; myTable.Rows[0].Cells[1].Margins.Right = 0; myTable.Rows[0].Cells[1].Content = Field("Title1"); myTable.Rows[1].Cells[1].Font="Myriad Pro Light"; myTable.Rows[1].Cells[1].TextColor="Black"; myTable.Rows[1].Cells[1].Margins = new FPTableMargins; myTable.Rows[1].Cells[1].Margins.Right = 0; myTable.Rows[1].Cells[1].Margins.Top = -20; myTable.Rows[1].SetContents( "", Field("Content1")); myTable.Rows[2].Cells[0].Font="Myriad Pro Light"; myTable.Rows[2].Cells[0].TextColor="Black"; myTable.Rows[2].Cells[0].Margins = new FPTableMargins; myTable.Rows[2].Cells[0].Margins.Right = 0; myTable.Rows[2].Cells[0].Margins.Top = -10; myTable.Rows[2].Cells[0].Content = Field("Time2"); myTable.Rows[2].Cells[1].Font="Myriad Pro Light"; myTable.Rows[2].Cells[1].TextColor="Black"; myTable.Rows[2].Cells[1].Margins = new FPTableMargins; myTable.Rows[2].Cells[1].Margins.Right = 0; myTable.Rows[2].Cells[1].Margins.Top = -10; myTable.Rows[2].Cells[1].Content = Field("Title2"); myTable.Rows[3].Cells[1].Font="Myriad Pro Light"; myTable.Rows[3].Cells[1].TextColor="Black"; myTable.Rows[3].Cells[1].Margins = new FPTableMargins; myTable.Rows[3].Cells[1].Margins.Right = 0; myTable.Rows[3].Cells[1].Margins.Top = -20; myTable.Rows[3].SetContents( "", Field("Content2")); myTable.Rows[4].Cells[0].Font="Myriad Pro Light"; myTable.Rows[4].Cells[0].TextColor="Black"; myTable.Rows[4].Cells[0].Margins = new FPTableMargins; myTable.Rows[4].Cells[0].Margins.Right = 0; myTable.Rows[4].Cells[0].Margins.Top = -5; myTable.Rows[4].Cells[0].Content = Field("Time3"); myTable.Rows[4].Cells[1].Font="Myriad Pro"; myTable.Rows[4].Cells[1].TextColor="Black"; myTable.Rows[4].Cells[1].Margins = new FPTableMargins; myTable.Rows[4].Cells[1].Margins.Right = 0; myTable.Rows[4].Cells[1].Margins.Top = -5; myTable.Rows[4].Cells[1].Content = Field("Title3"); myTable.Rows[5].Cells[1].Font="Myriad Pro Light"; myTable.Rows[5].Cells[1].TextColor="Black"; myTable.Rows[5].Cells[1].Margins = new FPTableMargins; myTable.Rows[5].Cells[1].Margins.Right = 0; myTable.Rows[5].Cells[1].Margins.Top = -20; myTable.Rows[5].SetContents( "", Field("Content3")); myTable.Rows[6].Cells[0].Font="Myriad Pro Light"; myTable.Rows[6].Cells[0].TextColor="Black"; myTable.Rows[6].Cells[0].Margins = new FPTableMargins; myTable.Rows[6].Cells[0].Margins.Right = 0; myTable.Rows[6].Cells[0].Margins.Top = -5; myTable.Rows[6].Cells[0].Content = Field("Time4"); myTable.Rows[6].Cells[1].Font="Myriad Pro"; myTable.Rows[6].Cells[1].TextColor="Black"; myTable.Rows[6].Cells[1].Margins = new FPTableMargins; myTable.Rows[6].Cells[1].Margins.Right = 0; myTable.Rows[6].Cells[1].Margins.Top = -5; myTable.Rows[6].Cells[1].Content = Field("Title4"); myTable.Rows[7].Cells[1].Font="Myriad Pro Light"; myTable.Rows[7].Cells[1].TextColor="Black"; myTable.Rows[7].Cells[1].Margins = new FPTableMargins; myTable.Rows[7].Cells[1].Margins.Right = 0; myTable.Rows[7].Cells[1].Margins.Top = -20; myTable.Rows[7].SetContents( "", Field("Content4")); myTable.Rows[8].Cells[0].Font="Myriad Pro Light"; myTable.Rows[8].Cells[0].TextColor="Black"; myTable.Rows[8].Cells[0].Margins = new FPTableMargins; myTable.Rows[8].Cells[0].Margins.Right = 0; myTable.Rows[8].Cells[0].Margins.Top = -5; myTable.Rows[8].Cells[0].Content = Field("Time5"); myTable.Rows[8].Cells[1].Font="Myriad Pro Light"; myTable.Rows[8].Cells[1].TextColor="Black"; myTable.Rows[8].Cells[1].Margins = new FPTableMargins; myTable.Rows[8].Cells[1].Margins.Right = 0; myTable.Rows[8].Cells[1].Margins.Top = -5; myTable.Rows[8].Cells[1].Content = Field("Title5"); myTable.Rows[9].Cells[1].Font="Myriad Pro Light"; myTable.Rows[9].Cells[1].TextColor="Black"; myTable.Rows[9].Cells[1].Margins = new FPTableMargins; myTable.Rows[9].Cells[1].Margins.Right = 0; myTable.Rows[9].Cells[1].Margins.Top = -20; myTable.Rows[9].SetContents( "", Field("Content5")); return myTable.MakeTags();
  3. Do inventory email notifications get sent only when Min. Inventory Qty. reaches zero? Our Min. Inventory Qty. is 200 when an order is placed for 100 should we receive an email informing us that we are below the Min. Inventory Qty.? The inventory Re-Order Approval is set to Sales Approval. Thanks
×
×
  • Create New...