I have 2 DLL , namely A.dll and B.Dll
They both have a function called ShowHelp()

How do I declare the two functions that have The Same name

Recommended Answers

All 2 Replies

Listen

{a.dll}
Procedure ShowHelpA;
Begin   
    ShowHelp();{you have to fill the arguments}
End;
{and the b.dll}
Procedure ShowHelpB;
Begin   
    ShowHelp();{you have to fill the arguments}
    {Do Keyword-based Help request.
procedure ShowHelp(const HelpKeyword, HelpFileName: String);}
End;

call them by their names like ShowHelpA; or ShowHelpB;
by the way showhelp() is a procedure :icon_smile:

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.