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 strongm 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: *

  1. Andy4711

    Display parameter on report

    You have to use parallel sections, there's no need to code. Give the online help a look how to do this!
  2. Andy4711

    Display parameter on report

    The following code solves my problems: Function Fetch( ) As AcDataRow Set Fetch= Super::Fetch() If Fetch Is Nothing Then Exit Function Else If Fetch.GetValue("ssSub_Type") = "TDS" Then email = "tds@hallo.de" Else email ="msds@hallo.de" End if End If End...
  3. Andy4711

    Display parameter on report

    Dear all, I'm trying to display a parameter on my report but somehow it doesn't work. :-( I created a global string parameter email. In the data stream I instereted the code below: Function Fetch( ) As AcDataRow Dim row As ssCampaignDataRow Set row = Super::Fetch() If row.ssSub_Type...

Part and Inventory Search

Back
Top