Property

Method

Event

 

 

UseNamoNet

Specifies whether or not to use NamoNet.dll for a network module.

Syntax

    [get] HRESULT UseNamoNet(
          long* pVal
    );
    [put] HRESULT UseNamoNet(
          long newVal
    );

Parameters

[get] pVal

[out, retval] Returns the value currently specified.

[put] newVal

[in] Specifies whether or not to use NamoNet.dll.

0

Use Microsoft  Wininet.dll (Default)

1

Use NamoNet.dll

 

Return Values

0 (always)

Remarks

The UseNamoNet property can be specified using the HTML <object> tag.

UseNamoNet is available only in Web Editor Control 5.0.0.54 or above.

Sample Codes

VBScript [put]

dim object
set object = document.editForm
object.wec.UseNamoNet = 1

HTML

<OBJECT ID="wec" ...>
	<param name="InitFileURL" value="InitFile.env">
	<param name="InitFileVer" value="1.0">
	<param name="UseNamoNet" value="1">
</OBJECT