Copies an entry.
[Visual Basic]
Public Function CopyEntry( _
ByVal srcPhonebookPath As String, _
ByVal dstPhonebookPath As String, _
ByVal entryName As String _
) As Boolean
[C#]
public bool CopyEntry(
string srcPhonebookPath,
string dstPhonebookPath,
string entryName
);
Parameters
-
srcPhonebookPath
- Path of a phone book file of the copy source.
-
dstPhonebookPath
- Path of a phone book file of the copy destination.
-
entryName
- Entry name.
Return Value
Returns true if it succeeded; otherwise false.
Example
How to copy entry "XXXXX".
dialup.CopyEntry("srcPhonebook.pbk", "dstPhonebook.pbk", "XXXXX")
dialup.CopyEntry("srcPhonebook.pbk", "dstPhonebook.pbk", "XXXXX");
See Also
AwDialup Class | Asterworld.Dialup Namespace