DSSharedObjects, COM interface constants for VB.Net / VBScript

DSSharedObjects - interface constants

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

library parameters

File NameProgram Files\Microsoft Visual Studio\Common\MSDev98\Bin\DEVSHL.DLL
Guid{B3CF8E20-19B6-11CF-8E4D-00AA004254C4}
Enums6

DsWindowState

enum, 3 members.
  'Represents the possible states of a window.
Public Enum DsWindowState

  'Window is mazimized.
  dsWindowStateMaximized = 1  '&H1

  'Window is minimized.
  dsWindowStateMinimized = 2  '&H2

  'Window is neither mazimized or minimized.
  dsWindowStateNormal = 3  '&H3
End Enum

DsArrangeStyle

enum, 4 members.
  'Passed to Windows.Arrange to arrange the windows.
Public Enum DsArrangeStyle

  'Minimized windows.
  dsMinimize = 1  '&H1

  'Tiles the windows horizontally.
  dsTileHorizontal = 2  '&H2

  'Tiles the windows vertically.
  dsTileVertical = 3  '&H3

  'Cascades the windows.
  dsCascade = 4  '&H4
End Enum

DsButtonType

enum, 2 members.
  'Represents the button type.
Public Enum DsButtonType

  'Button only has an image.
  dsGlyph = 1  '&H1

  'Buton only has text.
  dsText = 2  '&H2
End Enum

DsSaveChanges

enum, 3 members.
  'Indicates what to do with changes when closing a file.
Public Enum DsSaveChanges

  'Save changes before closing.
  dsSaveChangesYes = 1  '&H1

  'Discard changes before closing.
  dsSaveChangesNo = 2  '&H2

  'Ask user if they want to save changes.
  dsSaveChangesPrompt = 3  '&H3
End Enum

DsSaveStatus

enum, 2 members.
  'Represents the result of a save operation.
Public Enum DsSaveStatus

  'The save operation succeeded.
  dsSaveSucceeded = 1  '&H1

  'The save operation was canceled by the user.
  dsSaveCanceled = 2  '&H2
End Enum

DsProjectTypes

module, 8 members.
Public Enum DsProjectTypes
  dsApplication = "Application" 
  dsDLL = "DLL" 
  dsConsoleApp = "Console Application" 
  dsStaticLib = "Static Library" 
  dsUtility = "Utility" 
  dsMakefile = "Makefile" 
  dsFortran1 = "QuickWin Application" 
  dsFortran2 = "Standard Graphics Application" 
End Enum
WUtils.com