Send Topic Feedback | See Object Hierarchy Chart
PC-DMIS 2023.2 Object Library
PCDLRN ActiveX DLL > Application Object : WriteRegistryInt Method
String value that specifes the section in which the settings entry that you want to modify resides.
String value that specifies the settings entry to which you want to write the value.
Integer value to write to the settings entry.
Boolean value that determines whether or not an associated global variable in PC-DMIS gets changed to the value of the third parameter. This parameter only works for settings entries pertaining to feature ID prefixes.
WriteRegistryInt Method
Description
Sets a PC-DMIS settings entry to a specified integer value. Write Integer.
Syntax
Visual Basic
Public Function WriteRegistryInt( _
   ByVal lpszSection As String, _
   ByVal lpszEntry As String, _
   ByVal nValue As Long, _
   ByVal bSetVariable As Boolean _
) As Boolean
Parameters
lpszSection
String value that specifes the section in which the settings entry that you want to modify resides.
lpszEntry
String value that specifies the settings entry to which you want to write the value.
nValue
Integer value to write to the settings entry.
bSetVariable
Boolean value that determines whether or not an associated global variable in PC-DMIS gets changed to the value of the third parameter. This parameter only works for settings entries pertaining to feature ID prefixes.
Return Type
Boolean value that determines whether or not the value of the third parameter was successfully written to the settings entry.
Example

' This code sample sets the number of rows for auto feature cylinders to the integer value of 3.

Dim myapp As New PCDLRN.Application

Set myapp = CreateObject("pcdlrn.application")

myval = myapp.WriteRegistryInt("AutoFeatures", "DccCylNumRows", 3, True)

MsgBox myval

See Also