Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: DggR
  • Order by date
  1. DggR

    New to Actuate - Looking for Documentation/ Manuals

    If you have access to actuate support you can download manuals for all the actuate products. http://support.actuate.com
  2. DggR

    SafeDivide

    What statement do you have ? Only "SafeDivide" ?
  3. DggR

    Running Totals

    I think this can solve it: Create a new variable in your DataRow class, for example ColB. In the OnRead method add something like this Sub OnRead( ) Super::OnRead( ) ColB = ColB + ColA End Sub
  4. DggR

    invalid breakpoint and file open

    Breakpoints must be on a line with a code statement, not an empty line or a line with a only a comment.
  5. DggR

    How to display an empty report (Actuate 8)

    Try putting the header labels and static text in the before section in the report. I think this should work.
  6. DggR

    [b]Actuate 8.0 Email Capability[/b]

    Take a look at the notification tab in under server properties when you log in to 'System Administration'. Here you can register a smtp-server to use for sending e-mails. When you schedule a job in actuate you can then select who shoud be notified when the job finishes and if the report should...
  7. DggR

    Dynamically accessing report parameter.

    A parameter can be used anywhere in the report. If you need to display a parameter, use TextControl for example. Enter the parameter name in the ValueExp property.
  8. DggR

    adding to the select statement in obtainselectstatement()

    Hi I think adding it as a computed field in the datasource would work better. (Less work) If want to change the select statement you can override the ObtainSelectStatment method in the datasource: Function ObtainSelectStatement( ) As String selectClause = selectClause + ", items.itemcode"...
  9. DggR

    Auto Archive

    I have the same problem using Active Portal version 7, but using Active Portal version 8 the archive rules are set ok. Dag

Part and Inventory Search

Back
Top