This commit is contained in:
2022-12-25 10:09:49 +01:00
commit 406d053e79
3903 changed files with 2127541 additions and 0 deletions

275
Common/Action.vb Normal file
View File

@@ -0,0 +1,275 @@
Imports System.IO
Imports System.Xml
Imports System.Xml.Schema
Imports System.Data
Imports System.Data.SqlTypes
Imports System.Data.SqlClient
Public Class Action
#Region "Members"
Private Shared _actionSingleton As Action
Private _actionType As ActionType
Private _creatorTgNr As String
Private _sourceApplication As String
Private _parameters As Parameter()
Private _validationSuccess As Boolean
#End Region
#Region "Public methods"
'''<summary>Lädt externes Xml file für automatisierte Aktionen</summary>
'''<param name="xmlImportFile">Das Xml File mit den entsprechenden Parametern</param>
Public Sub Load(ByVal xmlImportFile As FileInfo)
Try
'Validate source
'If Not IsValid(xmlImportFile) Then
' 'xml file is invalid
' Throw New ActionException(1, "Specified file " & xmlImportFile.FullName & " hasn't got a valid strucure which is specified by his schema")
'End If
Dim doc As New XmlDocument()
Try
doc.Load(xmlImportFile.FullName)
Catch ex As Exception
'MsgBox(ex.Message)
End Try
'read header elements
_actionType = CType(doc.SelectSingleNode("action/actionId").InnerText, ActionType)
_creatorTgNr = doc.SelectSingleNode("action/creatorTg").InnerText
_sourceApplication = doc.SelectSingleNode("action/sourceApplication").InnerText
Dim RootNode As XmlElement = doc.DocumentElement
Dim nodeList As XmlNodeList = RootNode.ChildNodes
If nodeList.Count > 0 Then
'set correct array size
ReDim _parameters(nodeList.Count - 1)
Dim value As String
Dim name As String
Dim parameterCounter As Integer = 0
Dim i As Integer
For i = 0 To nodeList.Count - 1
value = nodeList.Item(i).InnerText
name = nodeList.Item(i).LocalName
'append new parameter
_parameters(parameterCounter) = New Parameter(name, value)
parameterCounter = parameterCounter + 1
Next
End If
'Rel 4.02
Catch ex As Exception
Throw ex
TKBLib.Errorhandling.TraceHelper.Msg("EdokaLib.Common.Action.Load", ex.Message & ex.StackTrace, TraceLevel.Error)
End Try
End Sub
'''<summary>Returns a parameter identified by his name</summary>
'''<param name="paramName"></param>
'''<returns></returns>
Public Function GetParameterByName(ByVal paramName As String) As Parameter
Try
Dim param As Parameter
For Each param In _parameters
If param.Name = paramName Then
Return param
End If
Next
Catch ex As Exception
TKBLib.Errorhandling.TraceHelper.Msg("EdokaLib.Common.Action.GetParameterByName", ex.Message & ex.StackTrace, TraceLevel.Error)
Throw ex
End Try
End Function
'''<summary>Zerstört die statische Instanz</summary>
Public Sub Destroy()
Try
_actionSingleton = Nothing
Catch ex As Exception
TKBLib.Errorhandling.TraceHelper.Msg("EdokaLib.Common.Action.Destroy", ex.Message & ex.StackTrace, TraceLevel.Error)
Throw ex
End Try
End Sub
#End Region
#Region "Private methods/subs"
'''<summary>Überprüft ob das Xml file dem angegebenen Schema entspricht</summary>
'''<param name="xmlImportFile"></param>
'''<returns></returns>
Private Function IsValid(ByVal xmlImportFile As FileInfo) As Boolean
Dim reader As New XmlTextReader(xmlImportFile.FullName)
'We pass the xmltextreader into the xmlvalidatingreader
'This will validate the xml doc with the schema file
'NOTE the xml file it self points to the schema file
Dim validator As New XmlValidatingReader(reader)
Try
'First we create the xmltextreader
' Set the validation event handler
'AddHandler validator.ValidationEventHandler, _
'AddressOf ValidationCallback
_validationSuccess = True 'make sure to reset the success var
' Read XML data
While (validator.Read)
End While
'Close the reader.
validator.Close()
reader.Close()
'The validationeventhandler is the only thing that would
'set m_Success to false
Return _validationSuccess
Catch ex As Exception
validator.Close()
reader.Close()
_validationSuccess = False
TKBLib.Errorhandling.TraceHelper.Msg("EdokaLib.Common.Action.IsValid", ex.Message & ex.StackTrace, TraceLevel.Warning)
_validationSuccess = False
Return _validationSuccess
Throw ex
End Try
End Function
Private Sub ValidationCallback(ByVal sender As Object, ByVal args As ValidationEventArgs)
Try
'Display the validation error. This is only called on error
_validationSuccess = False 'Validation failed
Debug.Write("Validation error: " + args.Message + Environment.NewLine)
Throw New ActionException(1, "Fehler bei der Validierung")
Catch ex As Exception
Throw ex
End Try
End Sub
#End Region
#Region "Properties"
Public Shared ReadOnly Property Action() As Action
Get
If IsNothing(_actionSingleton) Then
_actionSingleton = New Action()
End If
Return _actionSingleton
End Get
End Property
Public ReadOnly Property valtionOK() As Boolean
Get
Return _validationSuccess
End Get
End Property
Public ReadOnly Property ActionType() As ActionType
Get
Return _actionType
End Get
End Property
Public ReadOnly Property CreatorTgNr() As String
Get
Return _creatorTgNr
End Get
End Property
Public ReadOnly Property SourceApplication() As String
Get
Return _sourceApplication
End Get
End Property
Public ReadOnly Property Parameters() As Parameter()
Get
Return _parameters
End Get
End Property
#End Region
End Class
#Region "ActionException"
Public Class ActionException
Inherits Exception
Private _number As Integer
Private _description As String
Public Sub New(ByVal number As Integer, ByVal description As String)
_number = number
_description = description
End Sub
Public Overrides ReadOnly Property Message() As String
Get
Return _description
End Get
End Property
Public ReadOnly Property Number() As Integer
Get
Return _number
End Get
End Property
End Class
#End Region
'''<summary>Struct für einzelne Parameter</summary>
Public Structure Parameter
Private _value As String
Private _name As String
Public Sub New(ByVal name As String, ByVal value As String)
Try
_value = value
_name = name
Catch ex As Exception
TKBLib.Errorhandling.TraceHelper.Msg("EdokaLib.Common.Parameter.New", ex.Message & ex.StackTrace, TraceLevel.Error)
Throw ex
End Try
End Sub
Public ReadOnly Property Value() As String
Get
Return _value
End Get
End Property
Public ReadOnly Property Name() As String
Get
Return _name
End Get
End Property
End Structure
Public Enum ActionType
AnzeigePartnerdossier = 1
DokumentAnzeige = 2
DokumentErstellung = 3
DokumentBearbeitung = 4
Statusmutation = 5
HostDokumentAnzeige = 6
UVMDokumentanzeige = 7
ZVDokumentanzeige = 8
DokLoeschung = 9
AusHyperlink = 10
End Enum

31
Common/AssemblyInfo.vb Normal file
View File

@@ -0,0 +1,31 @@
Imports System.Reflection
Imports System.Runtime.InteropServices
' Allgemeine Informationen über eine Assembly werden über die folgende
' Attributgruppe gesteuert. Ändern Sie diese Attributwerte, um Informationen,
' die mit einer Assembly verknüpft sind, zu bearbeiten.
' Die Werte der Assemblyattribute überprüfen
<Assembly: AssemblyTitle("EDOKA.Common")>
<Assembly: AssemblyDescription("Common classes of EDOKA")>
<Assembly: AssemblyCompany("TKB")>
<Assembly: AssemblyProduct("EDOKA")>
<Assembly: AssemblyCopyright("TKB")>
<Assembly: AssemblyTrademark("-")>
<Assembly: CLSCompliant(True)>
'Die folgende GUID ist für die ID der Typbibliothek, wenn dieses Projekt in COM angezeigt wird
<Assembly: Guid("F2EA4A43-02E3-4E62-8131-D928B2663D09")>
' Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
'
' Haupversion
' Nebenversion
' Buildnummer
' Revisionsnummer
'
' Sie können alle Werte angeben oder auf die standardmäßigen Build- und Revisionsnummern
' zurückgreifen, indem Sie '*' wie unten angezeigt verwenden:
<Assembly: AssemblyVersion("1.0.*")>

98
Common/Common.vbdoc Normal file
View File

@@ -0,0 +1,98 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<!-- VBdocman .NET config file for current project.-->
<!-- Example: <add key="settingName" value="settingValue"/> -->
<add key="VBdocman_addSee" value="0" />
<add key="VBdocman_addParam" value="-1" />
<add key="VBdocman_addReturn" value="-1" />
<add key="VBdocman_addDescription" value="-1" />
<add key="VBdocman_addRem" value="-1" />
<add key="VBdocman_addSame" value="0" />
<add key="VBdocman_addExample" value="0" />
<add key="VBdocman_addException" value="0" />
<add key="VBdocman_addAuthor" value="0" />
<add key="VBdocman_addRevision" value="0" />
<add key="VBdocman_addVersion" value="0" />
<add key="VBdocman_addIncludeSource" value="0" />
<add key="VBdocman_addUser1" value="0" />
<add key="VBdocman_addUser2" value="0" />
<add key="VBdocman_addUser3" value="0" />
<add key="VBdocman_addUser4" value="0" />
<add key="VBdocman_addUser5" value="0" />
<add key="VBdocman_user1Name" value="user1" />
<add key="VBdocman_user2Name" value="user2" />
<add key="VBdocman_user3Name" value="user3" />
<add key="VBdocman_user4Name" value="user4" />
<add key="VBdocman_user5Name" value="user5" />
<add key="VBdocman_user1Default" value="" />
<add key="VBdocman_user2Default" value="" />
<add key="VBdocman_user3Default" value="" />
<add key="VBdocman_user4Default" value="" />
<add key="VBdocman_user5Default" value="" />
<add key="VBdocman_user1Label" value="User Field 1" />
<add key="VBdocman_user2Label" value="User Field 2" />
<add key="VBdocman_user3Label" value="User Field 3" />
<add key="VBdocman_user4Label" value="User Field 4" />
<add key="VBdocman_user5Label" value="User Field 5" />
<add key="VBdocman_comNonCommented" value="-1" />
<add key="VBdocman_comPublic" value="-1" />
<add key="VBdocman_comPrivate" value="-1" />
<add key="VBdocman_comFriend" value="-1" />
<add key="VBdocman_comProtected" value="-1" />
<add key="VBdocman_comProtectedFriend" value="-1" />
<add key="VBdocman_comMethod" value="-1" />
<add key="VBdocman_comStdModule" value="-1" />
<add key="VBdocman_comObject" value="-1" />
<add key="VBdocman_comForm" value="-1" />
<add key="VBdocman_comProperty" value="-1" />
<add key="VBdocman_comEvent" value="-1" />
<add key="VBdocman_comVariable" value="-1" />
<add key="VBdocman_comConstant" value="0" />
<add key="VBdocman_comEnumeration" value="0" />
<add key="VBdocman_comStructure" value="0" />
<add key="VBdocman_comDelegate" value="0" />
<add key="VBdocman_comInterface" value="0" />
<add key="VBdocman_comAttribute" value="0" />
<add key="VBdocman_comEventDecl" value="0" />
<add key="VBdocman_comDeclare" value="0" />
<add key="VBdocman_comContextID" value="0" />
<add key="VBdocman_comWriteDescription" value="-1" />
<add key="VBdocman_useConditionalCompilation" value="0" />
<add key="VBdocman_conditionalConstants" value="" />
<add key="VBdocman_showFormsSeparate" value="0" />
<add key="VBdocman_indentMode" value="1" />
<add key="VBdocman_addingMode" value="0" />
<add key="VBdocman_insertSourceGlobal" value="1" />
<add key="VBdocman_unbreakSourceLines" value="0" />
<add key="VBdocman_commentStyleRecognize" value="3" />
<add key="VBdocman_xmlCommentLinePrefix" value="'''" />
<add key="VBdocman_hxcompPath" value="" />
<add key="VBdocman_customVar1" value="" />
<add key="VBdocman_customVar2" value="" />
<add key="VBdocman_customVar3" value="" />
<add key="VBdocman_autoUpdateParams" value="0" />
<add key="VBdocman_wordWrapLength" value="80" />
<add key="VBdocman_autoInsertEOL" value="0" />
<add key="VBdocman_useModalEditor" value="-1" />
<add key="VBdocman_nonModalEditorDockable" value="-1" />
<add key="VBdocman_nonModalEditorAsToolwindow" value="-1" />
<add key="VBdocman_nonModalEditorAutoUpdate" value="0" />
<add key="VBdocman_nonModalEditorAutoApply" value="-1" />
<add key="VBdocman_titlePageText" value="" />
<add key="VBdocman_rootNamespaceText" value="" />
<add key="VBdocman_rootNamespaceCommentStyle" value="2" />
<add key="VBdocman_pageFooterText" value="2006 by Zubler &amp; Partner AG" />
<add key="VBdocman_outputPath" value="C:\data\EDOKA\Common\VBdoc" />
<add key="VBdocman_templateFolder" value="c:\program files\vbdocmannet\Templates" />
<add key="VBdocman_externalFilesFolder" value="" />
<add key="VBdocman_fileNamingConvention" value="1" />
<add key="VBdocman_templatePath" value="chm.vbdt" />
<add key="VBdocman_comModules_Datenbank.vb" value="On" />
<add key="VBdocman_comModules_Crypto.vb" value="On" />
<add key="VBdocman_comModules_AssemblyInfo.vb" value="On" />
<add key="VBdocman_comModules_Tools.vb" value="On" />
<add key="VBdocman_comModules_Consts.vb" value="On" />
<add key="VBdocman_comModules_Action.vb" value="On" />
</appSettings>
</configuration>

199
Common/Common.vbproj Normal file
View File

@@ -0,0 +1,199 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup>
<ProjectType>Local</ProjectType>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{67E15143-9CF6-4595-8A52-A01A16370E51}</ProjectGuid>
<SccProjectName>
</SccProjectName>
<SccLocalPath>
</SccLocalPath>
<SccAuxPath>
</SccAuxPath>
<SccProvider>
</SccProvider>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ApplicationIcon>
</ApplicationIcon>
<AssemblyKeyContainerName>
</AssemblyKeyContainerName>
<AssemblyName>EDOKALib.Common</AssemblyName>
<AssemblyOriginatorKeyFile>
</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyMode>None</AssemblyOriginatorKeyMode>
<DefaultClientScript>JScript</DefaultClientScript>
<DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>
<DefaultTargetSchema>IE50</DefaultTargetSchema>
<DelaySign>false</DelaySign>
<OutputType>Library</OutputType>
<OptionCompare>Binary</OptionCompare>
<OptionExplicit>On</OptionExplicit>
<OptionStrict>Off</OptionStrict>
<RootNamespace>EDOKALib.Common</RootNamespace>
<StartupObject>EDOKALib.Common.%28Keine%29</StartupObject>
<FileUpgradeFlags>
</FileUpgradeFlags>
<MyType>Windows</MyType>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>3.5</OldToolsVersion>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>bin\</OutputPath>
<DocumentationFile>EDOKALib.Common.xml</DocumentationFile>
<BaseAddress>285212672</BaseAddress>
<ConfigurationOverrideFile>
</ConfigurationOverrideFile>
<DefineConstants>
</DefineConstants>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningLevel>1</WarningLevel>
<NoWarn>42016,42017,42018,42019,42032,42353,42354,42355</NoWarn>
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>bin\</OutputPath>
<DocumentationFile>EDOKALib.Common.xml</DocumentationFile>
<BaseAddress>285212672</BaseAddress>
<ConfigurationOverrideFile>
</ConfigurationOverrideFile>
<DefineConstants>
</DefineConstants>
<DefineDebug>false</DefineDebug>
<DefineTrace>true</DefineTrace>
<DebugSymbols>false</DebugSymbols>
<Optimize>true</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningLevel>1</WarningLevel>
<NoWarn>42016,42017,42018,42019,42032,42353,42354,42355</NoWarn>
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'EDOKA_DLLs|AnyCPU' ">
<OutputPath>bin\</OutputPath>
<DocumentationFile>EDOKALib.Common.xml</DocumentationFile>
<BaseAddress>285212672</BaseAddress>
<ConfigurationOverrideFile>
</ConfigurationOverrideFile>
<DefineConstants>
</DefineConstants>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningLevel>1</WarningLevel>
<NoWarn>42016,42017,42018,42019,42032,42353,42354,42355</NoWarn>
<DebugType>full</DebugType>
</PropertyGroup>
<ItemGroup>
<Reference Include="System">
<Name>System</Name>
</Reference>
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data">
<Name>System.Data</Name>
</Reference>
<Reference Include="System.Xml">
<Name>System.XML</Name>
</Reference>
<Reference Include="TKBLib.Errorhandling.v1">
<Name>TKBLib.Errorhandling.v1</Name>
<HintPath>..\..\TKBLib\aktuellDebug\TKBLib.Errorhandling.v1.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Import Include="Microsoft.VisualBasic" />
<Import Include="System" />
<Import Include="System.Collections" />
<Import Include="System.Data" />
<Import Include="System.Diagnostics" />
<Import Include="System.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="Action.vb">
<SubType>Code</SubType>
</Compile>
<Compile Include="AssemblyInfo.vb">
<SubType>Code</SubType>
</Compile>
<Compile Include="Consts.vb">
<SubType>Code</SubType>
</Compile>
<Compile Include="Crypto.vb">
<SubType>Code</SubType>
</Compile>
<Compile Include="Datenbank.vb">
<SubType>Code</SubType>
</Compile>
<Compile Include="Tools.vb">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework Client Profile</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
<Visible>False</Visible>
<ProductName>.NET Framework 2.0 %28x86%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
<Visible>False</Visible>
<ProductName>.NET Framework 3.0 %28x86%29</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Folder Include="My Project\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.VisualBasic.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
</Project>

93
Common/Common.vbproj.user Normal file
View File

@@ -0,0 +1,93 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup>
<LastOpenVersion>7.10.3077</LastOpenVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ReferencePath>C:\proj\TKBLib\aktuellDebug\</ReferencePath>
<CopyProjectDestinationFolder>
</CopyProjectDestinationFolder>
<CopyProjectUncPath>
</CopyProjectUncPath>
<CopyProjectOption>0</CopyProjectOption>
<ProjectView>ProjectFiles</ProjectView>
<ProjectTrust>0</ProjectTrust>
<PublishUrlHistory>
</PublishUrlHistory>
<InstallUrlHistory>
</InstallUrlHistory>
<SupportUrlHistory>
</SupportUrlHistory>
<UpdateUrlHistory>
</UpdateUrlHistory>
<BootstrapperUrlHistory>
</BootstrapperUrlHistory>
<ErrorReportUrlHistory>
</ErrorReportUrlHistory>
<FallbackCulture>de-DE</FallbackCulture>
<VerifyUploadedFiles>false</VerifyUploadedFiles>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<EnableASPDebugging>false</EnableASPDebugging>
<EnableASPXDebugging>false</EnableASPXDebugging>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
<EnableSQLServerDebugging>false</EnableSQLServerDebugging>
<RemoteDebugEnabled>false</RemoteDebugEnabled>
<RemoteDebugMachine>
</RemoteDebugMachine>
<StartAction>Project</StartAction>
<StartArguments>
</StartArguments>
<StartPage>
</StartPage>
<StartProgram>
</StartProgram>
<StartURL>
</StartURL>
<StartWorkingDirectory>
</StartWorkingDirectory>
<StartWithIE>true</StartWithIE>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<EnableASPDebugging>false</EnableASPDebugging>
<EnableASPXDebugging>false</EnableASPXDebugging>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
<EnableSQLServerDebugging>false</EnableSQLServerDebugging>
<RemoteDebugEnabled>false</RemoteDebugEnabled>
<RemoteDebugMachine>
</RemoteDebugMachine>
<StartAction>Project</StartAction>
<StartArguments>
</StartArguments>
<StartPage>
</StartPage>
<StartProgram>
</StartProgram>
<StartURL>
</StartURL>
<StartWorkingDirectory>
</StartWorkingDirectory>
<StartWithIE>true</StartWithIE>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'EDOKA_DLLs|AnyCPU' ">
<EnableASPDebugging>false</EnableASPDebugging>
<EnableASPXDebugging>false</EnableASPXDebugging>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
<EnableSQLServerDebugging>false</EnableSQLServerDebugging>
<RemoteDebugEnabled>false</RemoteDebugEnabled>
<RemoteDebugMachine>
</RemoteDebugMachine>
<StartAction>Project</StartAction>
<StartArguments>
</StartArguments>
<StartPage>
</StartPage>
<StartProgram>
</StartProgram>
<StartURL>
</StartURL>
<StartWorkingDirectory>
</StartWorkingDirectory>
<StartWithIE>true</StartWithIE>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,10 @@
""
{
"FILE_VERSION" = "9237"
"ENLISTMENT_CHOICE" = "NEVER"
"PROJECT_FILE_RELATIVE_PATH" = ""
"NUMBER_OF_EXCLUDED_FILES" = "0"
"ORIGINAL_PROJECT_FILE_PATH" = ""
"NUMBER_OF_NESTED_PROJECTS" = "0"
"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
}

140
Common/Common.vsdoc Normal file
View File

@@ -0,0 +1,140 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<!-- VBdocman .NET config file for current project.-->
<!-- Example: <add key="settingName" value="settingValue"/> -->
<add key="VBdocman_addSee" value="0" />
<add key="VBdocman_addParam" value="-1" />
<add key="VBdocman_addReturn" value="-1" />
<add key="VBdocman_addDescription" value="-1" />
<add key="VBdocman_addRem" value="-1" />
<add key="VBdocman_addSame" value="0" />
<add key="VBdocman_addExample" value="0" />
<add key="VBdocman_addException" value="0" />
<add key="VBdocman_addAuthor" value="0" />
<add key="VBdocman_addRevision" value="0" />
<add key="VBdocman_addVersion" value="0" />
<add key="VBdocman_addIncludeSource" value="0" />
<add key="VBdocman_addUser1" value="0" />
<add key="VBdocman_addUser2" value="0" />
<add key="VBdocman_addUser3" value="0" />
<add key="VBdocman_addUser4" value="0" />
<add key="VBdocman_addUser5" value="0" />
<add key="VBdocman_user1Name" value="user1" />
<add key="VBdocman_user2Name" value="user2" />
<add key="VBdocman_user3Name" value="user3" />
<add key="VBdocman_user4Name" value="user4" />
<add key="VBdocman_user5Name" value="user5" />
<add key="VBdocman_user1Default" value="" />
<add key="VBdocman_user2Default" value="" />
<add key="VBdocman_user3Default" value="" />
<add key="VBdocman_user4Default" value="" />
<add key="VBdocman_user5Default" value="" />
<add key="VBdocman_user1Label" value="User Field 1" />
<add key="VBdocman_user2Label" value="User Field 2" />
<add key="VBdocman_user3Label" value="User Field 3" />
<add key="VBdocman_user4Label" value="User Field 4" />
<add key="VBdocman_user5Label" value="User Field 5" />
<add key="VBdocman_comNonCommented"><![CDATA[-1]]></add>
<add key="VBdocman_comPublic"><![CDATA[-1]]></add>
<add key="VBdocman_comPrivate"><![CDATA[-1]]></add>
<add key="VBdocman_comFriend"><![CDATA[-1]]></add>
<add key="VBdocman_comProtected"><![CDATA[-1]]></add>
<add key="VBdocman_comProtectedFriend"><![CDATA[-1]]></add>
<add key="VBdocman_comMethod"><![CDATA[-1]]></add>
<add key="VBdocman_comStdModule"><![CDATA[-1]]></add>
<add key="VBdocman_comObject"><![CDATA[-1]]></add>
<add key="VBdocman_comForm"><![CDATA[-1]]></add>
<add key="VBdocman_comProperty"><![CDATA[-1]]></add>
<add key="VBdocman_comEvent"><![CDATA[-1]]></add>
<add key="VBdocman_comVariable"><![CDATA[-1]]></add>
<add key="VBdocman_comConstant"><![CDATA[0]]></add>
<add key="VBdocman_comEnumeration"><![CDATA[0]]></add>
<add key="VBdocman_comStructure"><![CDATA[0]]></add>
<add key="VBdocman_comDelegate"><![CDATA[0]]></add>
<add key="VBdocman_comInterface"><![CDATA[0]]></add>
<add key="VBdocman_comAttribute"><![CDATA[0]]></add>
<add key="VBdocman_comEventDecl"><![CDATA[0]]></add>
<add key="VBdocman_comDeclare"><![CDATA[0]]></add>
<add key="VBdocman_comContextID"><![CDATA[0]]></add>
<add key="VBdocman_comWriteDescription"><![CDATA[-1]]></add>
<add key="VBdocman_useConditionalCompilation"><![CDATA[0]]></add>
<add key="VBdocman_conditionalConstants"><![CDATA[]]></add>
<add key="VBdocman_showFormsSeparate"><![CDATA[0]]></add>
<add key="VBdocman_indentMode"><![CDATA[1]]></add>
<add key="VBdocman_addingMode" value="0" />
<add key="VBdocman_insertSourceGlobal"><![CDATA[1]]></add>
<add key="VBdocman_unbreakSourceLines"><![CDATA[0]]></add>
<add key="VBdocman_commentStyleRecognize" value="3" />
<add key="VBdocman_xmlCommentLinePrefix" value="'''" />
<add key="VBdocman_hxcompPath" value="" />
<add key="VBdocman_customVar1"><![CDATA[]]></add>
<add key="VBdocman_customVar2"><![CDATA[]]></add>
<add key="VBdocman_customVar3"><![CDATA[]]></add>
<add key="VBdocman_autoUpdateParams" value="0" />
<add key="VBdocman_wordWrapLength" value="80" />
<add key="VBdocman_autoInsertEOL" value="0" />
<add key="VBdocman_useModalEditor" value="-1" />
<add key="VBdocman_nonModalEditorDockable" value="-1" />
<add key="VBdocman_nonModalEditorAsToolwindow" value="-1" />
<add key="VBdocman_nonModalEditorAutoUpdate" value="0" />
<add key="VBdocman_nonModalEditorAutoApply" value="-1" />
<add key="VBdocman_titlePageText"><![CDATA[]]></add>
<add key="VBdocman_rootNamespaceText"><![CDATA[]]></add>
<add key="VBdocman_rootNamespaceCommentStyle"><![CDATA[2]]></add>
<add key="VBdocman_pageFooterText"><![CDATA[2006 by Zubler & Partner AG]]></add>
<add key="VBdocman_outputPath"><![CDATA[C:\data\EDOKA\Common\VBdoc]]></add>
<add key="VBdocman_templateFolder"><![CDATA[$(VSdocmanDir)Templates]]></add>
<add key="VBdocman_externalFilesFolder"><![CDATA[]]></add>
<add key="VBdocman_fileNamingConvention"><![CDATA[1]]></add>
<add key="VBdocman_templatePath"><![CDATA[chm_msdn2.vbdt]]></add>
<add key="VBdocman_regexFilters"><![CDATA[<?xml version="1.0" encoding="utf-8"?>
<filters />]]></add>
<add key="VBdocman_showInherited"><![CDATA[-1]]></add>
<add key="VBdocman_removeAttributes"><![CDATA[0]]></add>
<add key="VBdocman_generateVbSyntax"><![CDATA[-1]]></add>
<add key="VBdocman_generateCsharpSyntax"><![CDATA[-1]]></add>
<add key="VBdocman_generateCppSyntax"><![CDATA[-1]]></add>
<add key="VBdocman_generateJscriptSyntax"><![CDATA[-1]]></add>
<add key="VBdocman_supportedPlatforms"><![CDATA[Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition]]></add>
<add key="VBdocman_supportedNetFramework"><![CDATA[3.0, 2.0, 1.1, 1.0]]></add>
<add key="VBdocman_supportedNetCompactFramework"><![CDATA[2.0, 1.0]]></add>
<add key="VBdocman_supportedXnaFramework"><![CDATA[1.0]]></add>
<add key="VBdocman_templateLocale"><![CDATA[en-US]]></add>
<add key="VBdocman_enumSorting"><![CDATA[1]]></add>
<add key="VBdocman_helpTitle"><![CDATA[Common Reference]]></add>
<add key="VBdocman_customTopics"><![CDATA[<?xml version="1.0" encoding="utf-8"?>
<topics>
<topic>
<type>normal</type>
<is-default>yes</is-default>
<name>Common Reference</name>
<id>common_reference</id>
<comment><![CDATA[<summary></summary>vsdocman_escaped_]_]_></comment>
<namespaces />
<topics>
<topic>
<type>placeholder</type>
<is-default>no</is-default>
<name />
<id>4d5e9be40c0d4c4392278cd84296c2f0</id>
<comment><![CDATA[vsdocman_escaped_]_]_></comment>
<namespaces />
<topics />
</topic>
</topics>
</topic>
</topics>]]></add>
<add key="VBdocman_linkForExternalNotInFramework"><![CDATA[0]]></add>
<add key="VBdocman_allowMacrosInComments"><![CDATA[0]]></add>
<add key="VBdocman_emptyOutputFolder"><![CDATA[0]]></add>
<add key="VBdocman_comModules_Action.vb"><![CDATA[On]]></add>
<add key="VBdocman_comModules_AssemblyInfo.vb"><![CDATA[On]]></add>
<add key="VBdocman_comModules_Consts.vb"><![CDATA[On]]></add>
<add key="VBdocman_comModules_Crypto.vb"><![CDATA[On]]></add>
<add key="VBdocman_comModules_Datenbank.vb"><![CDATA[On]]></add>
<add key="VBdocman_comModules_E:...Software-Projekte...VS2008...EDOKA...Client...EDOKA...Dokumentmanagement...AssemblyInfo.vb"><![CDATA[On]]></add>
<add key="VBdocman_comModules_Tools.vb"><![CDATA[On]]></add>
</appSettings>
<activeProfile>default</activeProfile>
</configuration>

10
Common/Consts.vb Normal file
View File

@@ -0,0 +1,10 @@
'''<summary>Diese klasse beinhaltet Konstanten welche im der gesamten EDOKAApp verwendet werden</summary>
Public Class Consts
Public Shared ReadOnly WARNUNG As String = "Warnung"
Public Shared ReadOnly FEHLER As String = "Fehler"
Public Shared ReadOnly INFO As String = "Information"
Public Shared ReadOnly ACTION_FILE_EXTENSION As String = "edk"
End Class

50
Common/Crypto.vb Normal file
View File

@@ -0,0 +1,50 @@
'''<summary>Diese klasse beinhaltet Methoden welche für den Kryptografischen Teil im EDOKA verwendet werden</summary>
Public Class Crypto
Const CRYPTO_PASSWORD As String = "HutterundMueller"
'''<summary>Verschlüsselt einen Text mit dem angegebenen Passwort</summary>
'''<param name="strText">Zu verschlüsselnder Text</param>
'''<includesource>yes</includesource>
Public Shared Function EncryptText(ByVal strText As String)
Dim i As Integer, c As Integer
Dim strBuff As String
Dim strPwd As String = CRYPTO_PASSWORD
strPwd = UCase$(strPwd)
If Len(strPwd) Then
For i = 1 To Len(strText)
c = Asc(Mid$(strText, i, 1))
c = c + Asc(Mid$(strPwd, (i Mod Len(strPwd)) + 1, 1))
strBuff = strBuff & Chr(c And &HFF)
Next i
Else
strBuff = strText
End If
EncryptText = strBuff
End Function
'''<summary>Entschlüsselt einen Text</summary>
'''<param name="strText">Zu verschlüsselnder Text</param>
'''<includesource>yes</includesource>
Public Shared Function DecryptText(ByVal strText As String)
Dim i As Integer, c As Integer
Dim strBuff As String
Dim strPwd As String = CRYPTO_PASSWORD
strPwd = UCase$(strPwd)
If Len(strPwd) Then
For i = 1 To Len(strText)
c = Asc(Mid$(strText, i, 1))
c = c - Asc(Mid$(strPwd, (i Mod Len(strPwd)) + 1, 1))
strBuff = strBuff & Chr(c And &HFF)
Next i
Else
strBuff = strText
End If
DecryptText = strBuff
End Function
End Class
'End Namespace

29
Common/Datenbank.vb Normal file
View File

@@ -0,0 +1,29 @@
Imports System.IO
'''<summary>Diese klasse beinhaltet Methoden welche für den Datenbank Zugriff im DataAccess verwendet werden</summary>
Public Class Datenbank
'''<summary>Liest aus dem Connection String file edokaconn.cfg aus</summary>
'''<returns>Den entschlüsseleten DSN string</returns>
Overloads Shared Function GetDSN() As String
Try
Dim file As System.IO.File
Dim reader As System.IO.StreamReader
Dim connectionString As String
reader = file.OpenText(AppDomain.CurrentDomain.BaseDirectory + "edokaconn.cfg")
connectionString = reader.ReadLine
connectionString = Crypto.DecryptText(connectionString)
connectionString = Left(connectionString, Len(connectionString) - 1)
reader.Close()
GetDSN = connectionString
Catch ex As Exception
Throw ex
End Try
End Function
End Class

View File

@@ -0,0 +1,99 @@
<?xml version="1.0"?>
<!--
Generated by VBdocman .NET, see http://www.vbdocman.com
-->
<doc>
<assembly>
<name>EDOKALib.Common</name>
</assembly>
<members>
<member name="T:EDOKALib.Common.Datenbank">
<summary>
Diese klasse beinhaltet Methoden welche für den Datenbank Zugriff im DataAccess verwendet werden</summary>
</member>
<member name="M:EDOKALib.Common.Datenbank.GetDSN">
<summary>
Liest aus dem Connection String file edokaconn.cfg aus</summary>
<returns>
Den entschlüsseleten DSN string</returns>
</member>
<member name="T:EDOKALib.Common.Crypto">
<summary>
Diese klasse beinhaltet Methoden welche für den Kryptografischen Teil im EDOKA verwendet werden</summary>
</member>
<member name="M:EDOKALib.Common.Crypto.EncryptText(System.String)">
<summary>
Verschlüsselt einen Text mit dem angegebenen Passwort</summary>
<param name="strText">
Zu verschlüsselnder Text</param>
</member>
<member name="M:EDOKALib.Common.Crypto.DecryptText(System.String)">
<summary>
Entschlüsselt einen Text</summary>
<param name="strText">
Zu verschlüsselnder Text</param>
</member>
<member name="T:EDOKALib.Common.Tools">
<summary>
Diese klasse beinhaltet Methoden, welche im gesamten Edoka über alle Layers verwendet werden</summary>
</member>
<member name="M:EDOKALib.Common.Tools.CToInt16(System.Object)">
<param name="o">
</param>
</member>
<member name="M:EDOKALib.Common.Tools.CToInt32(System.Object)">
<param name="o">
</param>
</member>
<member name="M:EDOKALib.Common.Tools.CToInt64(System.Object)">
<param name="o">
</param>
</member>
<member name="M:EDOKALib.Common.Tools.CToSingle(System.Object)">
<param name="o">
</param>
</member>
<member name="M:EDOKALib.Common.Tools.CToDouble(System.Object)">
<param name="o">
</param>
</member>
<member name="M:EDOKALib.Common.Tools.CToDecimal(System.Object)">
<param name="o">
</param>
</member>
<member name="M:EDOKALib.Common.Tools.CToByte(System.Object)">
<param name="o">
</param>
</member>
<member name="M:EDOKALib.Common.Tools.CToByteArr(System.Object)">
<param name="o">
</param>
</member>
<member name="M:EDOKALib.Common.Tools.CToString(System.Object)">
<param name="o">
</param>
</member>
<member name="M:EDOKALib.Common.Tools.CToBool(System.Object)">
<param name="o">
</param>
</member>
<member name="M:EDOKALib.Common.Tools.CToDateTime(System.Object)">
<param name="o">
</param>
</member>
<member name="M:EDOKALib.Common.Tools.ValidateDS(System.Data.DataSet)">
<summary>
Überprüft TableCount und RowCount eines DataSet</summary>
<returns>
True wenn table- und rowcount > 0</returns>
<param name="ds">
</param>
</member>
<member name="T:EDOKALib.Common.Consts">
<summary>
Diese klasse beinhaltet Konstanten welche im der gesamten EDOKAApp verwendet werden</summary>
</member>
<member name="N:EDOKALib.Common">
</member>
</members>
</doc>

131
Common/Tools.vb Normal file
View File

@@ -0,0 +1,131 @@
'''<summary>Diese klasse beinhaltet Methoden, welche im gesamten Edoka über alle Layers verwendet werden</summary>
Public Class Tools
Public Shared Function CToInt16(ByVal o As Object) As Int16
If o Is System.DBNull.Value Then
Return 0
Else
If TypeOf o Is Int16 Then
Return CShort(o)
End If
End If
End Function
Public Shared Function CToInt32(ByVal o As Object) As Int32
If o Is System.DBNull.Value Then
Return 0
Else
If TypeOf o Is Int32 Then
Return CInt(o)
End If
End If
End Function
Public Shared Function CToInt64(ByVal o As Object) As Int64
If o Is System.DBNull.Value Then
Return 0
Else
If TypeOf o Is Int64 Then
Return CLng(o)
End If
End If
End Function
Public Shared Function CToSingle(ByVal o As Object) As Single
If o Is System.DBNull.Value Then
Return 0
Else
If TypeOf o Is Single Then
Return CSng(o)
End If
End If
End Function
Public Shared Function CToDouble(ByVal o As Object) As Double
If o Is System.DBNull.Value Then
Return 0
Else
If TypeOf o Is Double Then
Return CDbl(o)
End If
End If
End Function
Public Shared Function CToDecimal(ByVal o As Object) As Decimal
If o Is System.DBNull.Value Then
Return 0
Else
If TypeOf o Is Decimal Then
Return CDec(o)
End If
End If
End Function
Public Shared Function CToByte(ByVal o As Object) As Byte
If o Is System.DBNull.Value Then
Return New Byte()
Else
If TypeOf o Is Byte Then
Return CByte(o)
End If
End If
End Function
Public Shared Function CToByteArr(ByVal o As Object) As Byte()
If o Is System.DBNull.Value Then
Return New Byte() {}
Else
If TypeOf o Is Byte() Then
Return CType(o, Byte())
End If
End If
End Function
Public Shared Function CToString(ByVal o As Object) As String
If o Is System.DBNull.Value Then
Return ""
Else
If TypeOf o Is String Then
Return CStr(o)
End If
End If
End Function
Public Shared Function CToBool(ByVal o As Object) As Boolean
If o Is System.DBNull.Value Then
Return False
Else
If TypeOf o Is Boolean Then
Return CBool(o)
End If
End If
End Function
Public Shared Function CToDateTime(ByVal o As Object) As DateTime
If o Is System.DBNull.Value Then
Return DateTime.MinValue
Else
If TypeOf o Is DateTime Then
Return CDate(o)
End If
End If
End Function
'''<summary>Überprüft TableCount und RowCount eines DataSet</summary>
'''<param name="ds"></param>
'''<returns>True wenn table- und rowcount > 0</returns>
Public Shared Function ValidateDS(ByVal ds As DataSet) As Boolean
Try
If ds.Tables.Count > 0 Then
If ds.Tables(0).Rows.Count > 0 Then
Return True
End If
End If
Return False
Catch ex As Exception
TKBLib.Errorhandling.TraceHelper.Msg("EDOKALib.Common.Tools.ValidateDS", ex.Message + " " + ex.StackTrace, TraceLevel.Error)
End Try
End Function
End Class

9
Common/TraceHelper.vb Normal file
View File

@@ -0,0 +1,9 @@
Imports System.Diagnostics
Public Class TraceHelper
Private Shared _traceCriteria As New TraceSwitch("EDOKA.Common.TraceHelper", "Criteria to trace the messages")
Public Shared Sub Msg(ByVal l As TraceLevel, ByVal message As String)
Trace.WriteIf(l >= _traceCriteria.Level, message)
End Sub
End Class

24
Common/Tracer.vb Normal file
View File

@@ -0,0 +1,24 @@
Imports System.Diagnostics
Public MustInherit Class Tracer
Inherits TraceListener
Public Sub New()
End Sub
Public Overloads Sub WriteLine(ByVal message As String, ByVal category As String)
End Sub
Public Overloads Shared Sub Write(ByVal message As String, ByVal category As String)
End Sub
End Class

BIN
Common/VBdoc/Common.chm Normal file

Binary file not shown.

494
Common/VBdoc/Common.hhc Normal file
View File

@@ -0,0 +1,494 @@
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<HTML>
<HEAD>
<!-- Sitemap 1.0 -->
</HEAD>
<BODY>
<OBJECT type="text/site properties">
<param name="Window Styles" value="0x800025">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Common">
<param name="Local" value="Common+title.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="EDOKALib.Common Namespace">
<param name="Local" value="topic_000000000000000F.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="EDOKALib.Common Members">
<param name="Local" value="topic_000000000000000F_members+.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Consts Class">
<param name="Local" value="topic_000000000000000B.html">
</OBJECT>
<UL>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Crypto Class">
<param name="Local" value="topic_000000000000000C.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Crypto Members">
<param name="Local" value="topic_000000000000000C_members+.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Methods">
<param name="Local" value="topic_000000000000000C_methods+.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="DecryptText Method">
<param name="Local" value="topic_000000000000000E.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="EncryptText Method">
<param name="Local" value="topic_0000000000000010.html">
</OBJECT>
</UL>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Datenbank Class">
<param name="Local" value="topic_000000000000000D.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Datenbank Members">
<param name="Local" value="topic_000000000000000D_members+.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Methods">
<param name="Local" value="topic_000000000000000D_methods+.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="GetDSN Method">
<param name="Local" value="topic_0000000000000011.html">
</OBJECT>
</UL>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Tools Class">
<param name="Local" value="topic_0000000000000012.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Tools Members">
<param name="Local" value="topic_0000000000000012_members+.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Methods">
<param name="Local" value="topic_0000000000000012_methods+.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="CToBool Method">
<param name="Local" value="topic_0000000000000000.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="CToByte Method">
<param name="Local" value="topic_0000000000000001.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="CToByteArr Method">
<param name="Local" value="topic_0000000000000002.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="CToDateTime Method">
<param name="Local" value="topic_0000000000000003.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="CToDecimal Method">
<param name="Local" value="topic_0000000000000004.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="CToDouble Method">
<param name="Local" value="topic_0000000000000005.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="CToInt16 Method">
<param name="Local" value="topic_0000000000000006.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="CToInt32 Method">
<param name="Local" value="topic_0000000000000007.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="CToInt64 Method">
<param name="Local" value="topic_0000000000000008.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="CToSingle Method">
<param name="Local" value="topic_0000000000000009.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="CToString Method">
<param name="Local" value="topic_000000000000000A.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="ValidateDS Method">
<param name="Local" value="topic_0000000000000013.html">
</OBJECT>
</UL>
</UL>
</UL>
</UL>
</UL>
</BODY>
</HTML>

130
Common/VBdoc/Common.hhk Normal file
View File

@@ -0,0 +1,130 @@
<HTML>
<!-- Sitemap 1.0 -->
<OBJECT type="text/site properties">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="CToBool Method">
<param name="Name" value="CToBool Method">
<param name="Local" value="topic_0000000000000000.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="CToByte Method">
<param name="Name" value="CToByte Method">
<param name="Local" value="topic_0000000000000001.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="CToByteArr Method">
<param name="Name" value="CToByteArr Method">
<param name="Local" value="topic_0000000000000002.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="CToDateTime Method">
<param name="Name" value="CToDateTime Method">
<param name="Local" value="topic_0000000000000003.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="CToDecimal Method">
<param name="Name" value="CToDecimal Method">
<param name="Local" value="topic_0000000000000004.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="CToDouble Method">
<param name="Name" value="CToDouble Method">
<param name="Local" value="topic_0000000000000005.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="CToInt16 Method">
<param name="Name" value="CToInt16 Method">
<param name="Local" value="topic_0000000000000006.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="CToInt32 Method">
<param name="Name" value="CToInt32 Method">
<param name="Local" value="topic_0000000000000007.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="CToInt64 Method">
<param name="Name" value="CToInt64 Method">
<param name="Local" value="topic_0000000000000008.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="CToSingle Method">
<param name="Name" value="CToSingle Method">
<param name="Local" value="topic_0000000000000009.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="CToString Method">
<param name="Name" value="CToString Method">
<param name="Local" value="topic_000000000000000A.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="Consts Class">
<param name="Name" value="Consts Class">
<param name="Local" value="topic_000000000000000B.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="Crypto Class">
<param name="Name" value="Crypto Class">
<param name="Local" value="topic_000000000000000C.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="Datenbank Class">
<param name="Name" value="Datenbank Class">
<param name="Local" value="topic_000000000000000D.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="DecryptText Method">
<param name="Name" value="DecryptText Method">
<param name="Local" value="topic_000000000000000E.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="EDOKALib.Common Namespace">
<param name="Name" value="EDOKALib.Common Namespace">
<param name="Local" value="topic_000000000000000F.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="EncryptText Method">
<param name="Name" value="EncryptText Method">
<param name="Local" value="topic_0000000000000010.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="GetDSN Method">
<param name="Name" value="GetDSN Method">
<param name="Local" value="topic_0000000000000011.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="Tools Class">
<param name="Name" value="Tools Class">
<param name="Local" value="topic_0000000000000012.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Keyword" value="ValidateDS Method">
<param name="Name" value="ValidateDS Method">
<param name="Local" value="topic_0000000000000013.html">
</OBJECT>
</UL>
</HTML>

82
Common/VBdoc/Common.hhp Normal file
View File

@@ -0,0 +1,82 @@
[OPTIONS]
Compatibility=1.1 or later
Contents file=Common.hhc
Index file=Common.hhk
Default topic=Common+title.html
Default Window=main
Full-text search=Yes
[WINDOWS]
main="Common","Common.hhc","Common.hhk","Common+title.html",,,,,,0x62520,,0x381e,[73,30,525,455],,,,,,,0
[FILES]
MSHelp\scripts\SeeAlso1c.gif
MSHelp\scripts\AnimButton2.gif
MSHelp\scripts\coC.gif
MSHelp\scripts\coe.gif
MSHelp\scripts\DTUE.css
MSHelp\scripts\DTUE.XML
MSHelp\scripts\dtue_ie3.js
MSHelp\scripts\dtue_ie4.js
MSHelp\scripts\dtue_ie5.js
MSHelp\scripts\dtuelink.js
MSHelp\scripts\Filter1a.gif
MSHelp\scripts\Filter1b.gif
MSHelp\scripts\Filter1c.gif
MSHelp\scripts\msdn_ie3.css
MSHelp\scripts\msdn_ie4.css
MSHelp\scripts\Requirements1a.gif
MSHelp\scripts\Requirements1b.gif
MSHelp\scripts\Requirements1c.gif
MSHelp\scripts\SeeAlso1a.gif
MSHelp\scripts\SeeAlso1b.gif
MSHelp\scripts\AnimButton1.gif
[ALIAS]
topic_0000000000000000.html=topic_0000000000000000.html
topic_0000000000000001.html=topic_0000000000000001.html
topic_0000000000000002.html=topic_0000000000000002.html
topic_0000000000000003.html=topic_0000000000000003.html
topic_0000000000000004.html=topic_0000000000000004.html
topic_0000000000000005.html=topic_0000000000000005.html
topic_0000000000000006.html=topic_0000000000000006.html
topic_0000000000000007.html=topic_0000000000000007.html
topic_0000000000000008.html=topic_0000000000000008.html
topic_0000000000000009.html=topic_0000000000000009.html
topic_000000000000000A.html=topic_000000000000000A.html
topic_000000000000000B.html=topic_000000000000000B.html
topic_000000000000000C.html=topic_000000000000000C.html
topic_000000000000000D.html=topic_000000000000000D.html
topic_000000000000000E.html=topic_000000000000000E.html
topic_000000000000000F.html=topic_000000000000000F.html
topic_0000000000000010.html=topic_0000000000000010.html
topic_0000000000000011.html=topic_0000000000000011.html
topic_0000000000000012.html=topic_0000000000000012.html
topic_0000000000000013.html=topic_0000000000000013.html
[MAP]
#define topic_0000000000000000.html 116
#define topic_0000000000000001.html 113
#define topic_0000000000000002.html 114
#define topic_0000000000000003.html 117
#define topic_0000000000000004.html 112
#define topic_0000000000000005.html 111
#define topic_0000000000000006.html 107
#define topic_0000000000000007.html 108
#define topic_0000000000000008.html 109
#define topic_0000000000000009.html 110
#define topic_000000000000000A.html 115
#define topic_000000000000000B.html 119
#define topic_000000000000000C.html 102
#define topic_000000000000000D.html 100
#define topic_000000000000000E.html 105
#define topic_000000000000000F.html 100
#define topic_0000000000000010.html 104
#define topic_0000000000000011.html 101
#define topic_0000000000000012.html 106
#define topic_0000000000000013.html 118

View File

@@ -0,0 +1,209 @@
<?xml version="1.0" encoding="utf-8" ?>
<DynamicHelp xmlns="http://msdn.microsoft.com/vsdata/xsd/vsdh.xsd" xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance" xsi:schemaLocation="http://msdn.microsoft.com/vsdata/xsd/vsdh.xsd">
<LINKGROUP ID="Common" Title="Common Help" Priority="2100">
<GLYPH Expanded="vs:/ctxhelp_show.gif" Collapsed="vs:/ctxhelp_hide.gif"/>
</LINKGROUP>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Tools.CToBool" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000000.html" LinkGroup="Common">CToBool Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Tools.CToByte" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000001.html" LinkGroup="Common">CToByte Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Tools.CToByteArr" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000002.html" LinkGroup="Common">CToByteArr Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Tools.CToDateTime" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000003.html" LinkGroup="Common">CToDateTime Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Tools.CToDecimal" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000004.html" LinkGroup="Common">CToDecimal Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Tools.CToDouble" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000005.html" LinkGroup="Common">CToDouble Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Tools.CToInt16" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000006.html" LinkGroup="Common">CToInt16 Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Tools.CToInt32" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000007.html" LinkGroup="Common">CToInt32 Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Tools.CToInt64" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000008.html" LinkGroup="Common">CToInt64 Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Tools.CToSingle" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000009.html" LinkGroup="Common">CToSingle Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Tools.CToString" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_000000000000000A.html" LinkGroup="Common">CToString Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Consts" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_000000000000000B.html" LinkGroup="Common">Consts Class</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Crypto" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_000000000000000C.html" LinkGroup="Common">Crypto Class</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Datenbank" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_000000000000000D.html" LinkGroup="Common">Datenbank Class</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Crypto.DecryptText" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_000000000000000E.html" LinkGroup="Common">DecryptText Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_000000000000000F.html" LinkGroup="Common">EDOKALib.Common Namespace</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Crypto.EncryptText" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000010.html" LinkGroup="Common">EncryptText Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Datenbank.GetDSN" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000011.html" LinkGroup="Common">GetDSN Method</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Tools" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000012.html" LinkGroup="Common">Tools Class</LItem>
</Links>
</Context>
<Context>
<Keywords>
<KItem Name="EDOKALib.Common.Tools.ValidateDS" />
</Keywords>
<Links>
<LItem URL="ms-its:Common.chm::/topic_0000000000000013.html" LinkGroup="Common">ValidateDS Method</LItem>
</Links>
</Context>
</DynamicHelp>

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 B

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<UI>
<String Id="L_FeedbackLink_TEXT">Send feedback to Microsoft</String>
<String Id="L_MessageLink_TEXT">Microsoft Product Support Knowledge Base Link</String>
<String Id="L_MailToLink_TEXT">Send feedback to Microsoft</String>
<String Id="L_SeeAlso_TEXT">See Also</String>
<String Id="L_Requirements_TEXT">Requirements</String>
<String Id="L_QuickInfo_TEXT">QuickInfo</String>
<String Id="L_FilterTip_TEXT">Language Filter</String>
<String Id="L_Language_TEXT">Language</String>
<String Id="L_ShowAll_TEXT">Show All</String>
<String Id="L_Animation_Text">Click to animate</String>
<String Id="L_ExpandAll_TEXT">Expand All</String>
<String Id="L_CollapseAll_TEXT">Collapse All</String>
<String Id="L_ExColl_TEXT">Click to Expand or Collapse</String>
<String Id="L_Keyword_TEXT">Keyword =</String>
<String Id="L_IndexMoniker_TEXT">IndexMoniker =</String>
<String Id="L_URL_TEXT">Source URL =</String>
</UI>

View File

@@ -0,0 +1,613 @@
/* VERSION 9345
Designed for IE5.x. Optimal in IE 6.x
CSS for use with Developer Tools Documentation
Localizable definitions:
font families
font sizes
*/
/* --------------------------------------------------
MAIN TOPIC STYLES
-------------------------------------------------- */
div.saveHistory
{
behavior:url(#default#savehistory);
text-decoration: underline
}
body /* This body tag requires the use of one of the sets of banner and/or text div ids */
{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
background: #ffffff;
color: #000000;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 70%;
width: 100%;
}
div#scrollyes /* Allows topic to scroll with correct margins. Cannot be used with running head banner */
{ /* Must immediately follow <body>. */
padding: 2px 15px 2px 22px;
width: 100%;
}
div#nsbanner /* Creates Nonscrolling banner region */
{
position: relative;
left: 0px;
padding: 0px 0px 0px 0px;
border-bottom: 1px solid #999999;
}
div#nstext /* Creates the scrolling text area for Nonscrolling region topic */
{
padding: 5px 10px 0px 22px;
}
div#scrbanner /* Creates the running head bar in a full-scroll topic */
{ /* Allows topic to scroll. */
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
border-bottom: 1px solid #999999;
}
div#scrtext /* Creates the text area in a full-scroll topic */
{ /* Allows topic to scroll. */
/* width: 100%; /* Forces tables to have correct right margin */*/
padding: 0px 10px 0px 22px;
}
div#bannerrow1 /* provides full-width color to top row in running head (requires script) */
{
background-color: #99ccff;
}
div#titlerow /* provides non-scroll topic title area (requires script) */
{
width: 100%; /* Forces tables to have correct right margin */
padding: 0px 10px 0px 22px;
background-color: #99ccff;
}
/* --------------------------------------------------
HEADING STYLES
-------------------------------------------------- */
h1, h2, h3, h4
{
font-family: Verdana, Arial, Helvetica, sans-serif;
margin-bottom: .4em;
margin-top: 1em;
font-weight: bold;
}
h1
{
font-size: 120%;
margin-top: 0em;
}
div#scrollyes h1 /* Changes font size for full-scrolling topic */
{
font-size: 150%;
}
h2
{
font-size: 130%;
}
h3
{
font-size: 115%;
}
h4
{
font-size: 100%;
}
.dtH1, .dtH2, .dtH3, .dtH4
{
margin-left: -18px;
}
div#titlerow h1
{
margin-bottom: .2em
}
/* --------------------------------------------------
TEXT STYLES
-------------------------------------------------- */
p
{
margin: .5em 0em .5em 0em;
}
blockquote.dtBlock
{
margin: .5em 1.5em .5em 1.5em;
}
div#dtHoverText
{
color: #000066;
}
.normal
{
margin: .5em 0em .5em 0em;
}
.fineprint
{
font-size: 90%; /* 90% of 70% */
}
.indent
{
margin: .5em 1.5em .5em 1.5em;
}
.topicstatus /* Topic Status Boilerplate class */
{
display: block;
color: red;
}
/* --------------------------------------------------
LABEL STYLES
-------------------------------------------------- */
p.label
{
margin-top: 1em;
}
p.labelproc
{
margin-top: 1em;
color: #000066;
}
/* --------------------------------------------------
GRAPHIC STYLES
-------------------------------------------------- */
img
{
border: none;
}
/* --------------------------------------------------
LIST STYLES
-------------------------------------------------- */
ol, ul
{
margin: .5em 0em 0em 2em;
}
li
{
margin-bottom: .5em;
}
ul p, ol p, dl p
{
margin-left: 0em;
}
ul p.label, ol p.label
{
margin-top: .5em;
}
/* --------------------------------------------------
DEFINITION LIST STYLES
-------------------------------------------------- */
dl
{
margin-top: 0em;
padding-left: 1px; /* Prevents italic-letter descenders from being cut off */
}
dd
{
margin-bottom: 0em;
margin-left: 1.5em;
}
dt
{
margin-top: .5em;
}
/* --------------------------------------------------
CODE, SYNTAX, and REFTIP STYLES
-------------------------------------------------- */
pre
{
margin-top: .5em;
margin-bottom: .5em;
}
pre, code, .code
{
font: 100% Monospace, Courier New, Courier; /* This is 100% of 70% */
color: #000066;
}
pre b, code b
{
letter-spacing: .1em; /* opens kerning on bold in Syntax/Code */
}
pre.syntax
{
background: #cccccc;
padding: 4px 8px;
cursor: text;
margin-top: 1em;
margin-bottom: 1em;
color: #000000;
border-width: 1px;
border-style: solid;
border-color: #999999;
}
/* --------------------------------------------------
LINK STYLES
-------------------------------------------------- */
a:link
{
color: #0000ff;
}
a:visited
{
color: #0000ff;
}
a:hover
{
color: #3366ff;
}
/* ---------------------------
MSHelp\:link - Help HxLinks
--------------------------- */
MSHelp\:link
{
text-decoration: underline;
color: #0000ff;
hoverColor: #3366ff;
filterString: ;
}
A.HxLinkTable /* MSHelp\:link - Table disambiguation elements */
{
}
/* ---------------------------
MSHelp\:ktable - Help links
--------------------------- */
MSHelp\:ktable
{
disambiguator: span;
separator: &nbsp|&#32;
prefix: |&#32;
postfix: &nbsp;
filterString: ;
}
div.HxLinkTable
{
width: auto; /* Forces tables to have correct right margins and top spacing */
margin-top: -.4em;
visibility: visible;
}
ol div.HxLinkTable, ul div.HxLinkTable
{
margin-top: 0em; /* Forces tables to have correct right margins and top spacing */
}
table.HxLinkTable /* Keep in sync with general table settings below */
{
width: auto;
margin-top: 1.5em;
margin-bottom: .3em;
margin-left: -1em;
border-width: 1px 1px 0px 0px;
border-style: solid;
border-color: #999999;
background-color: #999999;
font-size: 100%; /* Text in Table is same size as text outside table */
behavior:url(hxlinktable.htc); /* Attach the behavior to link elements. */
}
table.HxLinkTable th, table.HxLinkTable td /* Keep in sync with general table settings below */
{
border-style: solid; /* Creates the cell border and color */
border-width: 0px 0px 1px 1px;
border-style: solid;
border-color: #999999;
padding: 4px 6px;
text-align: left;
}
table.HxLinkTable th /* Keep in sync with general table settings below */
{
background: #cccccc; /* Creates the shaded table header row */
vertical-align: bottom;
}
table.HxLinkTable td /* Keep in sync with general table settings below */
{
background: #ffffff;
vertical-align: top;
}
/* --------------------------------------------------
TABLE STYLES
-------------------------------------------------- */
div.tablediv
{
width: 100%; /* Forces tables to have correct right margins and top spacing */
margin-top: -.4em;
}
ol div.tablediv, ul div.tablediv, ol div.HxLinkTable, ul div.HxLinkTable
{
margin-top: 0em; /* Forces tables to have correct right margins and top spacing */
}
table.dtTABLE
{
width: 100%; /* Forces tables to have correct right margin */
margin-top: .6em;
margin-bottom: .3em;
border-width: 1px 1px 0px 0px;
border-style: solid;
border-color: #999999;
background-color: #999999;
font-size: 100%; /* Text in Table is same size as text outside table */
}
table.dtTABLE th, table.dtTABLE td
{
border-style: solid; /* Creates the cell border and color */
border-width: 0px 0px 1px 1px;
border-style: solid;
border-color: #999999;
padding: 4px 6px;
text-align: left;
}
table.dtTABLE th
{
background: #cccccc; /* Creates the shaded table header row */
vertical-align: bottom;
}
table.dtTABLE td
{
background: #ffffff;
vertical-align: top;
}
/* --------------------------------------------------
ISSUE REPORTING AND MISC LINKS TOPIC FOOTER
-------------------------------------------------- */
div.footer
{
font-style: italic;
}
div.footer hr
{
color: #999999;
height: 1px;
}
/* --------------------------------------------------
STYLES FOR RUNNING HEADS
-------------------------------------------------- */
table.bannerparthead, table.bannertitle /* General values for the Running Head tables */
{
position: relative;
left: 0px;
top: 0px;
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
width: 100%;
height: 21px;
border-collapse: collapse;
border-style: solid;
border-width: 0px;
background-color: #99ccff;
font-size: 100%;
}
table.bannerparthead td /* General Values for cells in the top row of running head */
{
margin: 0px 0px 0px 0px;
padding: 2px 0px 0px 4px;
vertical-align: middle;
/*border-width: 0px 0px 1px 0px; */
border-width: 0px
border-style: solid;
border-color: #999999;
background: transparent;
font-style: italic;
font-weight: normal;
}
table.bannerparthead td.product /* Values for top right cell in running head */
{ /* Allows for a second text block in the running head */
text-align: right;
padding: 2px 5px 0px 5px;
}
table.bannertitle td /* General Values for cells in the bottom row of running head */
{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 3px;
vertical-align: middle;
border-width: 0px 0px 1px 0px;
border-style: solid;
border-color: #999999;
background: transparent;
font-weight: bold;
}
td.button1 /* Values for button cells */
{
width: 14px;
cursor: hand;
}
/* =================================================
STYLES REQUIRED BY THE SCRIPT */
/* --------------------------------------------------
SAMPLE VIEWER
-------------------------------------------------- */
div#smpMgrCell
{
display:none;
}
table.SampMgr
{
margin: 0px 0px 0px -22px;
}
table.SampMgr td
{
padding-left: 22px;
}
/* --------------------------------------------------
RUNNING HEAD BAR POPUP STYLES: See Also, Requirements, MultiLang Filtering
-------------------------------------------------- */
div.sapop, div.langMenu /* See Also & Requirements popups */
{
position: absolute;
left: 0px;
z-index: 1;
width: 50%;
padding: 0px 8px 5px 26px;
visibility: hidden;
border: 1px solid #999999; /* Same as all other border colors */
background: #ffffcc;
}
div.langMenu /* MultiLang Filter popup */
{
padding: 10px 10px 10px 10px;
}
div.langMenu ul
{
list-style-type: none;
padding-left: 5px;
margin-left: 0px;
}
.lang, .ilang /* controls the multilang tag styles */
{
color: #333333;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 80%;
font-weight: normal;
font-style: normal;
}
h1 .lang, h1 .ilang
{
font-size: 65%;
}
div.filtered
{
margin-top: .6em;
margin-bottom: .6em;
margin-left: -7px;
padding: 0px 0px 0px 6px;
border-left: 1px solid #999999;
background: #ffffff;
}
div.filtered h1, div.filtered h2, div.filtered h3, div.filtered h4
{
margin-left: -22px;
}
div.filtered span.lang
{
position: relative;
left: 0px;
}
/* --------------------------------------------------
PARAMETER POPUP STYLES
-------------------------------------------------- */
div.reftip /* Defines the RefTip popup in Syntax */
{
position: absolute;
z-index: 1;
visibility: hidden;
border: 1px solid #999999;
background: #ffffcc;
/* padding: 0px 0px 0px 0px; */
}
div.reftip dl /* Sets margin around the text within the popup */
{
margin: 3px 8px 8px 8px;
}
a.synParam /* parameter popup links */
{
color: #0000ff; /* Must match the a:link style color */
text-decoration: underline;
}
a.synParam:visited /* ensures parameter popup links are always the unvisited color */
{
color: #0000ff; /* Must match the a:link style color */
text-decoration: underline;
}
a.synParam:hover /* parameter popup links */
{
color: #3366ff; /* Must match the a:hover style color */
text-decoration: underline;
font-style: italic;
}
/* --------------------------------------------------
EXPAND-COLLAPSE STYLES
-------------------------------------------------- */
div.expandBody
{
margin: .5em 0em 0em 1.4em;
display:none;
}
a.expandLink1
{
font-size: 115%;
}
a#ExPand
{
color: #3366ff;
font-weight: bold;
text-decoration: none;
}
a#ExPandAll
{
color: #3366ff;
font-weight: bold;
text-decoration: none;
}
/* --------------------------------------------------
GLOSSARY POPUP STYLES
Not used by Visual Studio .NET
-------------------------------------------------- */
/* COMMENT OUT GLOSSARY SECTION
/*div#popUpWindow
{ Controlled by the script in the variable L_PopUpBoxStyle_Style
}*/
a.glosslink:link
{
color: #000000;
}
a.glosslink:visited
{
color: #000000;
}
a.glosslink:hover
{
color: #000000;
font-style: italic;
}
div#popUpWindow h5 /* Controls the style of the Term in Glossary Popups */
{
margin: 5px 5px 5px 5px;
color: #000000;
}
div#popUpWindow p /* Controls the style of the Text in Glossary Popups */
{
margin: 5px 5px 5px 5px;
color: #000000;
}
p.GLOSSARY_TEXT
{
}
div#popUpWindow a /* Controls the style of the Links in Glossary Popups */
{
}
*/ /* END COMMENT OUT OF GLOSSARY SECTION */
/* END STYLES REQUIRED BY THE SCRIPT
================================================== */

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 B

View File

@@ -0,0 +1,61 @@
// VERSION 9226
// This script works with IE 3.x
//************************** LOCALIZATION VARIABLES ***************************
// Variables for Feedback links
var L_FeedbackLink_TEXT = "Send feedback to Visual Studio";
var L_MessageLink_TEXT = "Microsoft Knowledgebase Link";
// Variables for Expand-Collapse functions
var L_Expand_TEXT = "<B>Expand/Collapse functionality:</B> Your browser does not support the functionality in this topic. You may install a browser that does at ";
var L_Expand_URL = "http://www.microsoft.com/windows/IE/";
//*************************** END LOCALIZATION ********************************
var baseUrl = jsPath; //jsPath comes from the dtuelink.js
var emailalias = "vsdocs";
//***************************** END VARIABLES *********************************
// ****************************************************************************
// * Expand-Collapse *
// ****************************************************************************
function makeExpandable(title, level){
document.write("<P>" + L_Expand_TEXT + "<A href=\"" + L_Expand_URL + "\">" + L_Expand_URL + "</A>.</P>");
}
// ****************************************************************************
// * Graphic Animation *
// ****************************************************************************
function insertAnimation(name, number) {
name = name + "1.gif";
document.write("<img name=\"" + name + "\" src=\"" + name + "\">");
}
// ****************************************************************************
// * Feedback & other footer links *
// ****************************************************************************
function writefeedbacklink(){
contextid = arguments[1];
topictitle = arguments[2];
href = "mailto:"+emailalias+"?subject=Feedback%20on%20topic%20-%20"+topictitle+",%20URL%20-%20"+contextid;
document.writeln("<a href="+href+">"+L_FeedbackLink_TEXT+"</a>");
}
function writemessagelink(){
//Writes jump to PSS web site redirector
//code tbd
//Use L_MessageLink_TEXT variable from Localization Variables located at top of script.
msdnid = arguments[0];
href = "http://www.microsoft.com/contentredirect.asp?prd=vs&pver=7.0&id="+msdnid;
document.writeln("<a href="+href+">"+L_MessageLink_TEXT+"</a>");
}

View File

@@ -0,0 +1,145 @@
// VERSION 9226
// This script works with IE4.x
//************************** LOCALIZATION VARIABLES ***************************
// Variables for Feedback links
var L_FeedbackLink_TEXT = "Send feedback to Visual Studio";
var L_MessageLink_TEXT = "Microsoft Knowledgebase Link";
// Variable for Animation text
var L_Animation_Text = "Click to animate";
// Variables for Expand-Collapse functions
var L_ExpandAll_TEXT = "Expand All";
var L_CollapseAll_TEXT = "Collapse All";
var L_ExColl_TEXT = "Click to Expand or Collapse";
//*************************** END LOCALIZATION ********************************
var theImg, theDiv, e;
var imgArray = new Array(new Image(), new Image(), new Image(), new Image(), new Image());
var baseUrl = jsPath; //jsPath comes from the dtuelink.js
var emailalias = "vsdocs";
//***************************** END VARIABLES *********************************
// ****************************************************************************
// * Expand-Collapse *
// ****************************************************************************
function makeExpandable(title, level){
if (title!="")document.write("<a href=\"\#\" onClick='callExpand()' id=\"ExPand\" Class=\"expandLink" + level + "\"><IMG CLASS=\"ExPand\" SRC=\"" + baseUrl + "coe.gif\" HEIGHT=9 WIDTH=9 ALT=\"" + L_ExColl_TEXT + "\" BORDER=0>&nbsp;" + title + "</a><BR><div CLASS=\"expandBody" + level + "\">");
else document.write("<a href=\"\#\" id=\"ExPandAll\" onClick='callExpandAll()' Class=\"expandLink" + level + "\"><IMG CLASS=\"ExPandAll\" SRC=\"" + baseUrl + "coe.gif\" HEIGHT=9 WIDTH=9 ALT=\"" + L_ExColl_TEXT + "\" BORDER=0>&nbsp;" + L_ExpandAll_TEXT + "</A>");
}
function getImage(){
for (var a = 0; a < 7; a++){
if ((e.tagName != 'A') && (e.parentElement != null)){e = e.parentElement;}
var elemImg = e;
if(elemImg.tagName == 'A'){elemImg = e.all.tags('IMG')(0); break;}}
return elemImg;}
function callExpand(){
//DO EXPAND/COLLAPSE
e = window.event.srcElement;
//PREVENTS NAVIGATION ON HREF TAGS
event.returnValue = false;
//FIND THE EXPAND/COLLAPSE PORTION AND ASCERTAIN BLOCK VS NONE
var theDiv = GrabtheExpandDiv(e);
//THIS PART WRITES THE PROPER IMAGE BESIDE THE TEXT
if (theDiv.style.display == 'block'){
var theImg = getImage(e);
theImg.src = baseUrl + "coe.gif";
theDiv.style.display = "none";}
else {
var theImg = getImage(e);
theImg.src = baseUrl + "coc.gif";
theDiv.style.display = "block";}
return;
}
function GrabtheExpandDiv(e){
//FIND AREA TO EXPAND/COLLAPSE
var theExpandDiv;
for (var a = 0; a < 7; a++){
var theTag = e.sourceIndex + e.children.length + a;
theExpandDiv= document.all(theTag);
if (((theExpandDiv.tagName == 'DIV') && ((theExpandDiv.className.toLowerCase().indexOf("expandbody")!=-1))) || theTag == document.all.length){break;}}
return theExpandDiv;
}
function callExpandAll(){
e = window.event.srcElement;
//PREVENTS NAVIGATION ON HREF TAGS
event.returnValue = false;
if (e.tagName=="IMG") e = e.parentElement;
//Expand or Collapse?
if (e.innerHTML.indexOf(L_ExpandAll_TEXT) != -1){eOrC="block"}else{eOrC="none"}
if (eOrC=="block"){
e.innerHTML="<IMG CLASS='ExPand' SRC=\"" + baseUrl + "coc.gif\" HEIGHT='9' WIDTH='9' ALT='" + L_ExColl_TEXT + "' BORDER='0'>&nbsp;" + L_CollapseAll_TEXT;}
else{
e.innerHTML="<IMG CLASS='ExPand' SRC=\"" + baseUrl + "coe.gif\" HEIGHT='9' WIDTH='9' ALT='" + L_ExColl_TEXT + "' BORDER='0'>&nbsp;" + L_ExpandAll_TEXT;}
for (var a = 0; a < document.all.length; a++){
e=document.all[a];
if (e.id.indexOf('ExPand') != -1){
if (e.id.indexOf('ExPandAll') == -1){
var theDiv = GrabtheExpandDiv(e);
if (eOrC == 'none'){
theImg = getImage(e);
theImg.src = baseUrl + "coe.gif";
theDiv.style.display = eOrC;}
else {
theImg = getImage(e);
theImg.src = baseUrl + "coc.gif";
theDiv.style.display = eOrC;}
}
}
}
return;
}
// ****************************************************************************
// * Graphic Animation *
// ****************************************************************************
function insertAnimation(name, number) {
imgArray[number].src = name + ".gif";
document.write("<input type=\"image\" src=\"" + baseUrl + "AnimButton1.gif\" onClick=\"changeToAnimate('" + name + "', " + number + ");\" onMouseDown=\"src='" + baseUrl + "AnimButton2.gif';\" onMouseUp=\"src='" + baseUrl + "AnimButton1.gif';\">&nbsp;" + L_Animation_Text + "<br><br><img name=\"" + name + "\" src=\"" + name + "1.gif\">");
}
function changeToAnimate(imgName, number) {
document[imgName].src = imgArray[number].src;
}
// ****************************************************************************
// * Feedback & other footer links *
// ****************************************************************************
function writefeedbacklink(){
//writes feedback link
contextid = arguments[1];
topictitle = arguments[2];
href = "mailto:"+emailalias+"?subject=Feedback%20on%20topic%20-%20"+topictitle+",%20URL%20-%20"+contextid;
document.writeln("<a href="+href+">"+L_FeedbackLink_TEXT+"</a>");
}
function writemessagelink(){
//Writes jump to PSS web site redirector
//code tbd
//Use L_MessageLink_TEXT variable from Localization Variables located at top of script.
msdnid = arguments[0];
href = "http://www.microsoft.com/contentredirect.asp?prd=vs&pver=7.0&id="+msdnid;
document.writeln("<a href="+href+">"+L_MessageLink_TEXT+"</a>");
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,71 @@
// version 9324
// links to HxLink.css, DTUE CSS, and DTUE topics scripts
var ieVer = getIEVersion();
var jsPath = scriptPath();
writeCSS(jsPath);
function getIEVersion() {
//determines the IE version. Returns 0 if not IE
var verNum = 0
if (navigator.appName == "Microsoft Internet Explorer") {
var sVer = window.navigator.userAgent
var msie = sVer.indexOf ( "MSIE " )
if ( msie > 0 ) { // browser is Microsoft Internet Explorer; return version number
verNum = parseFloat( sVer.substring ( msie+5, sVer.indexOf ( ";", msie ) ) );
}
}
return verNum;
}
function scriptPath() {
//Determine path to JS-the CSS is in the same directory as the script
if ( ieVer >= 4 ) {
var spath = document.scripts[document.scripts.length - 1].src;
// spath = spath.toLowerCase();
return spath.replace("dtuelink.js", "");
}
else {
var spath = "..\\scripts\\"; //defaults to a scripts folder
return spath;
}
}
function writeCSS(spath) {
var dtueCSS = "";
var HxLinkPath = "";
var HxLink = "";
// Get a CSS name based on the browser.
if ( ieVer >= 5) {
dtueCSS = "DTUE.css";
HxLink = "HxLink.css";
HxLinkPath = "..";
document.writeln('<SCRIPT SRC="' + spath + 'dtue_ie5.js"></SCRIPT>');
document.writeln('<SCRIPT FOR="reftip" EVENT="onclick">window.event.cancelBubble = true;</SCRIPT>');
document.writeln('<SCRIPT FOR="cmd_lang" EVENT="onclick">langClick(this);</SCRIPT>');
document.writeln('<SCRIPT FOR="cmd_filter" EVENT=onclick>filterClick(this);</SCRIPT>');
}
else {
if (ieVer >=4 && ieVer <5) {
document.writeln('<SCRIPT SRC="' + spath + '\dtue_ie4.js"></SCRIPT>');
dtueCSS = "msdn_ie4.css";
HxLink = "";
HxLinkPath = "";
}
else {
if (ieVer < 4)
document.writeln('<SCRIPT SRC="' + spath + '\dtue_ie3.js"></SCRIPT>');
dtueCSS = "msdn_ie3.css";
HxLink = "";
HxLinkPath = "";
//document.write ("<link disabled rel='stylesheet' href='"+ spath + dtueCSS + "'>")
//document.write ("<style>@import url("+ spath + dtueCSS + ");</style>")
}
}
// Insert CSS calls
document.writeln('<LINK REL="stylesheet" HREF="' + HxLinkPath + HxLink + '">');
document.writeln('<LINK REL="stylesheet" HREF="' + spath + dtueCSS + '">');
}

View File

@@ -0,0 +1,64 @@
BODY {
font: 85% "Verdana"}
h1, h2, h3, h4 {
font-family: verdana, Arial, Helvetica, sans-serif;
font-size: 85%; }
P {
font: 85% "Verdana";
color: black}
CODE {
font: 100% "courier new"}
PRE {
font: 100% "courier new"}
PRE CODE {
font-size: 110% }
TD {
font-size: 85%;
color: black }
A:LINK {
color: #0000FF }
A:VISITED {
color: #660066 }
.label {
font-weight: bold }
.tl {
margin-bottom: 6pt }
.atl {
margin-left: .25in;
margin-bottom: -0pt }
.cfe {
font-weight: bold }
.mini {
font-size: 65% }
LI {
color: #000000 }
LI UL {
margin-top: 9pt;
margin-bottom: 9pt }
LI OL {
margin-top: 9pt;
margin-bottom: 9pt }
.dt {
margin-bottom: -9pt }
.indent {
margin-left: .25in }

View File

@@ -0,0 +1,106 @@
BODY {
font: x-small Verdana, Arial, Helvetica, sans-serif;
background-color: #FFFFFF; }
h1, h2, h3, h4 {
font-family: verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
color: #000000; }
h1 {
font-size: 145%;
margin-bottom: .5em; }
h2 {
font-size: 125%;
margin-top: 1.5em;
margin-bottom: .5em; }
h3 {
font-size: 115%;
margin-top: 1.2em;
margin-bottom: .5em}
h4 {
font-size: 100%;
margin-top: 1.2em;
margin-bottom: .5em; }
P {
font: x-small Verdana, Arial, Helvetica, sans-serif;
color: #000000; }
CODE {
font: 100% "Courier New", Courier, mono; }
PRE {
font: 100% "Courier New", Courier, mono;
color: #000066; }
PRE.SYNTAX {
background: #cccccc;
color: #000000;
padding: 4px 8px; }
.CODE {
font: 100% "Courier New", Courier, mono; }
TD {
font-size: x-small;
}
DIV#bannerrow1 {
margin: 0px -10px 0px -10px;
padding: 2px 10px 4px 10px;
background-color: #99ccff;}
A:LINK {
color: #0000FF; }
A:VISITED {
color: #660066; }
A:HOVER {
color: #FF9900; }
.label {
font-weight: bold; }
.tl {
margin-bottom: .75em; }
.atl {
padding-left: 1.5em;
padding-bottom: .75em; }
.cfe {
font-weight: bold; }
.mini {
font-size: smaller; }
LI {
margin-top: .75em;
margin-bottom: .75em; }
UL {
list-style: disc;
}
UL UL, OL OL, OL UL, UL OL {
margin-top: 1em;
margin-bottom: 1em; }
LI P {
margin-top: .5em;
margin-bottom: .5em; }
.dt {
margin-bottom: -1em; }
.indent {
margin-left: 1.5em; }
SUP {
text-decoration: none;

BIN
Common/VBdoc/namespace.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 B

BIN
Common/VBdoc/pubclass.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 B

BIN
Common/VBdoc/pubevent.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 B

BIN
Common/VBdoc/pubfield.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 B

BIN
Common/VBdoc/pubmethod.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 B

BIN
Common/VBdoc/pubmodule.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

View File

@@ -0,0 +1,10 @@
REM This script registers the documentation in target help
REM system. That means the CHM file will be accessible from
REM other CHM files without specifying its full path. Moreover,
REM this documentation becomes context sensitive in Visual Studio .NET.
REM You should call the following line or this script during
REM installation of your product on the target machine.
REM All 3 files (EXE, CHM and XML) must be in the same directory.
HelixoftHelpReg.exe -c"Common.chm" -d"Common_dyn_help.xml"

BIN
Common/VBdoc/static.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 B

View File

@@ -0,0 +1,11 @@
REM This script unregisters the documentation from target help
REM system. That means the CHM file will not be accessible from
REM other CHM files without specifying its full path. Moreover,
REM this documentation stops to be context sensitive in
REM Visual Studio .NET.
REM You should call the following line or this script during
REM uninstallation of your product on the target machine.
REM It is not neccessary to have CHM and XML file in the same
REM directory as EXE file.
HelixoftHelpReg.exe -x"Common.chm" -e"Common_dyn_help.xml"

BIN
Common/bin/Common.dll Normal file

Binary file not shown.

BIN
Common/bin/Common.pdb Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,61 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
EDOKALib.Common
</name>
</assembly>
<members>
<member name="M:EDOKALib.Common.Action.Load(System.IO.FileInfo)">
<summary>Lädt externes Xml file für automatisierte Aktionen</summary>
<param name="xmlImportFile">Das Xml File mit den entsprechenden Parametern</param>
</member>
<member name="M:EDOKALib.Common.Action.GetParameterByName(System.String)">
<summary>Returns a parameter identified by his name</summary>
<param name="paramName"></param>
<returns></returns>
</member>
<member name="M:EDOKALib.Common.Action.Destroy">
<summary>Zerstört die statische Instanz</summary>
</member>
<member name="M:EDOKALib.Common.Action.IsValid(System.IO.FileInfo)">
<summary>Überprüft ob das Xml file dem angegebenen Schema entspricht</summary>
<param name="xmlImportFile"></param>
<returns></returns>
</member>
<member name="T:EDOKALib.Common.Parameter">
<summary>Struct für einzelne Parameter</summary>
</member>
<member name="T:EDOKALib.Common.Consts">
<summary>Diese klasse beinhaltet Konstanten welche im der gesamten EDOKAApp verwendet werden</summary>
</member>
<member name="T:EDOKALib.Common.Crypto">
<summary>Diese klasse beinhaltet Methoden welche für den Kryptografischen Teil im EDOKA verwendet werden</summary>
</member>
<member name="M:EDOKALib.Common.Crypto.EncryptText(System.String)">
<summary>Verschlüsselt einen Text mit dem angegebenen Passwort</summary>
<param name="strText">Zu verschlüsselnder Text</param>
<includesource>yes</includesource>
</member>
<member name="M:EDOKALib.Common.Crypto.DecryptText(System.String)">
<summary>Entschlüsselt einen Text</summary>
<param name="strText">Zu verschlüsselnder Text</param>
<includesource>yes</includesource>
</member>
<member name="T:EDOKALib.Common.Datenbank">
<summary>Diese klasse beinhaltet Methoden welche für den Datenbank Zugriff im DataAccess verwendet werden</summary>
</member>
<member name="M:EDOKALib.Common.Datenbank.GetDSN">
<summary>Liest aus dem Connection String file edokaconn.cfg aus</summary>
<returns>Den entschlüsseleten DSN string</returns>
</member>
<member name="T:EDOKALib.Common.Tools">
<summary>Diese klasse beinhaltet Methoden, welche im gesamten Edoka über alle Layers verwendet werden</summary>
</member>
<member name="M:EDOKALib.Common.Tools.ValidateDS(System.Data.DataSet)">
<summary>Überprüft TableCount und RowCount eines DataSet</summary>
<param name="ds"></param>
<returns>True wenn table- und rowcount > 0</returns>
</member>
</members>
</doc>

Binary file not shown.

5
Common/mssccprj.scc Normal file
View File

@@ -0,0 +1,5 @@
SCC = This is a Source Code Control file
[Common.vbproj]
SCC_Aux_Path = "\\SERVER01\DATEN\SourceSave\EDOKA4.0"
SCC_Project_Name = "$/EDOKAApp/Common", BBAAAAAA

View File

@@ -0,0 +1,7 @@
bin\EDOKALib.Common.dll
bin\EDOKALib.Common.pdb
obj\Debug\ResolveAssemblyReference.cache
obj\Debug\EDOKALib.Common.dll
obj\Debug\EDOKALib.Common.pdb
bin\EDOKALib.Common.xml
obj\Debug\EDOKALib.Common.xml

View File

@@ -0,0 +1,14 @@
C:\Data\Edoka_FW3\EDOKA\Common\bin\EDOKALib.Common.dll
C:\Data\Edoka_FW3\EDOKA\Common\bin\EDOKALib.Common.pdb
C:\Data\Edoka_FW3\EDOKA\Common\bin\EDOKALib.Common.xml
C:\Data\Edoka_FW3\EDOKA\Common\obj\Debug\ResolveAssemblyReference.cache
C:\Data\Edoka_FW3\EDOKA\Common\obj\Debug\EDOKALib.Common.dll
C:\Data\Edoka_FW3\EDOKA\Common\obj\Debug\EDOKALib.Common.xml
C:\Data\Edoka_FW3\EDOKA\Common\obj\Debug\EDOKALib.Common.pdb
E:\Software-Projekte\EDOKA\Client\Common\bin\EDOKALib.Common.dll
E:\Software-Projekte\EDOKA\Client\Common\bin\EDOKALib.Common.pdb
E:\Software-Projekte\EDOKA\Client\Common\obj\Debug\ResolveAssemblyReference.cache
E:\Software-Projekte\EDOKA\Client\Common\obj\Debug\EDOKALib.Common.dll
E:\Software-Projekte\EDOKA\Client\Common\obj\Debug\EDOKALib.Common.pdb
E:\Software-Projekte\EDOKA\Client\Common\bin\EDOKALib.Common.xml
E:\Software-Projekte\EDOKA\Client\Common\obj\Debug\EDOKALib.Common.xml

Binary file not shown.

View File

@@ -0,0 +1 @@
96d8a1990a548eca0ee1937f406ae979ccf54928

View File

@@ -0,0 +1,32 @@
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\Common\bin\EDOKALib.Common.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\Common\bin\EDOKALib.Common.pdb
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\Common\bin\EDOKALib.Common.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\Common\obj\Debug\ResolveAssemblyReference.cache
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\Common\obj\Debug\EDOKALib.Common.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\Common\obj\Debug\EDOKALib.Common.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\Common\obj\Debug\EDOKALib.Common.pdb
E:\Software-Projekte\VS2008\EDOKA\Client\Common\bin\EDOKALib.Common.dll
E:\Software-Projekte\VS2008\EDOKA\Client\Common\bin\EDOKALib.Common.pdb
E:\Software-Projekte\VS2008\EDOKA\Client\Common\bin\EDOKALib.Common.xml
E:\Software-Projekte\VS2008\EDOKA\Client\Common\obj\Debug\ResolveAssemblyReference.cache
E:\Software-Projekte\VS2008\EDOKA\Client\Common\obj\Debug\EDOKALib.Common.dll
E:\Software-Projekte\VS2008\EDOKA\Client\Common\obj\Debug\EDOKALib.Common.xml
E:\Software-Projekte\VS2008\EDOKA\Client\Common\obj\Debug\EDOKALib.Common.pdb
E:\Software-Projekte\EDOKA\client_InterOP\Common\bin\EDOKALib.Common.dll
E:\Software-Projekte\EDOKA\client_InterOP\Common\bin\EDOKALib.Common.pdb
E:\Software-Projekte\EDOKA\client_InterOP\Common\bin\EDOKALib.Common.xml
E:\Software-Projekte\EDOKA\client_InterOP\Common\obj\Debug\Common.vbproj.CoreCompileInputs.cache
E:\Software-Projekte\EDOKA\client_InterOP\Common\obj\Debug\Common.vbproj.CopyComplete
E:\Software-Projekte\EDOKA\client_InterOP\Common\obj\Debug\EDOKALib.Common.dll
E:\Software-Projekte\EDOKA\client_InterOP\Common\obj\Debug\EDOKALib.Common.xml
E:\Software-Projekte\EDOKA\client_InterOP\Common\obj\Debug\EDOKALib.Common.pdb
E:\Software-Projekte\EDOKA\client_InterOP\Common\obj\Debug\Common.vbprojAssemblyReference.cache
E:\Software-Projekte\EDOKA\client\Common\bin\EDOKALib.Common.dll
E:\Software-Projekte\EDOKA\client\Common\bin\EDOKALib.Common.pdb
E:\Software-Projekte\EDOKA\client\Common\bin\EDOKALib.Common.xml
E:\Software-Projekte\EDOKA\client\Common\obj\Debug\Common.vbproj.CoreCompileInputs.cache
E:\Software-Projekte\EDOKA\client\Common\obj\Debug\Common.vbproj.CopyComplete
E:\Software-Projekte\EDOKA\client\Common\obj\Debug\EDOKALib.Common.dll
E:\Software-Projekte\EDOKA\client\Common\obj\Debug\EDOKALib.Common.xml
E:\Software-Projekte\EDOKA\client\Common\obj\Debug\EDOKALib.Common.pdb
E:\Software-Projekte\EDOKA\client\Common\obj\Debug\Common.vbproj.AssemblyReference.cache

View File

@@ -0,0 +1 @@
dca9b1ee5ae3100009d1534c4fdf700aa7dd3e49

View File

@@ -0,0 +1,844 @@
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\EDOKA.exe.config
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKA.exe
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKA.xml
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKA.pdb
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\EDOKA.exe
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\EDOKA.pdb
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\EDOKA.xml
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\C1.Win.C1TrueDBGrid.2.dll
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\EDOKALib.Common.dll
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\EDOKALib.DataAccess.dll
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\Interop.Office.dll
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\Interop.OWC.dll
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\Interop.SHDocVw.dll
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\Interop.VBIDE.dll
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\EDOKALib.Common.pdb
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\EDOKALib.DataAccess.pdb
E:\Software-Projekte\EDOKA\Client\EDOKA\bin\EDOKALib.DataAccess.xml
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmAMSOfficeVorlage.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FolderSelect.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmAbout.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmApplication.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmAvaloqSpooler.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDatenbankauswahl.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDefekteDokumente.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentStatistik.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumenttypbeschreibung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumenttypInfo.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumenttypOptions.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmedokaUpdate.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmEDOKA_Import.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmEdoka_Import_TextEditor.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmFAQ.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmGeburtstag.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmIconSelector.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmLog.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmLogin.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMitarbeiterSelektion.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNewSplash.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPasswort.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmQuery.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmReleaseNotes.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRestorJournal.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRevision.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSearchDoc.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSelectStatus.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.Selektion_Mandant.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSetDokVerantwortlicher.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSicherungsjournal.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.Splash.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmStatusSetzen.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmStellvertreterAdd.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmtxtBemerkung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmWaitforClosing.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBarcodeKleber.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmbcquestion.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBerechtigungen.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmCalendar.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentbearbeitung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentbearbeitungBC.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentbearbeitungED.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentberechtigung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentInBearbeitung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentInfoEdit.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentKopieren.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentListe.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentwerte.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmFavoritenZuordnung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmIndexMutation.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmInformationsEmpfaenger.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNotfallimport.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNotizen.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmPasswortWechsel.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmRestore.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmStatuswechsel.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmValueSelector.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmVorlagenauswahl.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMehrfachdruck.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPDF_Printer.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBanklagerndverarbeitung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLAuslieferungen.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLDatumab.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLDossier.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLDossierzuweisen.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLDruck.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLKunde.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmblkundeMA.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmblkundenparameter.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLKundeVIP.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLParameter.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentAufbereitung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentinformationen.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPDFPrinter.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmWatchJob.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentpaket.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentpaketdefinition.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentpaketInfo.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentpaketuebersicht.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmOffeneDPInstanzen.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmpartnermavip.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmTrefferlistex.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.ucedit.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.ucnoedit.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.ucProgress.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDruckabschluss.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDruckMessage.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmExcelSheets.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmOfficePreview.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerlisteLaden.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerlisteSpeichern.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerlisteVerwalten.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmpersvorlageladen.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmsbdruck.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmsbpartnerdetail.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSBPDFPrinter.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSBSpaltenDarstellung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSerienbriefe.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSerienbriefe_Load.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmtextmarken.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmVorlagenauswahl_Serienbriefe.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerCold.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerHost.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.EdokaMain.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmHinweismeldung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmHinweismeldung1.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmHinweismeldung2.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMeldungen.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMessageWeiterleitung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmOfficeBearbeitung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmWordViewer.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmcoldview.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmcoldviewer.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNewNote.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNoteDetail.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNotes.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmEdokaAdresse.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmHostTransfer.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmInteressent.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerDetails.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerInfo.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmPartnersuche.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnersucheInfo.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerzusammenlegung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.KopiefrmInteressent.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMitarbeitereinstellungen.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmProfil.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmProfilinfo.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDatumSelect.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDescription.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmParameterSetName.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmProfilDokAuswertung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmReportSelection.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSortSelect.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmValueSelect.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMetaDatenSelector.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmCalendar_SP.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDataselect.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSuchFormular.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmExportDataFremdanwendung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNotfallDataGenerate.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmAdminMitarbeiter.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmAdminMitarbeiterEdit.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainAnwendung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainAuswertungen.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainAuswertungsgruppe.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainAVQDoktype.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainBankinformation.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainBerechtigung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainColdFolder.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainColdIndexFeld.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainDokumentart.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainDokumentartDaten.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainDokumenttyp.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainDokumenttypDetail.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainFAAppl.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainFADokumenttyp.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainFeldtyp.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainFunktion.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainFunktionsgruppe.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainGrund.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainIDVMakros.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainKeyTabelle.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmdomainloeschgrund.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainMailtexte.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainMandant.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainMarktbereich.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainMeldungstexte.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainMitarbeiter.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainNiederlassung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainObjektbezeichnung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainOfficeVorlage.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmDomainOfficeVorlageDatei.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainPhsischesArchiv.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainProzess.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainReportfeld.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainReportfeldregel.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainRolle.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainSpalten.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainSQLQueries.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainStatusBezeichnung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainStatusTyp.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDoaminStellvertretung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainSteuerbefehl.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainSysadminfuntkion.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainTeam.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainTipTexte.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainVorlagenfeldregel.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainZuordnungen.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmVorlagenfelddetail.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.xfrmDomainMitarbeiter.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSysadminTableSelector.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmAuswertungsgruppeReports.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmcoldindx.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentvorlage.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmFunktionsgruppeRolle.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmFunktionsgruppe_Reportgruppe.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmIDVMakroOfficeVorlage.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmKostenstelle.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMitarbeiterFunktionsgruppe.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMitarbeiterRolle.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNLDokumente.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.EDOKA.frmRelEditor.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmReportFelder.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmReportgruppe_Report.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmReport_reportfeldregel.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRolleBerechtigung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRolleDokumentHierarchie.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRolleDokumentTyp.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRolleReportGruppe.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRolle_Sysadminfunktion.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmStatustypStatusbezeichnung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDieFrage.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmLoeschgrund.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMassenMail.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmReaktivierungsgrund.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSpaltenDarstellung.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmtes.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmTrefferliste.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmErrorAVQ_File.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmProgress.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.ImageComboBox.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.MultiComboBox.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.RichTextBoxEx.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.RichTextBoxHS.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.WebOCHostCtrl.resources
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.vbproj.GenerateResource.Cache
E:\Software-Projekte\EDOKA\Client\EDOKA\obj\Debug\EDOKA.exe.licenses
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\EDOKA.exe.config
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKA.exe
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKA.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKA.pdb
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\ResolveAssemblyReference.cache
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmAMSOfficeVorlage.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.FolderSelect.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmAbout.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmApplication.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmAvaloqSpooler.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDatenbankauswahl.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDefekteDokumente.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentStatistik.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumenttypbeschreibung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumenttypInfo.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumenttypOptions.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmedokaUpdate.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmEDOKA_Import.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmEdoka_Import_TextEditor.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmFAQ.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmGeburtstag.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmIconSelector.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmLog.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmLogin.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmMitarbeiterSelektion.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmNewSplash.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmPasswort.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmQuery.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmReleaseNotes.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmRestorJournal.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmRevision.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmSearchDoc.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmSelectStatus.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.Selektion_Mandant.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmSetDokVerantwortlicher.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmSicherungsjournal.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.Splash.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmStatusSetzen.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmStellvertreterAdd.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmtxtBemerkung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmWaitforClosing.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmBarcodeKleber.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmbcquestion.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmBerechtigungen.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmCalendar.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentbearbeitung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentbearbeitungBC.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentbearbeitungED.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentberechtigung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentInBearbeitung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentInfoEdit.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentKopieren.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentListe.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentwerte.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmFavoritenZuordnung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.FrmIndexMutation.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmInformationsEmpfaenger.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmNotfallimport.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmNotizen.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.FrmPasswortWechsel.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.FrmRestore.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmStatuswechsel.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmValueSelector.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmVorlagenauswahl.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmMehrfachdruck.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmPDF_Printer.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmBanklagerndverarbeitung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmBLAuslieferungen.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmBLDatumab.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmBLDossier.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmBLDossierzuweisen.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmBLDruck.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmBLKunde.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmblkundeMA.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmblkundenparameter.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmBLKundeVIP.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmBLParameter.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmBlPartnerUebersicht.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentAufbereitung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentinformationen.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.FrmFortschritt.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmPDFPrinter.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmWatchJob.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp._Form2.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentpaket.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentpaketdefinition.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentpaketInfo.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentpaketuebersicht.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmOffeneDPInstanzen.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmpartnermavip.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmTrefferlistex.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.ucedit.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.ucnoedit.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.ucProgress.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDruckabschluss.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDruckMessage.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmExcelSheets.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmOfficePreview.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmPartnerlisteLaden.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmPartnerlisteSpeichern.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmPartnerlisteVerwalten.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmpersvorlageladen.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmsbdruck.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmSBEdit.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmsbpartnerdetail.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmSBPDFPrinter.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmSBSpaltenDarstellung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmSerienbriefe.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmSerienbriefe_Load.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmtextmarken.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmVorlagenauswahl_Serienbriefe.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmPartnerCold.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmPartnerHost.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.EDOKAMain.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmHinweismeldung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmHinweismeldung1.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmHinweismeldung2.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmMeldungen.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmMessageWeiterleitung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.Resources.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmOfficeBearbeitung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmWordViewer.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmcoldview.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmcoldviewer.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmNewNote.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmNoteDetail.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmNotes.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmEdokaAdresse.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmHostTransfer.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmInteressent.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmPartnerDetails.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmPartnerInfo.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.FrmPartnersuche.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmPartnersucheInfo.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmPartnerzusammenlegung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.KopiefrmInteressent.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmMitarbeitereinstellungen.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmProfil.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmProfilinfo.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDatumSelect.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDescription.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmParameterSetName.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmProfilDokAuswertung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmReportSelection.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmSortSelect.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmValueSelect.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmMetaDatenSelector.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmCalendar_SP.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDataselect.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmSuchFormular.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmExportDataFremdanwendung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmNotfallDataGenerate.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmAdminMitarbeiter.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmAdminMitarbeiterEdit.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainAnwendung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainAuswertungen.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainAuswertungsgruppe.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainAVQDoktype.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainBankinformation.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainBerechtigung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainColdFolder.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainColdIndexFeld.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainDokumentart.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainDokumentartDaten.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainDokumenttyp.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainDokumenttypDetail.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp._frmDomainEditor.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainFAAppl.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainFADokumenttyp.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainFeldtyp.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainFunktion.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainFunktionsgruppe.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainGrund.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainIDVMakros.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainKeyTabelle.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmdomainloeschgrund.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainMailtexte.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainMandant.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainMarktbereich.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainMeldungstexte.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainMitarbeiter.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainNiederlassung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainObjektbezeichnung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainOfficeVorlage.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.FrmDomainOfficeVorlageDatei.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainPhsischesArchiv.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainProzess.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainReportfeld.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainReportfeldregel.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainRolle.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainSpalten.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainSQLQueries.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainStatusBezeichnung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainStatusTyp.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDoaminStellvertretung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainSteuerbefehl.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainSysadminfuntkion.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainTeam.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainTipTexte.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainVorlagenfeldregel.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDomainZuordnungen.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp._frmSysadminMenu.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmVorlagenfelddetail.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmBinData.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmAllgDomainEditor.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmImportOffice2010.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.xfrmDomainMitarbeiter.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmSysadminTableSelector.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.FrmDokMail.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmUMVDokumente.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmAuswertungsgruppeReports.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmcoldindx.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDokumentvorlage.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmFunktionsgruppeRolle.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.FrmFunktionsgruppe_Reportgruppe.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmIDVMakroOfficeVorlage.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmKostenstelle.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmMitarbeiterFunktionsgruppe.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmMitarbeiterRolle.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmNLDokumente.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.EDOKA.frmRelEditor.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmReportFelder.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmReportgruppe_Report.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmReport_reportfeldregel.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmRolleBerechtigung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmRolleDokumentHierarchie.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmRolleDokumentTyp.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmRolleReportGruppe.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmRolle_Sysadminfunktion.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmStatustypStatusbezeichnung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmDieFrage.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmLoeschgrund.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmMassenMail.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmReaktivierungsgrund.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmSpaltenDarstellung.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmtes.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmTrefferliste.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmErrorAVQ_File.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.frmProgress.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.ImageComboBox.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.MultiComboBox.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.RichTextBoxEx.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.RichTextBoxHS.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.WebOCHostCtrl.resources
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKAApp.vbproj.GenerateResource.Cache
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\obj\Debug\EDOKA.exe.licenses
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\EDOKA.exe
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\EDOKA.pdb
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\EDOKA.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\C1.Win.C1TrueDBGrid.2.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\clsNativ.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\EDOKALib.Common.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\EDOKALib.DataAccess.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\FlexCel.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\FlexCelWinforms.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Interop.OWC.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Interop.SHDocVw.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Interop.VBIDE.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Microsoft.mshtml.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Microsoft.Office.Interop.Excel.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Microsoft.Office.Interop.Word.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\msdatasrc.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Office.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Reporting20.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\XLSLib.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\C1.C1Report.2.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Interop.Office.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\C1.Win.C1Report.2.dll
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\C1.C1Report.2.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Microsoft.Office.Interop.Word.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\XLSLib.pdb
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\XLSLib.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\FlexCelWinforms.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\clsNativ.pdb
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\clsNativ.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\EDOKALib.Common.pdb
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\EDOKALib.Common.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Office.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Microsoft.Office.Interop.Excel.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\FlexCel.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\C1.Win.C1Report.2.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\EDOKALib.DataAccess.pdb
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\EDOKALib.DataAccess.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Reporting20.pdb
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\Reporting20.xml
E:\Software-Projekte\VS2008\EDOKA\Client_20120202 - QDF\EDOKA\bin\es\FlexCel.resources.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\EDOKA.exe.config
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\EDOKA.exe
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\EDOKA.pdb
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\EDOKA.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\C1.Win.C1TrueDBGrid.2.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\clsNativ.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\EDOKALib.Common.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\EDOKALib.DataAccess.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\FlexCel.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\FlexCelWinforms.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Interop.OWC.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Interop.SHDocVw.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Interop.VBIDE.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Microsoft.mshtml.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Microsoft.Office.Interop.Excel.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Microsoft.Office.Interop.Word.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\msdatasrc.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Office.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Reporting20.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\XLSLib.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\C1.C1Report.2.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Interop.Office.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\C1.Win.C1Report.2.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\C1.C1Report.2.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Microsoft.Office.Interop.Word.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\XLSLib.pdb
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\XLSLib.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\FlexCelWinforms.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\clsNativ.pdb
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\clsNativ.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\EDOKALib.Common.pdb
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\EDOKALib.Common.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Office.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Microsoft.Office.Interop.Excel.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\FlexCel.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\C1.Win.C1Report.2.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\EDOKALib.DataAccess.pdb
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\EDOKALib.DataAccess.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Reporting20.pdb
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\Reporting20.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\bin\es\FlexCel.resources.dll
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\ResolveAssemblyReference.cache
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmAMSOfficeVorlage.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FolderSelect.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmAbout.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmApplication.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmAvaloqSpooler.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDatenbankauswahl.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDefekteDokumente.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentStatistik.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumenttypbeschreibung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumenttypInfo.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumenttypOptions.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmedokaUpdate.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmEDOKA_Import.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmEdoka_Import_TextEditor.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmFAQ.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmGeburtstag.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmIconSelector.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmLog.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmLogin.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMitarbeiterSelektion.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNewSplash.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPasswort.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmQuery.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmReleaseNotes.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRestorJournal.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRevision.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSearchDoc.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSelectStatus.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.Selektion_Mandant.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSetDokVerantwortlicher.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSicherungsjournal.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.Splash.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmStatusSetzen.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmStellvertreterAdd.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmtxtBemerkung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmWaitforClosing.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBarcodeKleber.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmbcquestion.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBerechtigungen.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmCalendar.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentbearbeitung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentbearbeitungBC.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentbearbeitungED.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentberechtigung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentInBearbeitung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentInfoEdit.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentKopieren.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentListe.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentwerte.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmFavoritenZuordnung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmIndexMutation.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmInformationsEmpfaenger.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNotfallimport.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNotizen.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmPasswortWechsel.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmRestore.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmStatuswechsel.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmValueSelector.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmVorlagenauswahl.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMehrfachdruck.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPDF_Printer.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBanklagerndverarbeitung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLAuslieferungen.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLDatumab.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLDossier.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLDossierzuweisen.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLDruck.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLKunde.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmblkundeMA.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmblkundenparameter.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLKundeVIP.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBLParameter.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBlPartnerUebersicht.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentAufbereitung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentinformationen.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmFortschritt.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPDFPrinter.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmWatchJob.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp._Form2.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentpaket.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentpaketdefinition.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentpaketInfo.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentpaketuebersicht.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmOffeneDPInstanzen.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmpartnermavip.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmTrefferlistex.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.ucedit.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.ucnoedit.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.ucProgress.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDruckabschluss.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDruckMessage.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmExcelSheets.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmOfficePreview.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerlisteLaden.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerlisteSpeichern.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerlisteVerwalten.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmpersvorlageladen.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmsbdruck.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSBEdit.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmsbpartnerdetail.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSBPDFPrinter.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSBSpaltenDarstellung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSerienbriefe.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSerienbriefe_Load.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmtextmarken.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmVorlagenauswahl_Serienbriefe.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerCold.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerHost.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.EDOKAMain.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmHinweismeldung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmHinweismeldung1.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmHinweismeldung2.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMeldungen.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMessageWeiterleitung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.Resources.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmOfficeBearbeitung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmWordViewer.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmcoldview.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmcoldviewer.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNewNote.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNoteDetail.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNotes.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmEdokaAdresse.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmHostTransfer.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmInteressent.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerDetails.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerInfo.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmPartnersuche.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnersucheInfo.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmPartnerzusammenlegung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.KopiefrmInteressent.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMitarbeitereinstellungen.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmProfil.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmProfilinfo.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDatumSelect.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDescription.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmParameterSetName.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmProfilDokAuswertung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmReportSelection.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSortSelect.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmValueSelect.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMetaDatenSelector.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmCalendar_SP.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDataselect.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSuchFormular.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmExportDataFremdanwendung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNotfallDataGenerate.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmAdminMitarbeiter.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmAdminMitarbeiterEdit.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainAnwendung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainAuswertungen.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainAuswertungsgruppe.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainAVQDoktype.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainBankinformation.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainBerechtigung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainColdFolder.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainColdIndexFeld.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainDokumentart.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainDokumentartDaten.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainDokumenttyp.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainDokumenttypDetail.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp._frmDomainEditor.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainFAAppl.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainFADokumenttyp.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainFeldtyp.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainFunktion.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainFunktionsgruppe.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainGrund.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainIDVMakros.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainKeyTabelle.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmdomainloeschgrund.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainMailtexte.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainMandant.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainMarktbereich.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainMeldungstexte.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainMitarbeiter.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainNiederlassung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainObjektbezeichnung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainOfficeVorlage.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmDomainOfficeVorlageDatei.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainPhsischesArchiv.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainProzess.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainReportfeld.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainReportfeldregel.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainRolle.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainSpalten.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainSQLQueries.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainStatusBezeichnung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainStatusTyp.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDoaminStellvertretung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainSteuerbefehl.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainSysadminfuntkion.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainTeam.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainTipTexte.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainVorlagenfeldregel.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDomainZuordnungen.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp._frmSysadminMenu.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmVorlagenfelddetail.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmBinData.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmAllgDomainEditor.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmImportOffice2010.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.xfrmDomainMitarbeiter.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSysadminTableSelector.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmDokMail.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmUMVDokumente.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmAuswertungsgruppeReports.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmcoldindx.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDokumentvorlage.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmFunktionsgruppeRolle.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.FrmFunktionsgruppe_Reportgruppe.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmIDVMakroOfficeVorlage.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmKostenstelle.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMitarbeiterFunktionsgruppe.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMitarbeiterRolle.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmNLDokumente.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.EDOKA.frmRelEditor.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmReportFelder.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmReportgruppe_Report.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmReport_reportfeldregel.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRolleBerechtigung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRolleDokumentHierarchie.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRolleDokumentTyp.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRolleReportGruppe.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmRolle_Sysadminfunktion.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmStatustypStatusbezeichnung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmDieFrage.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmLoeschgrund.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmMassenMail.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmReaktivierungsgrund.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmSpaltenDarstellung.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmtes.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmTrefferliste.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmErrorAVQ_File.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.frmProgress.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.ImageComboBox.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.MultiComboBox.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.RichTextBoxEx.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.RichTextBoxHS.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.WebOCHostCtrl.resources
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKAApp.vbproj.GenerateResource.Cache
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKA.exe.licenses
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKA.exe
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKA.xml
E:\Software-Projekte\VS2008\EDOKA\Client\EDOKA\obj\Debug\EDOKA.pdb
E:\Software-Projekte\EDOKA\client\EDOKA\bin\Microsoft.mshtml.dll
E:\Software-Projekte\EDOKA\client\EDOKA\bin\Microsoft.Office.Interop.Excel.dll
E:\Software-Projekte\EDOKA\client\EDOKA\bin\Microsoft.Office.Interop.Word.dll
E:\Software-Projekte\EDOKA\client\EDOKA\bin\msdatasrc.dll
E:\Software-Projekte\EDOKA\client\EDOKA\bin\Office.dll
E:\Software-Projekte\EDOKA\client\EDOKA\bin\Microsoft.Office.Interop.Word.xml
E:\Software-Projekte\EDOKA\client\EDOKA\bin\Office.xml
E:\Software-Projekte\EDOKA\client\EDOKA\bin\Microsoft.Office.Interop.Excel.xml
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp.frmBlPartnerUebersicht.resources
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp.FrmFortschritt.resources
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp._Form2.resources
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp.frmSBEdit.resources
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp.Resources.resources
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp._frmDomainEditor.resources
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp._frmSysadminMenu.resources
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp.frmBinData.resources
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp.frmAllgDomainEditor.resources
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp.frmImportOffice2010.resources
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp.FrmDokMail.resources
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp.frmUMVDokumente.resources
E:\Software-Projekte\EDOKA\client\EDOKA\bin\Microsoft.Office.Interop.PowerPoint.dll
E:\Software-Projekte\EDOKA\client\EDOKA\bin\Microsoft.Vbe.Interop.dll
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp.vbprojResolveAssemblyReference.cache
E:\Software-Projekte\EDOKA\client\EDOKA\bin\EDOKALib.Common.xml
E:\Software-Projekte\EDOKA\client\EDOKA\obj\Debug\EDOKAApp.FrmBarcodeDefinition.resources
E:\Software-Projekte\EDOKA\client\EDOKA\bin\MW6.SDK.dll

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,61 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
EDOKALib.Common
</name>
</assembly>
<members>
<member name="M:EDOKALib.Common.Action.Load(System.IO.FileInfo)">
<summary>Lädt externes Xml file für automatisierte Aktionen</summary>
<param name="xmlImportFile">Das Xml File mit den entsprechenden Parametern</param>
</member>
<member name="M:EDOKALib.Common.Action.GetParameterByName(System.String)">
<summary>Returns a parameter identified by his name</summary>
<param name="paramName"></param>
<returns></returns>
</member>
<member name="M:EDOKALib.Common.Action.Destroy">
<summary>Zerstört die statische Instanz</summary>
</member>
<member name="M:EDOKALib.Common.Action.IsValid(System.IO.FileInfo)">
<summary>Überprüft ob das Xml file dem angegebenen Schema entspricht</summary>
<param name="xmlImportFile"></param>
<returns></returns>
</member>
<member name="T:EDOKALib.Common.Parameter">
<summary>Struct für einzelne Parameter</summary>
</member>
<member name="T:EDOKALib.Common.Consts">
<summary>Diese klasse beinhaltet Konstanten welche im der gesamten EDOKAApp verwendet werden</summary>
</member>
<member name="T:EDOKALib.Common.Crypto">
<summary>Diese klasse beinhaltet Methoden welche für den Kryptografischen Teil im EDOKA verwendet werden</summary>
</member>
<member name="M:EDOKALib.Common.Crypto.EncryptText(System.String)">
<summary>Verschlüsselt einen Text mit dem angegebenen Passwort</summary>
<param name="strText">Zu verschlüsselnder Text</param>
<includesource>yes</includesource>
</member>
<member name="M:EDOKALib.Common.Crypto.DecryptText(System.String)">
<summary>Entschlüsselt einen Text</summary>
<param name="strText">Zu verschlüsselnder Text</param>
<includesource>yes</includesource>
</member>
<member name="T:EDOKALib.Common.Datenbank">
<summary>Diese klasse beinhaltet Methoden welche für den Datenbank Zugriff im DataAccess verwendet werden</summary>
</member>
<member name="M:EDOKALib.Common.Datenbank.GetDSN">
<summary>Liest aus dem Connection String file edokaconn.cfg aus</summary>
<returns>Den entschlüsseleten DSN string</returns>
</member>
<member name="T:EDOKALib.Common.Tools">
<summary>Diese klasse beinhaltet Methoden, welche im gesamten Edoka über alle Layers verwendet werden</summary>
</member>
<member name="M:EDOKALib.Common.Tools.ValidateDS(System.Data.DataSet)">
<summary>Überprüft TableCount und RowCount eines DataSet</summary>
<param name="ds"></param>
<returns>True wenn table- und rowcount > 0</returns>
</member>
</members>
</doc>

View File

@@ -0,0 +1 @@
96d8a1990a548eca0ee1937f406ae979ccf54928

View File

@@ -0,0 +1,6 @@
E:\Software-Projekte\EDOKA\client\Common\bin\EDOKALib.Common.dll
E:\Software-Projekte\EDOKA\client\Common\bin\EDOKALib.Common.xml
E:\Software-Projekte\EDOKA\client\Common\obj\Release\EDOKALib.Common.dll
E:\Software-Projekte\EDOKA\client\Common\obj\Release\EDOKALib.Common.xml
E:\Software-Projekte\EDOKA\client\Common\obj\Release\Common.vbproj.CoreCompileInputs.cache
E:\Software-Projekte\EDOKA\client\Common\obj\Release\Common.vbproj.CopyComplete

Binary file not shown.

View File

@@ -0,0 +1,61 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
EDOKALib.Common
</name>
</assembly>
<members>
<member name="M:EDOKALib.Common.Action.Load(System.IO.FileInfo)">
<summary>Lädt externes Xml file für automatisierte Aktionen</summary>
<param name="xmlImportFile">Das Xml File mit den entsprechenden Parametern</param>
</member>
<member name="M:EDOKALib.Common.Action.GetParameterByName(System.String)">
<summary>Returns a parameter identified by his name</summary>
<param name="paramName"></param>
<returns></returns>
</member>
<member name="M:EDOKALib.Common.Action.Destroy">
<summary>Zerstört die statische Instanz</summary>
</member>
<member name="M:EDOKALib.Common.Action.IsValid(System.IO.FileInfo)">
<summary>Überprüft ob das Xml file dem angegebenen Schema entspricht</summary>
<param name="xmlImportFile"></param>
<returns></returns>
</member>
<member name="T:EDOKALib.Common.Parameter">
<summary>Struct für einzelne Parameter</summary>
</member>
<member name="T:EDOKALib.Common.Consts">
<summary>Diese klasse beinhaltet Konstanten welche im der gesamten EDOKAApp verwendet werden</summary>
</member>
<member name="T:EDOKALib.Common.Crypto">
<summary>Diese klasse beinhaltet Methoden welche für den Kryptografischen Teil im EDOKA verwendet werden</summary>
</member>
<member name="M:EDOKALib.Common.Crypto.EncryptText(System.String)">
<summary>Verschlüsselt einen Text mit dem angegebenen Passwort</summary>
<param name="strText">Zu verschlüsselnder Text</param>
<includesource>yes</includesource>
</member>
<member name="M:EDOKALib.Common.Crypto.DecryptText(System.String)">
<summary>Entschlüsselt einen Text</summary>
<param name="strText">Zu verschlüsselnder Text</param>
<includesource>yes</includesource>
</member>
<member name="T:EDOKALib.Common.Datenbank">
<summary>Diese klasse beinhaltet Methoden welche für den Datenbank Zugriff im DataAccess verwendet werden</summary>
</member>
<member name="M:EDOKALib.Common.Datenbank.GetDSN">
<summary>Liest aus dem Connection String file edokaconn.cfg aus</summary>
<returns>Den entschlüsseleten DSN string</returns>
</member>
<member name="T:EDOKALib.Common.Tools">
<summary>Diese klasse beinhaltet Methoden, welche im gesamten Edoka über alle Layers verwendet werden</summary>
</member>
<member name="M:EDOKALib.Common.Tools.ValidateDS(System.Data.DataSet)">
<summary>Überprüft TableCount und RowCount eines DataSet</summary>
<param name="ds"></param>
<returns>True wenn table- und rowcount > 0</returns>
</member>
</members>
</doc>

BIN
Common/vssver.scc Normal file

Binary file not shown.