MSDataRepeaterLib, COM interface constants for VB.Net / VBScript

MSDataRepeaterLib - interface constants

     This page contains simple VBA include for the MSDataRepeaterLib COM library.

library parameters

File NameWINDOWS\system32\MSDATREP.OCX
Guid{5C8CED40-8909-11D0-9483-00A0C91110ED}
Enums7

AppearanceConstants

enum, 2 members.
  'Appearance constants.
Public Enum AppearanceConstants

  'Flat
  drpFlat = 0  '&H0

  '3D
  drp3D = 1  '&H1
End Enum

BorderStyleConstants

enum, 2 members.
  'BorderStyle constants.
Public Enum BorderStyleConstants

  'No border
  drpNoBorder = 0  '&H0

  'Fixed Single
  drpFixedSingle = 1  '&H1
End Enum

MousePointerConstants

enum, 17 members.
  'MousePointer constants.
Public Enum MousePointerConstants

  'Default
  drpDefault = 0  '&H0

  'Arrow mouse pointer.
  drpArrow = 1  '&H1

  'Cross mouse pointer.
  drpCross = 2  '&H2

  'I-Beam mouse pointer.
  drpIBeam = 3  '&H3

  'Icon mouse pointer.
  drpIcon = 4  '&H4

  'Size mouse pointer.
  drpSize = 5  '&H5

  'Size NE SW mouse pointer.
  drpSizeNESW = 6  '&H6

  'Size N S mouse pointer.
  drpSizeNS = 7  '&H7

  'Size NW SE mouse pointer.
  drpSizeNWSE = 8  '&H8

  'Size W E mouse pointer.
  drpSizeEW = 9  '&H9

  'Up arrow mouse pointer.
  drpUpArrow = 10  '&HA

  'Hourglass mouse pointer.
  drpHourglass = 11  '&HB

  'No drop mouse pointer.
  drpNoDrop = 12  '&HC

  'Arrow and Hourglass mouse pointer
  drpArrowHourglass = 13  '&HD

  'Arrow and Question mark mouse pointer
  drpArrowQuestion = 14  '&HE

  'Size all mouse pointer
  drpSizeAll = 15  '&HF

  'Custom mouse pointer icon specified by the MouseIcon property
  drpCustom = 99  '&H63
End Enum

ScrollBarsConstants

enum, 5 members.
  'ScrollBars constants.
Public Enum ScrollBarsConstants

  'None
  drpNoScrollBars = 0  '&H0

  'Horizontal
  drpHorizontal = 1  '&H1

  'Vertical
  drpVertical = 2  '&H2

  'Both
  drpBoth = 3  '&H3

  'Auto
  drpAuto = 4  '&H4
End Enum

RowDividerStyleConstants

enum, 4 members.
  'RowDivider style constants
Public Enum RowDividerStyleConstants

  'No line drawn between rows
  drpNoDivider = 0  '&H0

  'Flat line drawn between rows
  drpFlatLine = 1  '&H1

  '3D inset line drawn between rows
  drpInset = 2  '&H2

  '3D raised line drawn between rows
  drpRaised = 3  '&H3
End Enum

CaptionStyleConstants

enum, 4 members.
  'Caption style constants
Public Enum CaptionStyleConstants

  'No caption drawn
  drpNoCaption = 0  '&H0

  'Draw caption with left aligned text
  drpLeftAligned = 1  '&H1

  'Draw caption with right aligned text
  drpRightAligned = 2  '&H2

  'Draw caption with centered text
  drpCentered = 3  '&H3
End Enum

ErrorConstants

enum, 32 members.
  'Error constants
Public Enum ErrorConstants

  'Out of memory
  drpOutOfMemory = 7  '&H7

  'Type mismatch
  drpTypeMismatch = 13  '&HD

  'Object variable or With block variable not set
  drpObjVarNotSet = 91  '&H5B

  'Invalid property value
  drpInvalidPropertyValue = 380  '&H17C

  'Invalid property array index
  drpInvalidPropertyArrayIndex = 381  '&H17D

  'Property cannot be set at runtime
  drpSetNotSupportedAtRuntime = 382  '&H17E

  'Property is read-only
  drpSetNotSupported = 383  '&H17F

  'Property can't be set on this control
  drpSetNotPermitted = 387  '&H183

  'Property is write-only
  drpGetNotSupported = 394  '&H18A

  'Object doesn't support this property or method
  drpObjectDoesntSupportProp = 438  '&H1B6

  'Unable to create RepeatedControl
  drpCreateRepeaterControl = 32000  '&H7D00

  'Invalid ProgID or class object not supported
  drpInvalidProgID = 32001  '&H7D01

  'Invalid bookmark
  drpInvalidBookmark = 32002  '&H7D02

  'No datasource or datasource is empty
  drpNoDataSource = 32003  '&H7D03

  'There are no visible rows
  drpNoVisibleRows = 32004  '&H7D04

  'The active row cannot be set without affecting the current record position
  drpCantSetActiveRow = 32005  '&H7D05

  'The row index must be between one and VisibleRows
  drpBadRowIndex = 32006  '&H7D06

  'The bookmark is invalid or the corresponding record is no longer present
  drpInvalidRecordBookmark = 32007  '&H7D07

  'Index out of bounds
  drpIndexOutOfBounds = 35600  '&H8B10

  'Element not found
  drpElemNotFound = 35601  '&H8B11

  'Key is not unique in collection
  drpNonUniqueKey = 35602  '&H8B12

  'Invalid key
  drpInvalidKey = 35603  '&H8B13

  'Object is no longer a collection member
  drpElemNotPartOfCollection = 35605  '&H8B15

  'Control's collection has been modified
  drpCollectionChangedDuringEnum = 35606  '&H8B16

  'This would introduce a cycle
  drpWouldIntroduceCycle = 35614  '&H8B1E

  'Invalid object
  drpBadObjectReference = 35610  '&H8B1A

  'Circular object referencing is not allowed
  drpCircularReference = 35700  '&H8B74

  'Property is not bindable
  drpPropertyNotBindable = 35701  '&H8B75

  'Invalid index or key
  drpInvalidIndexOrKey = 35702  '&H8B76

  'PropertyName already bound
  drpAlreadyBound = 35703  '&H8B77

  'Invalid PropertyName
  drpInvalidPropertyName = 35704  '&H8B78

  'Invalid DataField
  drpInvalidDataField = 35705  '&H8B79
End Enum
WUtils.com