|
Imports Supplier cards using the import dialog. |
|
|
void ImportDialog () |
|
|
Remarks |
| This method can only be used if user interface is allowed (parameter bWithUserInterface is set to true in the Logon method), because this method imports a record using the import dialog. |
| This method can only be used if the object can be changed (parameter bCanChange is set to true in the CreateSuppl method), because importing can make changes to the interface. |
|
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
// Start the import dialog, allowing the user to import records interactively
pSuppl->ImportDialog ();
|
|
|
C# |
|
// Start the import dialog, allowing the user to import records interactively
oSuppl.ImportDialog ();
|
|
|
VBS |
|
' Start the import dialog, allowing the user to import records interactively
Call oSuppl.ImportDialog()
|
|
|
VB.NET |
|
' Start the import dialog, allowing the user to import records interactively
oSuppl.ImportDialog()
|
|