Can u tell me how to get card form id in menu item form?

nakamuranakamura Member Posts: 3
Hi All

I'd like to believe that somebody give to me good answers for my terrible problem. The situation is below it;
Pls let me know Parent Form information(id,Name) in menu item's child form or report.
Is something how to solve this problem? For example, system functions or etc, CurFrom.subFormControlXXXX.

Best rgds

Comments

  • David_SingletonDavid_Singleton Member Posts: 5,479
    Why? What are you trying to do?
    David Singleton
  • krikikriki Member, Moderator Posts: 9,110
    [Topic moved from 'NAV 2009' forum to 'NAV/Navision' forum]
    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


  • nakamuranakamura Member Posts: 3
    Why? What are you trying to do?
    The situation is below;
    I have a common Report that some forms calls.
    At that time, the report wants to have some information called by each Form.
    For example, Form ID and Name
    Because I’d like to do something according to Form id.
    Is it possible?
  • einsTeIn.NETeinsTeIn.NET Member Posts: 1,050
    I still don't know what you are trying to do. Maybe you're looking for this...
    Form.OBJECTID([UseNames])
    
    :?:
    "Money is likewise the greatest chance and the greatest scourge of mankind."
  • SunsetSunset Member Posts: 201
    Why not just send the information to the report before? Using a function

    ReportName.SetInformation(Your info here);
    ReportName.run;
    Don't just take my word for it, test it yourself
  • search1110search1110 Member, No Posting Permissions Posts: 19
    Try to use subform which you can control through the parent form:
    CurrForm.NameOfSubformControl.FORM.LocalFunctionToExecute
    You can declare a subform in variety list. Control it via functions inside subform to get some information that give you a clue which form is used.
Sign In or Register to comment.