MS_2911
This commit is contained in:
parent
c2f8ddd1c3
commit
0f374eecb2
@ -194,6 +194,20 @@ Public Class ClassDOC_SEARCH
|
||||
sw.Start()
|
||||
Dim DTGrid As New DataTable
|
||||
Dim ColArrayDEFINITION As New List(Of String)
|
||||
Dim listcheck As New List(Of String)
|
||||
For Each row As DataRow In DT_WINDREAM_RESULTLIST.Rows
|
||||
Dim type = row.Item("TYPE_ID")
|
||||
Dim COLNAME = row.Item("HEADER_CAPTION")
|
||||
If type = 2 Then
|
||||
listcheck.Add(COLNAME)
|
||||
End If
|
||||
Next
|
||||
For Each col1 As String In listcheck
|
||||
Dim collist As DataColumn = DT_FILE_RESULT.Columns(col1)
|
||||
If Not IsNothing(collist) Then
|
||||
collist.DataType = GetType(Boolean)
|
||||
End If
|
||||
Next
|
||||
Try
|
||||
'Die Icon Colum erstellen und konfigurieren
|
||||
Dim colIcon As New System.Data.DataColumn()
|
||||
@ -248,6 +262,14 @@ Public Class ClassDOC_SEARCH
|
||||
sw.Start()
|
||||
COL_ARRAY_RESULTLIST = ColArrayDEFINITION
|
||||
|
||||
For Each col1 As String In listcheck
|
||||
Dim collist As DataColumn = DTGrid.Columns(col1)
|
||||
If Not IsNothing(collist) Then
|
||||
collist.DataType = GetType(Boolean)
|
||||
End If
|
||||
Next
|
||||
|
||||
|
||||
For Each FILE_ROW As DataRow In DT_FILE_RESULT.Rows
|
||||
Dim fullpath = FILE_ROW.Item("FULL_FILENAME")
|
||||
Dim objecttype = FILE_ROW.Item("OBJECTTYPE")
|
||||
|
||||
@ -229,6 +229,14 @@ Public Class ClassHelper
|
||||
collist.DataType = GetType(Boolean)
|
||||
End If
|
||||
Next
|
||||
Try
|
||||
Dim collist As DataColumn = tbltemp.Columns("files?")
|
||||
If Not IsNothing(collist) Then
|
||||
collist.DataType = GetType(Boolean)
|
||||
End If
|
||||
Catch ex As Exception
|
||||
|
||||
End Try
|
||||
Try
|
||||
tbltemp.Load(Primary_DT.CreateDataReader)
|
||||
Return tbltemp
|
||||
|
||||
@ -455,14 +455,24 @@ Public Class ClassImport_Windream
|
||||
Else
|
||||
' wenn auf die Datei zugeriffen werden konnte ist sie bereits vorhanden -> Datum anhängen
|
||||
If LogErrorsOnly = False Then ClassLogger.Add(" >> Es konnte zugegriffen werden -> DATEI IST BEREITS VORHANDEN", False)
|
||||
|
||||
Do While FILE_EXISTS_IN_WD = True
|
||||
If LogErrorsOnly = False Then ClassLogger.Add(" >> Attention File '" & _neuername & extension & "' is existing!", False)
|
||||
_neuername = Stammname & VERSION_DELIMITER & version
|
||||
_NewFileString = _neuername
|
||||
FILE_EXISTS_IN_WD = ClassWindream.oSession.WMObjectExists(WINDREAMLib.WMEntity.WMEntityDocument, _NewFileString.Substring(2) & extension, 0, 0)
|
||||
version = version + 1
|
||||
Loop
|
||||
Dim msg = "Eine Datei mit identischem Namen existiert bereits! Wollen Sie die bestehende Datei ersetzen?"
|
||||
If USER_LANGUAGE <> "de-DE" Then
|
||||
msg = "Ther is already a file with the same name! Would You like to replace the file?"
|
||||
End If
|
||||
Dim result As MsgBoxResult
|
||||
result = MessageBox.Show(msg, "File alredy exists:", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
|
||||
If result = MsgBoxResult.Yes Then
|
||||
WMObject = ClassWindream.oSession.GetNewWMObjectFS(WINDREAMLib.WMEntity.WMEntityDocument, _NewFileString.Substring(2) & extension, 31)
|
||||
Else
|
||||
Do While FILE_EXISTS_IN_WD = True
|
||||
If LogErrorsOnly = False Then ClassLogger.Add(" >> Attention File '" & _neuername & extension & "' is existing!", False)
|
||||
_neuername = Stammname & VERSION_DELIMITER & version
|
||||
_NewFileString = _neuername
|
||||
FILE_EXISTS_IN_WD = ClassWindream.oSession.WMObjectExists(WINDREAMLib.WMEntity.WMEntityDocument, _NewFileString.Substring(2) & extension, 0, 0)
|
||||
version = version + 1
|
||||
Loop
|
||||
End If
|
||||
|
||||
Try
|
||||
WMObject = ClassWindream.oSession.GetNewWMObjectFS(WINDREAMLib.WMEntity.WMEntityDocument, _NewFileString.Substring(2) & extension, 31)
|
||||
Catch ex As Exception
|
||||
|
||||
@ -669,6 +669,8 @@ Public Class ClassWindream
|
||||
End Function
|
||||
Public Shared Function Stream_File(ByVal filenameQuelle As String, ByVal zielpfad As String, Optional ImportAll As Boolean = False)
|
||||
Try
|
||||
Dim extension As String = Path.GetExtension(filenameQuelle)
|
||||
Dim _stammname
|
||||
aktWMObject = Nothing
|
||||
If LogErrorsOnly = False Then ClassLogger.Add(" >> Stream_File wurde gestartet", False)
|
||||
If IsNothing(oSession) Then
|
||||
@ -678,7 +680,7 @@ Public Class ClassWindream
|
||||
End If
|
||||
|
||||
Dim sdsd = WMEntityFolder
|
||||
|
||||
|
||||
|
||||
Const STREAM_BinaryObject = "BinaryObject"
|
||||
|
||||
@ -745,6 +747,28 @@ Public Class ClassWindream
|
||||
' wenn auf die Datei zugeriffen werden konnte ist sie bereits vorhanden -> Datum anhängen
|
||||
If LogErrorsOnly = False Then ClassLogger.Add(" >> Es konnte zugegriffen werden -> DATEI IST BEREITS VORHANDEN", False)
|
||||
Err.Clear()
|
||||
Dim msg = "Eine Datei mit identischem Namen existiert bereits! Wollen Sie die bestehende Datei ersetzen?"
|
||||
If USER_LANGUAGE <> "de-DE" Then
|
||||
msg = "Ther is already a file with the same name! Would You like to replace the file?"
|
||||
End If
|
||||
Dim result As MsgBoxResult
|
||||
result = MessageBox.Show(msg, "File alredy exists:", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
|
||||
If result = MsgBoxResult.Yes Then
|
||||
WMObject = oSession.GetNewWMObjectFS(WMEntityDocument, endgültigerDateiname, WMObjectEditModeObject)
|
||||
Else
|
||||
Dim FILE_EXISTS_IN_WD = True
|
||||
Dim version As Integer = 2
|
||||
|
||||
_stammname = endgültigerDateiname.Replace(extension, "")
|
||||
_stammname = endgültigerDateiname.Replace("~", "")
|
||||
Dim _neuername As String
|
||||
Do While FILE_EXISTS_IN_WD = True
|
||||
_neuername = _stammname & "~" & version
|
||||
FILE_EXISTS_IN_WD = ClassWindream.oSession.WMObjectExists(WINDREAMLib.WMEntity.WMEntityDocument, _neuername & extension, 0, 0)
|
||||
Version = Version + 1
|
||||
Loop
|
||||
endgültigerDateiname = _neuername & extension
|
||||
End If
|
||||
|
||||
WMObject = oSession.GetNewWMObjectFS(WMEntityDocument, endgültigerDateiname, WMObjectEditModeObject)
|
||||
If Err.Number > 0 Then
|
||||
@ -754,7 +778,7 @@ Public Class ClassWindream
|
||||
If LogErrorsOnly = False Then ClassLogger.Add(" >> WMObject zugewiesen", False)
|
||||
End If
|
||||
End If
|
||||
|
||||
|
||||
If LogErrorsOnly = False Then ClassLogger.Add(" >> ENDGÜLTIGER DATEINAME => " & endgültigerDateiname, False)
|
||||
If WMObject IsNot Nothing Then
|
||||
' lock object for file system access (to change the file itself)
|
||||
|
||||
@ -153,7 +153,6 @@ Public Class ClassWindreamDocGrid
|
||||
Dim DT_DETAILS_SQL = String.Format("SELECT T.[GUID],T.[DocID],T.[CONFIG_ID],T1.HEADER_CAPTION,T.[VALUE],T1.[LANGUAGE], T1.COLUMN_VIEW,T1.EDITABLE,T1.TYPE_ID,T1.VISIBLE,T.CHANGED_WHEN,T.CHANGED_WHO " &
|
||||
"FROM TBPMO_DOC_VALUES T INNER JOIN TBPMO_DOCSEARCH_RESULTLIST_CONFIG T1 ON T.CONFIG_ID = T1.GUID WHERE T1.ENTITY_ID = {0} AND LANGUAGE = '{1}'", CURRENT_FORM_ID, USER_LANGUAGE)
|
||||
Dim DT_DETAILS As DataTable = ClassDatabase.Return_Datatable(DT_DETAILS_SQL)
|
||||
|
||||
' Tabellen zum DataSet hinzufügen
|
||||
ds.Tables.Add(DT_RESULT)
|
||||
ds.Tables.Add(DT_DETAILS)
|
||||
|
||||
@ -310,12 +310,6 @@
|
||||
<Compile Include="frmGeodataNavigation.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="frmGoogle.Designer.vb">
|
||||
<DependentUpon>frmGoogle.vb</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="frmGoogle.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="frmLicense_User.Designer.vb">
|
||||
<DependentUpon>frmLicense_User.vb</DependentUpon>
|
||||
</Compile>
|
||||
@ -729,6 +723,9 @@
|
||||
<EmbeddedResource Include="frmConstructorDesigner.en.resx">
|
||||
<DependentUpon>frmConstructorDesigner.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="frmConstructor_Main.ar-EG.resx">
|
||||
<DependentUpon>frmConstructor_Main.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="frmDiagrams.en-US.resx">
|
||||
<DependentUpon>frmDiagrams.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
@ -744,9 +741,6 @@
|
||||
<EmbeddedResource Include="frmGeodataNavigation.resx">
|
||||
<DependentUpon>frmGeodataNavigation.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="frmGoogle.resx">
|
||||
<DependentUpon>frmGoogle.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="frmLicense.en-US.resx">
|
||||
<DependentUpon>frmLicense.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
@ -1467,6 +1461,7 @@
|
||||
<None Include="Resources\Compare_RefreshScriptPreview.png" />
|
||||
<None Include="Resources\AddExistingItem_6269.png" />
|
||||
<None Include="Resources\AddExistingItem_62691.png" />
|
||||
<None Include="Resources\base_globe_32.png" />
|
||||
<Content Include="Resources\cube.ico" />
|
||||
<Content Include="Resources\138_PushPin_32x42_72.png" />
|
||||
<None Include="Resources\PropertyGridEditorPart_6041.png" />
|
||||
|
||||
@ -33,7 +33,7 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("2.4.7.9")>
|
||||
<Assembly: AssemblyVersion("2.4.8.0")>
|
||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||
|
||||
<Assembly: NeutralResourcesLanguageAttribute("")>
|
||||
@ -200,6 +200,26 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property AddExistingItem_6269() As System.Drawing.Bitmap
|
||||
Get
|
||||
Dim obj As Object = ResourceManager.GetObject("AddExistingItem_6269", resourceCulture)
|
||||
Return CType(obj,System.Drawing.Bitmap)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property AddExistingItem_62691() As System.Drawing.Bitmap
|
||||
Get
|
||||
Dim obj As Object = ResourceManager.GetObject("AddExistingItem_62691", resourceCulture)
|
||||
Return CType(obj,System.Drawing.Bitmap)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
'''</summary>
|
||||
@ -390,6 +410,16 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property base_globe_32() As System.Drawing.Bitmap
|
||||
Get
|
||||
Dim obj As Object = ResourceManager.GetObject("base_globe_32", resourceCulture)
|
||||
Return CType(obj,System.Drawing.Bitmap)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
'''</summary>
|
||||
@ -1560,6 +1590,16 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property Permission_12796() As System.Drawing.Bitmap
|
||||
Get
|
||||
Dim obj As Object = ResourceManager.GetObject("Permission_12796", resourceCulture)
|
||||
Return CType(obj,System.Drawing.Bitmap)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
'''</summary>
|
||||
@ -1680,6 +1720,16 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property search_glyph() As System.Drawing.Bitmap
|
||||
Get
|
||||
Dim obj As Object = ResourceManager.GetObject("search_glyph", resourceCulture)
|
||||
Return CType(obj,System.Drawing.Bitmap)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
'''</summary>
|
||||
@ -1690,6 +1740,16 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property sql() As System.Drawing.Bitmap
|
||||
Get
|
||||
Dim obj As Object = ResourceManager.GetObject("sql", resourceCulture)
|
||||
Return CType(obj,System.Drawing.Bitmap)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
'''</summary>
|
||||
@ -1940,6 +2000,16 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property xml() As System.Drawing.Bitmap
|
||||
Get
|
||||
Dim obj As Object = ResourceManager.GetObject("xml", resourceCulture)
|
||||
Return CType(obj,System.Drawing.Bitmap)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
'''</summary>
|
||||
|
||||
1953
app/DD-Record-Organiser/My Project/Resources.Designer_old.vb
Normal file
1953
app/DD-Record-Organiser/My Project/Resources.Designer_old.vb
Normal file
File diff suppressed because it is too large
Load Diff
@ -133,8 +133,11 @@
|
||||
<data name="UserInterfaceEditor_5845_32x" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\UserInterfaceEditor_5845_32x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Carousel_16x16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Carousel_16x16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="email_go" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\email_go.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="windream-Logo-transparent" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\windream-Logo-transparent.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="DD_Icons-ADDI" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\DD_Icons-ADDI.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
@ -169,6 +172,9 @@
|
||||
<data name="Files_7954" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Files_7954.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="asset_pie-series-chart_on_12X12" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\asset_pie-series-chart_on_12X12.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Men3" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Men3.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@ -178,12 +184,6 @@
|
||||
<data name="Arrow_RedoRetry_16xMD" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Arrow_RedoRetry_16xMD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Login_6031_32x" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Login_6031_32x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="lock" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\lock.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="add" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\add.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@ -202,18 +202,15 @@
|
||||
<data name="text" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\text.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="search_glyph" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\search_glyph.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="userAccounts" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\userAccounts.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="email_edit" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\email_edit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="key_go" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\key_go.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="mail" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\mail.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="user_green" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\user_green.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@ -223,6 +220,9 @@
|
||||
<data name="bell_go" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\bell_go.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dtp1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\dtp1.PNG;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="checkbox_16xLG" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\checkbox_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@ -262,18 +262,18 @@
|
||||
<data name="table" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\table.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="changechartlegendalignment_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\changechartlegendalignment_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="database_error" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\database_error.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="page_excel" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\page_excel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="database_delete" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\database_delete.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dtp" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\dtp.PNG;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Reports-collapsed_12995_32x" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Reports-collapsed_12995_32x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="text1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\text1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@ -286,29 +286,20 @@
|
||||
<data name="application_view_tile" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\application_view_tile.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="application_view_detail" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\application_view_detail.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="database_save" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\database_save.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="magifier_zoom_out" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\magifier_zoom_out.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="brick_go" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\brick_go.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="DateOrTimePicker_675" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\DateOrTimePicker_675.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="calendar_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\calendar_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="folder_go" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\folder_go.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dtp1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\dtp1.PNG;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="Carousel_16x16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Carousel_16x16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="f5" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\f5.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
@ -322,9 +313,6 @@
|
||||
<data name="flag_green" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\flag_green.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="add1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\add1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ComboBox_672" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\ComboBox_672.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@ -337,8 +325,8 @@
|
||||
<data name="save" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\save.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="save_16xLG" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\save_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="windream_Logo_transparent_klein" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\windream-Logo-transparent_klein.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Go" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Go.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
@ -346,6 +334,12 @@
|
||||
<data name="page_copy" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\page_copy.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="AddTable_5632" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\AddTable_5632.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="arrow_refresh" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\arrow_refresh.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="lightbulb" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\lightbulb.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@ -355,9 +349,15 @@
|
||||
<data name="delete" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\delete.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="arrow_Forward_16xLG" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\arrow_Forward_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Arrow_RedoRetry_16xLG" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Arrow_RedoRetry_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Permission_12796" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Permission_12796.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="005_Task_32x42_72" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\005_Task_32x42_72.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@ -367,6 +367,9 @@
|
||||
<data name="Property_501" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Property_501.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="action_Cancel_16xLG" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\action_Cancel_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Works Finished (nonXP)" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Works Finished (nonXP).ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@ -382,9 +385,6 @@
|
||||
<data name="WMI_Task_21x" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\WMI_Task_21x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Connection_Manager" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Connection_Manager.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Link" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Link.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@ -403,9 +403,15 @@
|
||||
<data name="lock_16xMD" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\lock_16xMD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="database_go1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\database_go1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="sql" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\sql.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="doc_excel_csv" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\doc_excel_csv.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="database_lightning" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\database_lightning.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@ -418,8 +424,8 @@
|
||||
<data name="Label_684" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Label_684.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="benutzer3" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\benutzer3.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="DateOrTimePicker_675" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\DateOrTimePicker_675.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="bug_edit" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\bug_edit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
@ -457,9 +463,6 @@
|
||||
<data name="view_16xLG" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\view_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="f3" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\f3.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="xls" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\xls.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@ -469,11 +472,11 @@
|
||||
<data name="database_key" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\database_key.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="AddTable_5632" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\AddTable_5632.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="application_view_detail" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\application_view_detail.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="windream-Logo-transparent" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\windream-Logo-transparent.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="1532_Flag_Blue" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\1532_Flag_Blue.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="xml" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\xml.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
@ -484,8 +487,8 @@
|
||||
<data name="f2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\f2.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="database_go1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\database_go1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="save_16xLG" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\save_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="refresh_16xLG" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\refresh_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
@ -508,18 +511,21 @@
|
||||
<data name="dwg" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\dwg.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="benutzer3" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\benutzer3.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="folder_Open_16xLG" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\folder_Open_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="138_PushPin_32x42_72" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\138_PushPin_32x42_721.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="bmp" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\bmp.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="user_suit" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\user_suit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="windream_Logo_transparent_klein" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\windream-Logo-transparent_klein.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="WebUserControl(ascx)_11270_16x" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\WebUserControl(ascx)_11270_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@ -541,11 +547,11 @@
|
||||
<data name="action_add_16xSM" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\action_add_16xSM.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="arrow_Forward_16xLG" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\arrow_Forward_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="email_edit" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\email_edit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="mail" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\mail.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="Connection_Manager" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Connection_Manager.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="bricks" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\bricks.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
@ -574,17 +580,14 @@
|
||||
<data name="folder_Open_32xMD" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\folder_Open_32xMD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Men5" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Men5.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="page_red" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\page_red.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="bell_delete" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\bell_delete.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="database_error" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\database_error.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="f3" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\f3.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="note_delete" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\note_delete.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
@ -598,8 +601,8 @@
|
||||
<data name="Table_748" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Table_748.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="doc_excel_csv" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\doc_excel_csv.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="add1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\add1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="bug_edit1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\bug_edit1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
@ -607,8 +610,8 @@
|
||||
<data name="Men4" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Men4.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="asset_pie-series-chart_on_12X12" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\asset_pie-series-chart_on_12X12.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="lock" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\lock.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="keinbild" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\keinbild.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
@ -616,11 +619,11 @@
|
||||
<data name="UserInterfaceEditor_5845" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\UserInterfaceEditor_5845.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="1532_Flag_Blue" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\1532_Flag_Blue.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="changechartlegendalignment_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\changechartlegendalignment_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="email_go" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\email_go.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="Login_6031_32x" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Login_6031_32x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="database_go" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\database_go.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
@ -628,14 +631,14 @@
|
||||
<data name="f1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\f1.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="arrow_refresh" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\arrow_refresh.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="database_save" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\database_save.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="_blank" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\_blank.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="NetworkPipes_32xLG" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\NetworkPipes_32xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="search_glyph" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\search_glyph.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="page_refresh" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\page_refresh.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
@ -670,11 +673,11 @@
|
||||
<data name="FileSystemEditor_5852" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\FileSystemEditor_5852.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="138_PushPin_32x42_72" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\138_PushPin_32x42_721.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="NetworkPipes_32xLG" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\NetworkPipes_32xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="database_delete" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\database_delete.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="Men5" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Men5.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="database_edit" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\database_edit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
@ -697,10 +700,10 @@
|
||||
<data name="112_RefreshArrow_Blue_24x24_721" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\112_RefreshArrow_Blue_24x24_721.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="action_Cancel_16xLG" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\action_Cancel_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="Reports-collapsed_12995_32x" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Reports-collapsed_12995_32x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Permission_12796" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Permission_12796.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="base_globe_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\base_globe_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
</root>
|
||||
BIN
app/DD-Record-Organiser/Resources/base_globe_32.png
Normal file
BIN
app/DD-Record-Organiser/Resources/base_globe_32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.6 KiB |
@ -441,13 +441,13 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'TBPMO_FORM_CONSTRUCTORBindingNavigator
|
||||
'
|
||||
resources.ApplyResources(Me.TBPMO_FORM_CONSTRUCTORBindingNavigator, "TBPMO_FORM_CONSTRUCTORBindingNavigator")
|
||||
Me.TBPMO_FORM_CONSTRUCTORBindingNavigator.AddNewItem = Me.BindingNavigatorAddNewItem
|
||||
Me.TBPMO_FORM_CONSTRUCTORBindingNavigator.BindingSource = Me.TBPMO_FORM_CONSTRUCTORBindingSource
|
||||
Me.TBPMO_FORM_CONSTRUCTORBindingNavigator.CountItem = Me.BindingNavigatorCountItem
|
||||
Me.TBPMO_FORM_CONSTRUCTORBindingNavigator.CountItemFormat = "from {0} Constructor-Sichten"
|
||||
Me.TBPMO_FORM_CONSTRUCTORBindingNavigator.DeleteItem = Nothing
|
||||
Me.TBPMO_FORM_CONSTRUCTORBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem, Me.BindingNavigatorMovePreviousItem, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, Me.BindingNavigatorMoveNextItem, Me.BindingNavigatorMoveLastItem, Me.BindingNavigatorSeparator2, Me.BindingNavigatorAddNewItem, Me.BindingNavigatorDeleteItem, Me.TBPMO_FORM_CONSTRUCTORBindingNavigatorSaveItem})
|
||||
resources.ApplyResources(Me.TBPMO_FORM_CONSTRUCTORBindingNavigator, "TBPMO_FORM_CONSTRUCTORBindingNavigator")
|
||||
Me.TBPMO_FORM_CONSTRUCTORBindingNavigator.MoveFirstItem = Me.BindingNavigatorMoveFirstItem
|
||||
Me.TBPMO_FORM_CONSTRUCTORBindingNavigator.MoveLastItem = Me.BindingNavigatorMoveLastItem
|
||||
Me.TBPMO_FORM_CONSTRUCTORBindingNavigator.MoveNextItem = Me.BindingNavigatorMoveNextItem
|
||||
@ -457,31 +457,31 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'BindingNavigatorAddNewItem
|
||||
'
|
||||
Me.BindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
resources.ApplyResources(Me.BindingNavigatorAddNewItem, "BindingNavigatorAddNewItem")
|
||||
Me.BindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorAddNewItem.Name = "BindingNavigatorAddNewItem"
|
||||
'
|
||||
'BindingNavigatorCountItem
|
||||
'
|
||||
Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
|
||||
resources.ApplyResources(Me.BindingNavigatorCountItem, "BindingNavigatorCountItem")
|
||||
Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
|
||||
'
|
||||
'BindingNavigatorMoveFirstItem
|
||||
'
|
||||
Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
resources.ApplyResources(Me.BindingNavigatorMoveFirstItem, "BindingNavigatorMoveFirstItem")
|
||||
Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorMoveFirstItem.Name = "BindingNavigatorMoveFirstItem"
|
||||
'
|
||||
'BindingNavigatorMovePreviousItem
|
||||
'
|
||||
Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
resources.ApplyResources(Me.BindingNavigatorMovePreviousItem, "BindingNavigatorMovePreviousItem")
|
||||
Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorMovePreviousItem.Name = "BindingNavigatorMovePreviousItem"
|
||||
'
|
||||
'BindingNavigatorSeparator
|
||||
'
|
||||
Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
|
||||
resources.ApplyResources(Me.BindingNavigatorSeparator, "BindingNavigatorSeparator")
|
||||
Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
|
||||
'
|
||||
'BindingNavigatorPositionItem
|
||||
'
|
||||
@ -490,36 +490,36 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'BindingNavigatorSeparator1
|
||||
'
|
||||
Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
|
||||
resources.ApplyResources(Me.BindingNavigatorSeparator1, "BindingNavigatorSeparator1")
|
||||
Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
|
||||
'
|
||||
'BindingNavigatorMoveNextItem
|
||||
'
|
||||
Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
resources.ApplyResources(Me.BindingNavigatorMoveNextItem, "BindingNavigatorMoveNextItem")
|
||||
Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorMoveNextItem.Name = "BindingNavigatorMoveNextItem"
|
||||
'
|
||||
'BindingNavigatorMoveLastItem
|
||||
'
|
||||
Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
resources.ApplyResources(Me.BindingNavigatorMoveLastItem, "BindingNavigatorMoveLastItem")
|
||||
Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorMoveLastItem.Name = "BindingNavigatorMoveLastItem"
|
||||
'
|
||||
'BindingNavigatorSeparator2
|
||||
'
|
||||
Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
|
||||
resources.ApplyResources(Me.BindingNavigatorSeparator2, "BindingNavigatorSeparator2")
|
||||
Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
|
||||
'
|
||||
'BindingNavigatorDeleteItem
|
||||
'
|
||||
Me.BindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
resources.ApplyResources(Me.BindingNavigatorDeleteItem, "BindingNavigatorDeleteItem")
|
||||
Me.BindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorDeleteItem.Name = "BindingNavigatorDeleteItem"
|
||||
'
|
||||
'TBPMO_FORM_CONSTRUCTORBindingNavigatorSaveItem
|
||||
'
|
||||
Me.TBPMO_FORM_CONSTRUCTORBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
resources.ApplyResources(Me.TBPMO_FORM_CONSTRUCTORBindingNavigatorSaveItem, "TBPMO_FORM_CONSTRUCTORBindingNavigatorSaveItem")
|
||||
Me.TBPMO_FORM_CONSTRUCTORBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.TBPMO_FORM_CONSTRUCTORBindingNavigatorSaveItem.Name = "TBPMO_FORM_CONSTRUCTORBindingNavigatorSaveItem"
|
||||
'
|
||||
'TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource
|
||||
@ -529,22 +529,22 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'TreeViewDetails
|
||||
'
|
||||
resources.ApplyResources(Me.TreeViewDetails, "TreeViewDetails")
|
||||
Me.TreeViewDetails.AllowDrop = True
|
||||
Me.TreeViewDetails.ContextMenuStrip = Me.cmstrpEntity
|
||||
resources.ApplyResources(Me.TreeViewDetails, "TreeViewDetails")
|
||||
Me.TreeViewDetails.ImageList = Me.ImageList1
|
||||
Me.TreeViewDetails.Name = "TreeViewDetails"
|
||||
'
|
||||
'cmstrpEntity
|
||||
'
|
||||
resources.ApplyResources(Me.cmstrpEntity, "cmstrpEntity")
|
||||
Me.cmstrpEntity.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.FormDesignerToolStripMenuItem})
|
||||
Me.cmstrpEntity.Name = "cmstrpEntity"
|
||||
resources.ApplyResources(Me.cmstrpEntity, "cmstrpEntity")
|
||||
'
|
||||
'FormDesignerToolStripMenuItem
|
||||
'
|
||||
Me.FormDesignerToolStripMenuItem.Name = "FormDesignerToolStripMenuItem"
|
||||
resources.ApplyResources(Me.FormDesignerToolStripMenuItem, "FormDesignerToolStripMenuItem")
|
||||
Me.FormDesignerToolStripMenuItem.Name = "FormDesignerToolStripMenuItem"
|
||||
'
|
||||
'ImageList1
|
||||
'
|
||||
@ -555,74 +555,74 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'CONSTRUCTOR_IDTextBox
|
||||
'
|
||||
resources.ApplyResources(Me.CONSTRUCTOR_IDTextBox, "CONSTRUCTOR_IDTextBox")
|
||||
Me.CONSTRUCTOR_IDTextBox.BackColor = System.Drawing.Color.WhiteSmoke
|
||||
Me.CONSTRUCTOR_IDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTORBindingSource, "GUID", True))
|
||||
resources.ApplyResources(Me.CONSTRUCTOR_IDTextBox, "CONSTRUCTOR_IDTextBox")
|
||||
Me.CONSTRUCTOR_IDTextBox.Name = "CONSTRUCTOR_IDTextBox"
|
||||
Me.CONSTRUCTOR_IDTextBox.ReadOnly = True
|
||||
'
|
||||
'FORM_TITLETextBox
|
||||
'
|
||||
Me.FORM_TITLETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTORBindingSource, "FORM_TITLE", True))
|
||||
resources.ApplyResources(Me.FORM_TITLETextBox, "FORM_TITLETextBox")
|
||||
Me.FORM_TITLETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTORBindingSource, "FORM_TITLE", True))
|
||||
Me.FORM_TITLETextBox.Name = "FORM_TITLETextBox"
|
||||
'
|
||||
'SEQUENCE_MENUNumericUpDown
|
||||
'
|
||||
Me.SEQUENCE_MENUNumericUpDown.DataBindings.Add(New System.Windows.Forms.Binding("Value", Me.TBPMO_FORM_CONSTRUCTORBindingSource, "SEQUENCE_MENU", True))
|
||||
resources.ApplyResources(Me.SEQUENCE_MENUNumericUpDown, "SEQUENCE_MENUNumericUpDown")
|
||||
Me.SEQUENCE_MENUNumericUpDown.DataBindings.Add(New System.Windows.Forms.Binding("Value", Me.TBPMO_FORM_CONSTRUCTORBindingSource, "SEQUENCE_MENU", True))
|
||||
Me.SEQUENCE_MENUNumericUpDown.Name = "SEQUENCE_MENUNumericUpDown"
|
||||
'
|
||||
'SHORT_TITLETextBox
|
||||
'
|
||||
Me.SHORT_TITLETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTORBindingSource, "SHORT_TITLE", True))
|
||||
resources.ApplyResources(Me.SHORT_TITLETextBox, "SHORT_TITLETextBox")
|
||||
Me.SHORT_TITLETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTORBindingSource, "SHORT_TITLE", True))
|
||||
Me.SHORT_TITLETextBox.Name = "SHORT_TITLETextBox"
|
||||
'
|
||||
'ADDED_WHOTextBox
|
||||
'
|
||||
resources.ApplyResources(Me.ADDED_WHOTextBox, "ADDED_WHOTextBox")
|
||||
Me.ADDED_WHOTextBox.BackColor = System.Drawing.Color.WhiteSmoke
|
||||
Me.ADDED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTORBindingSource, "ADDED_WHO", True))
|
||||
resources.ApplyResources(Me.ADDED_WHOTextBox, "ADDED_WHOTextBox")
|
||||
Me.ADDED_WHOTextBox.Name = "ADDED_WHOTextBox"
|
||||
Me.ADDED_WHOTextBox.ReadOnly = True
|
||||
'
|
||||
'ADDED_WHENTextBox
|
||||
'
|
||||
resources.ApplyResources(Me.ADDED_WHENTextBox, "ADDED_WHENTextBox")
|
||||
Me.ADDED_WHENTextBox.BackColor = System.Drawing.Color.WhiteSmoke
|
||||
Me.ADDED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTORBindingSource, "ADDED_WHEN", True))
|
||||
resources.ApplyResources(Me.ADDED_WHENTextBox, "ADDED_WHENTextBox")
|
||||
Me.ADDED_WHENTextBox.Name = "ADDED_WHENTextBox"
|
||||
Me.ADDED_WHENTextBox.ReadOnly = True
|
||||
'
|
||||
'CHANGED_WHOTextBox
|
||||
'
|
||||
resources.ApplyResources(Me.CHANGED_WHOTextBox, "CHANGED_WHOTextBox")
|
||||
Me.CHANGED_WHOTextBox.BackColor = System.Drawing.Color.WhiteSmoke
|
||||
Me.CHANGED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTORBindingSource, "CHANGED_WHO", True))
|
||||
resources.ApplyResources(Me.CHANGED_WHOTextBox, "CHANGED_WHOTextBox")
|
||||
Me.CHANGED_WHOTextBox.Name = "CHANGED_WHOTextBox"
|
||||
Me.CHANGED_WHOTextBox.ReadOnly = True
|
||||
'
|
||||
'CHANGED_WHENTextBox
|
||||
'
|
||||
resources.ApplyResources(Me.CHANGED_WHENTextBox, "CHANGED_WHENTextBox")
|
||||
Me.CHANGED_WHENTextBox.BackColor = System.Drawing.Color.WhiteSmoke
|
||||
Me.CHANGED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTORBindingSource, "CHANGED_WHEN", True))
|
||||
resources.ApplyResources(Me.CHANGED_WHENTextBox, "CHANGED_WHENTextBox")
|
||||
Me.CHANGED_WHENTextBox.Name = "CHANGED_WHENTextBox"
|
||||
Me.CHANGED_WHENTextBox.ReadOnly = True
|
||||
'
|
||||
'GUIDTextBox1
|
||||
'
|
||||
resources.ApplyResources(Me.GUIDTextBox1, "GUIDTextBox1")
|
||||
Me.GUIDTextBox1.BackColor = System.Drawing.Color.WhiteSmoke
|
||||
Me.GUIDTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "GUID", True))
|
||||
resources.ApplyResources(Me.GUIDTextBox1, "GUIDTextBox1")
|
||||
Me.GUIDTextBox1.Name = "GUIDTextBox1"
|
||||
Me.GUIDTextBox1.ReadOnly = True
|
||||
'
|
||||
'LEVEL1_SELECTCheckBox
|
||||
'
|
||||
Me.LEVEL1_SELECTCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "LEVEL1_SELECT", True))
|
||||
resources.ApplyResources(Me.LEVEL1_SELECTCheckBox, "LEVEL1_SELECTCheckBox")
|
||||
Me.LEVEL1_SELECTCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "LEVEL1_SELECT", True))
|
||||
Me.LEVEL1_SELECTCheckBox.Name = "LEVEL1_SELECTCheckBox"
|
||||
Me.LEVEL1_SELECTCheckBox.UseVisualStyleBackColor = True
|
||||
'
|
||||
@ -635,12 +635,12 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'XtraTabPage1
|
||||
'
|
||||
resources.ApplyResources(Me.XtraTabPage1, "XtraTabPage1")
|
||||
Me.XtraTabPage1.Controls.Add(Me.XtraTabControl2)
|
||||
Me.XtraTabPage1.Controls.Add(Me.StatusStrip1)
|
||||
Me.XtraTabPage1.Controls.Add(Me.ToolStrip1)
|
||||
Me.XtraTabPage1.Controls.Add(Me.TreeViewDetails)
|
||||
Me.XtraTabPage1.Name = "XtraTabPage1"
|
||||
resources.ApplyResources(Me.XtraTabPage1, "XtraTabPage1")
|
||||
'
|
||||
'XtraTabControl2
|
||||
'
|
||||
@ -678,26 +678,26 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'SQL_RIGHT_WINDREAM_VIEWTextBox
|
||||
'
|
||||
Me.SQL_RIGHT_WINDREAM_VIEWTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "SQL_RIGHT_WINDREAM_VIEW", True))
|
||||
resources.ApplyResources(Me.SQL_RIGHT_WINDREAM_VIEWTextBox, "SQL_RIGHT_WINDREAM_VIEWTextBox")
|
||||
Me.SQL_RIGHT_WINDREAM_VIEWTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "SQL_RIGHT_WINDREAM_VIEW", True))
|
||||
Me.SQL_RIGHT_WINDREAM_VIEWTextBox.Name = "SQL_RIGHT_WINDREAM_VIEWTextBox"
|
||||
'
|
||||
'SQL_RIGHT_READ_AND_VIEW_ONLYTextBox
|
||||
'
|
||||
Me.SQL_RIGHT_READ_AND_VIEW_ONLYTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "SQL_RIGHT_READ_AND_VIEW_ONLY", True))
|
||||
resources.ApplyResources(Me.SQL_RIGHT_READ_AND_VIEW_ONLYTextBox, "SQL_RIGHT_READ_AND_VIEW_ONLYTextBox")
|
||||
Me.SQL_RIGHT_READ_AND_VIEW_ONLYTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "SQL_RIGHT_READ_AND_VIEW_ONLY", True))
|
||||
Me.SQL_RIGHT_READ_AND_VIEW_ONLYTextBox.Name = "SQL_RIGHT_READ_AND_VIEW_ONLYTextBox"
|
||||
'
|
||||
'CONTROL_DOCTYPE_MATCHTextBox
|
||||
'
|
||||
Me.CONTROL_DOCTYPE_MATCHTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "CONTROL_DOCTYPE_MATCH", True))
|
||||
resources.ApplyResources(Me.CONTROL_DOCTYPE_MATCHTextBox, "CONTROL_DOCTYPE_MATCHTextBox")
|
||||
Me.CONTROL_DOCTYPE_MATCHTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "CONTROL_DOCTYPE_MATCH", True))
|
||||
Me.CONTROL_DOCTYPE_MATCHTextBox.Name = "CONTROL_DOCTYPE_MATCHTextBox"
|
||||
'
|
||||
'LOAD_DIRECTCheckBox
|
||||
'
|
||||
Me.LOAD_DIRECTCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "LOAD_DIRECT", True))
|
||||
resources.ApplyResources(Me.LOAD_DIRECTCheckBox, "LOAD_DIRECTCheckBox")
|
||||
Me.LOAD_DIRECTCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "LOAD_DIRECT", True))
|
||||
Me.LOAD_DIRECTCheckBox.Name = "LOAD_DIRECTCheckBox"
|
||||
Me.LOAD_DIRECTCheckBox.UseVisualStyleBackColor = True
|
||||
'
|
||||
@ -708,9 +708,9 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'COLUMN_NAME1ComboBox
|
||||
'
|
||||
resources.ApplyResources(Me.COLUMN_NAME1ComboBox, "COLUMN_NAME1ComboBox")
|
||||
Me.COLUMN_NAME1ComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "COLUMN_NAME1", True))
|
||||
Me.COLUMN_NAME1ComboBox.FormattingEnabled = True
|
||||
resources.ApplyResources(Me.COLUMN_NAME1ComboBox, "COLUMN_NAME1ComboBox")
|
||||
Me.COLUMN_NAME1ComboBox.Name = "COLUMN_NAME1ComboBox"
|
||||
'
|
||||
'Label2
|
||||
@ -720,33 +720,33 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'CHANGED_WHENTextBox1
|
||||
'
|
||||
resources.ApplyResources(Me.CHANGED_WHENTextBox1, "CHANGED_WHENTextBox1")
|
||||
Me.CHANGED_WHENTextBox1.BackColor = System.Drawing.Color.WhiteSmoke
|
||||
Me.CHANGED_WHENTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "CHANGED_WHEN", True))
|
||||
resources.ApplyResources(Me.CHANGED_WHENTextBox1, "CHANGED_WHENTextBox1")
|
||||
Me.CHANGED_WHENTextBox1.Name = "CHANGED_WHENTextBox1"
|
||||
Me.CHANGED_WHENTextBox1.ReadOnly = True
|
||||
'
|
||||
'CHANGED_WHOTextBox1
|
||||
'
|
||||
resources.ApplyResources(Me.CHANGED_WHOTextBox1, "CHANGED_WHOTextBox1")
|
||||
Me.CHANGED_WHOTextBox1.BackColor = System.Drawing.Color.WhiteSmoke
|
||||
Me.CHANGED_WHOTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "CHANGED_WHO", True))
|
||||
resources.ApplyResources(Me.CHANGED_WHOTextBox1, "CHANGED_WHOTextBox1")
|
||||
Me.CHANGED_WHOTextBox1.Name = "CHANGED_WHOTextBox1"
|
||||
Me.CHANGED_WHOTextBox1.ReadOnly = True
|
||||
'
|
||||
'ADDED_WHENTextBox1
|
||||
'
|
||||
resources.ApplyResources(Me.ADDED_WHENTextBox1, "ADDED_WHENTextBox1")
|
||||
Me.ADDED_WHENTextBox1.BackColor = System.Drawing.Color.WhiteSmoke
|
||||
Me.ADDED_WHENTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "ADDED_WHEN", True))
|
||||
resources.ApplyResources(Me.ADDED_WHENTextBox1, "ADDED_WHENTextBox1")
|
||||
Me.ADDED_WHENTextBox1.Name = "ADDED_WHENTextBox1"
|
||||
Me.ADDED_WHENTextBox1.ReadOnly = True
|
||||
'
|
||||
'ADDED_WHOTextBox1
|
||||
'
|
||||
resources.ApplyResources(Me.ADDED_WHOTextBox1, "ADDED_WHOTextBox1")
|
||||
Me.ADDED_WHOTextBox1.BackColor = System.Drawing.Color.WhiteSmoke
|
||||
Me.ADDED_WHOTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTOR_DETAILBindingSource, "ADDED_WHO", True))
|
||||
resources.ApplyResources(Me.ADDED_WHOTextBox1, "ADDED_WHOTextBox1")
|
||||
Me.ADDED_WHOTextBox1.Name = "ADDED_WHOTextBox1"
|
||||
Me.ADDED_WHOTextBox1.ReadOnly = True
|
||||
'
|
||||
@ -824,8 +824,8 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'ListBoxConfiguredDisplay
|
||||
'
|
||||
Me.ListBoxConfiguredDisplay.FormattingEnabled = True
|
||||
resources.ApplyResources(Me.ListBoxConfiguredDisplay, "ListBoxConfiguredDisplay")
|
||||
Me.ListBoxConfiguredDisplay.FormattingEnabled = True
|
||||
Me.ListBoxConfiguredDisplay.Name = "ListBoxConfiguredDisplay"
|
||||
'
|
||||
'Label6
|
||||
@ -880,6 +880,7 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'XtraTabPage7
|
||||
'
|
||||
resources.ApplyResources(Me.XtraTabPage7, "XtraTabPage7")
|
||||
Me.XtraTabPage7.Controls.Add(Me.Label20)
|
||||
Me.XtraTabPage7.Controls.Add(Me.GridControl2)
|
||||
Me.XtraTabPage7.Controls.Add(Me.Label7)
|
||||
@ -890,7 +891,6 @@ Partial Class frmConstructorDesigner
|
||||
Me.XtraTabPage7.Controls.Add(Me.btnDeleteUserSupervisor)
|
||||
Me.XtraTabPage7.Controls.Add(Me.btnAddUser2Supervisor)
|
||||
Me.XtraTabPage7.Name = "XtraTabPage7"
|
||||
resources.ApplyResources(Me.XtraTabPage7, "XtraTabPage7")
|
||||
'
|
||||
'Label20
|
||||
'
|
||||
@ -901,6 +901,18 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
resources.ApplyResources(Me.GridControl2, "GridControl2")
|
||||
Me.GridControl2.DataSource = Me.TBWH_Users2BindingSource
|
||||
Me.GridControl2.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridControl2.EmbeddedNavigator.AccessibleDescription")
|
||||
Me.GridControl2.EmbeddedNavigator.AccessibleName = resources.GetString("GridControl2.EmbeddedNavigator.AccessibleName")
|
||||
Me.GridControl2.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridControl2.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
|
||||
Me.GridControl2.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridControl2.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
||||
Me.GridControl2.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridControl2.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
|
||||
Me.GridControl2.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridControl2.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
||||
Me.GridControl2.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridControl2.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
||||
Me.GridControl2.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridControl2.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
|
||||
Me.GridControl2.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridControl2.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
||||
Me.GridControl2.EmbeddedNavigator.ToolTip = resources.GetString("GridControl2.EmbeddedNavigator.ToolTip")
|
||||
Me.GridControl2.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridControl2.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
||||
Me.GridControl2.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridControl2.EmbeddedNavigator.ToolTipTitle")
|
||||
Me.GridControl2.MainView = Me.GridView2
|
||||
Me.GridControl2.Name = "GridControl2"
|
||||
Me.GridControl2.ShowOnlyPredefinedDetails = True
|
||||
@ -914,9 +926,18 @@ Partial Class frmConstructorDesigner
|
||||
'GridView2
|
||||
'
|
||||
Me.GridView2.Appearance.EvenRow.BackColor = CType(resources.GetObject("GridView2.Appearance.EvenRow.BackColor"), System.Drawing.Color)
|
||||
Me.GridView2.Appearance.EvenRow.FontSizeDelta = CType(resources.GetObject("GridView2.Appearance.EvenRow.FontSizeDelta"), Integer)
|
||||
Me.GridView2.Appearance.EvenRow.FontStyleDelta = CType(resources.GetObject("GridView2.Appearance.EvenRow.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.GridView2.Appearance.EvenRow.GradientMode = CType(resources.GetObject("GridView2.Appearance.EvenRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.GridView2.Appearance.EvenRow.Image = CType(resources.GetObject("GridView2.Appearance.EvenRow.Image"), System.Drawing.Image)
|
||||
Me.GridView2.Appearance.EvenRow.Options.UseBackColor = True
|
||||
Me.GridView2.Appearance.FocusedRow.BackColor = CType(resources.GetObject("GridView2.Appearance.FocusedRow.BackColor"), System.Drawing.Color)
|
||||
Me.GridView2.Appearance.FocusedRow.FontSizeDelta = CType(resources.GetObject("GridView2.Appearance.FocusedRow.FontSizeDelta"), Integer)
|
||||
Me.GridView2.Appearance.FocusedRow.FontStyleDelta = CType(resources.GetObject("GridView2.Appearance.FocusedRow.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.GridView2.Appearance.FocusedRow.GradientMode = CType(resources.GetObject("GridView2.Appearance.FocusedRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.GridView2.Appearance.FocusedRow.Image = CType(resources.GetObject("GridView2.Appearance.FocusedRow.Image"), System.Drawing.Image)
|
||||
Me.GridView2.Appearance.FocusedRow.Options.UseBackColor = True
|
||||
resources.ApplyResources(Me.GridView2, "GridView2")
|
||||
Me.GridView2.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.GridColumn14, Me.colSurname3, Me.GridColumn15, Me.GridColumn16, Me.GridColumn17})
|
||||
Me.GridView2.GridControl = Me.GridControl2
|
||||
Me.GridView2.Name = "GridView2"
|
||||
@ -943,20 +964,21 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'GridColumn15
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn15, "GridColumn15")
|
||||
Me.GridColumn15.FieldName = "Username"
|
||||
Me.GridColumn15.Name = "GridColumn15"
|
||||
Me.GridColumn15.OptionsColumn.AllowEdit = False
|
||||
resources.ApplyResources(Me.GridColumn15, "GridColumn15")
|
||||
'
|
||||
'GridColumn16
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn16, "GridColumn16")
|
||||
Me.GridColumn16.FieldName = "Email"
|
||||
Me.GridColumn16.Name = "GridColumn16"
|
||||
Me.GridColumn16.OptionsColumn.AllowEdit = False
|
||||
resources.ApplyResources(Me.GridColumn16, "GridColumn16")
|
||||
'
|
||||
'GridColumn17
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn17, "GridColumn17")
|
||||
Me.GridColumn17.FieldName = "ID"
|
||||
Me.GridColumn17.Name = "GridColumn17"
|
||||
'
|
||||
@ -986,6 +1008,18 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
resources.ApplyResources(Me.GridControlSupervisorAdd, "GridControlSupervisorAdd")
|
||||
Me.GridControlSupervisorAdd.DataSource = Me.TBAD_UsersBindingSource
|
||||
Me.GridControlSupervisorAdd.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridControlSupervisorAdd.EmbeddedNavigator.AccessibleDescription")
|
||||
Me.GridControlSupervisorAdd.EmbeddedNavigator.AccessibleName = resources.GetString("GridControlSupervisorAdd.EmbeddedNavigator.AccessibleName")
|
||||
Me.GridControlSupervisorAdd.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridControlSupervisorAdd.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
|
||||
Me.GridControlSupervisorAdd.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridControlSupervisorAdd.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
||||
Me.GridControlSupervisorAdd.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridControlSupervisorAdd.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
|
||||
Me.GridControlSupervisorAdd.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridControlSupervisorAdd.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
||||
Me.GridControlSupervisorAdd.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridControlSupervisorAdd.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
||||
Me.GridControlSupervisorAdd.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridControlSupervisorAdd.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
|
||||
Me.GridControlSupervisorAdd.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridControlSupervisorAdd.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
||||
Me.GridControlSupervisorAdd.EmbeddedNavigator.ToolTip = resources.GetString("GridControlSupervisorAdd.EmbeddedNavigator.ToolTip")
|
||||
Me.GridControlSupervisorAdd.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridControlSupervisorAdd.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
||||
Me.GridControlSupervisorAdd.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridControlSupervisorAdd.EmbeddedNavigator.ToolTipTitle")
|
||||
Me.GridControlSupervisorAdd.MainView = Me.GridViewSupervisorsAdd
|
||||
Me.GridControlSupervisorAdd.Name = "GridControlSupervisorAdd"
|
||||
Me.GridControlSupervisorAdd.ShowOnlyPredefinedDetails = True
|
||||
@ -999,9 +1033,18 @@ Partial Class frmConstructorDesigner
|
||||
'GridViewSupervisorsAdd
|
||||
'
|
||||
Me.GridViewSupervisorsAdd.Appearance.EvenRow.BackColor = CType(resources.GetObject("GridViewSupervisorsAdd.Appearance.EvenRow.BackColor"), System.Drawing.Color)
|
||||
Me.GridViewSupervisorsAdd.Appearance.EvenRow.FontSizeDelta = CType(resources.GetObject("GridViewSupervisorsAdd.Appearance.EvenRow.FontSizeDelta"), Integer)
|
||||
Me.GridViewSupervisorsAdd.Appearance.EvenRow.FontStyleDelta = CType(resources.GetObject("GridViewSupervisorsAdd.Appearance.EvenRow.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.GridViewSupervisorsAdd.Appearance.EvenRow.GradientMode = CType(resources.GetObject("GridViewSupervisorsAdd.Appearance.EvenRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.GridViewSupervisorsAdd.Appearance.EvenRow.Image = CType(resources.GetObject("GridViewSupervisorsAdd.Appearance.EvenRow.Image"), System.Drawing.Image)
|
||||
Me.GridViewSupervisorsAdd.Appearance.EvenRow.Options.UseBackColor = True
|
||||
Me.GridViewSupervisorsAdd.Appearance.FocusedRow.BackColor = CType(resources.GetObject("GridViewSupervisorsAdd.Appearance.FocusedRow.BackColor"), System.Drawing.Color)
|
||||
Me.GridViewSupervisorsAdd.Appearance.FocusedRow.FontSizeDelta = CType(resources.GetObject("GridViewSupervisorsAdd.Appearance.FocusedRow.FontSizeDelta"), Integer)
|
||||
Me.GridViewSupervisorsAdd.Appearance.FocusedRow.FontStyleDelta = CType(resources.GetObject("GridViewSupervisorsAdd.Appearance.FocusedRow.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.GridViewSupervisorsAdd.Appearance.FocusedRow.GradientMode = CType(resources.GetObject("GridViewSupervisorsAdd.Appearance.FocusedRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.GridViewSupervisorsAdd.Appearance.FocusedRow.Image = CType(resources.GetObject("GridViewSupervisorsAdd.Appearance.FocusedRow.Image"), System.Drawing.Image)
|
||||
Me.GridViewSupervisorsAdd.Appearance.FocusedRow.Options.UseBackColor = True
|
||||
resources.ApplyResources(Me.GridViewSupervisorsAdd, "GridViewSupervisorsAdd")
|
||||
Me.GridViewSupervisorsAdd.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.GridColumn10, Me.colSurname2, Me.GridColumn11, Me.GridColumn12, Me.GridColumn13})
|
||||
Me.GridViewSupervisorsAdd.GridControl = Me.GridControlSupervisorAdd
|
||||
Me.GridViewSupervisorsAdd.Name = "GridViewSupervisorsAdd"
|
||||
@ -1028,20 +1071,21 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'GridColumn11
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn11, "GridColumn11")
|
||||
Me.GridColumn11.FieldName = "Username"
|
||||
Me.GridColumn11.Name = "GridColumn11"
|
||||
Me.GridColumn11.OptionsColumn.AllowEdit = False
|
||||
resources.ApplyResources(Me.GridColumn11, "GridColumn11")
|
||||
'
|
||||
'GridColumn12
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn12, "GridColumn12")
|
||||
Me.GridColumn12.FieldName = "Email"
|
||||
Me.GridColumn12.Name = "GridColumn12"
|
||||
Me.GridColumn12.OptionsColumn.AllowEdit = False
|
||||
resources.ApplyResources(Me.GridColumn12, "GridColumn12")
|
||||
'
|
||||
'GridColumn13
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn13, "GridColumn13")
|
||||
Me.GridColumn13.FieldName = "ID"
|
||||
Me.GridColumn13.Name = "GridColumn13"
|
||||
'
|
||||
@ -1059,6 +1103,7 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'XtraTabPage8
|
||||
'
|
||||
resources.ApplyResources(Me.XtraTabPage8, "XtraTabPage8")
|
||||
Me.XtraTabPage8.Controls.Add(Me.btndeleteSupervisorControl)
|
||||
Me.XtraTabPage8.Controls.Add(Me.btnAddSupervisorControl)
|
||||
Me.XtraTabPage8.Controls.Add(Me.Label13)
|
||||
@ -1067,7 +1112,6 @@ Partial Class frmConstructorDesigner
|
||||
Me.XtraTabPage8.Controls.Add(Me.CheckedListBoxSupervisorControls)
|
||||
Me.XtraTabPage8.Controls.Add(Me.Label14)
|
||||
Me.XtraTabPage8.Name = "XtraTabPage8"
|
||||
resources.ApplyResources(Me.XtraTabPage8, "XtraTabPage8")
|
||||
'
|
||||
'btndeleteSupervisorControl
|
||||
'
|
||||
@ -1124,15 +1168,15 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'XtraTabPage2
|
||||
'
|
||||
resources.ApplyResources(Me.XtraTabPage2, "XtraTabPage2")
|
||||
Me.XtraTabPage2.Controls.Add(Me.TabControl1)
|
||||
Me.XtraTabPage2.Name = "XtraTabPage2"
|
||||
resources.ApplyResources(Me.XtraTabPage2, "XtraTabPage2")
|
||||
'
|
||||
'TabControl1
|
||||
'
|
||||
resources.ApplyResources(Me.TabControl1, "TabControl1")
|
||||
Me.TabControl1.Controls.Add(Me.TabPage1)
|
||||
Me.TabControl1.Controls.Add(Me.TabPage2)
|
||||
resources.ApplyResources(Me.TabControl1, "TabControl1")
|
||||
Me.TabControl1.Name = "TabControl1"
|
||||
Me.TabControl1.SelectedIndex = 0
|
||||
'
|
||||
@ -1167,6 +1211,18 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
resources.ApplyResources(Me.GridControlUserSQL, "GridControlUserSQL")
|
||||
Me.GridControlUserSQL.DataSource = Me.TBWH_Users1BindingSource
|
||||
Me.GridControlUserSQL.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridControlUserSQL.EmbeddedNavigator.AccessibleDescription")
|
||||
Me.GridControlUserSQL.EmbeddedNavigator.AccessibleName = resources.GetString("GridControlUserSQL.EmbeddedNavigator.AccessibleName")
|
||||
Me.GridControlUserSQL.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridControlUserSQL.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
|
||||
Me.GridControlUserSQL.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridControlUserSQL.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
||||
Me.GridControlUserSQL.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridControlUserSQL.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
|
||||
Me.GridControlUserSQL.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridControlUserSQL.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
||||
Me.GridControlUserSQL.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridControlUserSQL.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
||||
Me.GridControlUserSQL.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridControlUserSQL.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
|
||||
Me.GridControlUserSQL.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridControlUserSQL.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
||||
Me.GridControlUserSQL.EmbeddedNavigator.ToolTip = resources.GetString("GridControlUserSQL.EmbeddedNavigator.ToolTip")
|
||||
Me.GridControlUserSQL.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridControlUserSQL.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
||||
Me.GridControlUserSQL.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridControlUserSQL.EmbeddedNavigator.ToolTipTitle")
|
||||
Me.GridControlUserSQL.MainView = Me.GridViewUserSQL
|
||||
Me.GridControlUserSQL.Name = "GridControlUserSQL"
|
||||
Me.GridControlUserSQL.ShowOnlyPredefinedDetails = True
|
||||
@ -1180,9 +1236,18 @@ Partial Class frmConstructorDesigner
|
||||
'GridViewUserSQL
|
||||
'
|
||||
Me.GridViewUserSQL.Appearance.EvenRow.BackColor = CType(resources.GetObject("GridViewUserSQL.Appearance.EvenRow.BackColor"), System.Drawing.Color)
|
||||
Me.GridViewUserSQL.Appearance.EvenRow.FontSizeDelta = CType(resources.GetObject("GridViewUserSQL.Appearance.EvenRow.FontSizeDelta"), Integer)
|
||||
Me.GridViewUserSQL.Appearance.EvenRow.FontStyleDelta = CType(resources.GetObject("GridViewUserSQL.Appearance.EvenRow.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.GridViewUserSQL.Appearance.EvenRow.GradientMode = CType(resources.GetObject("GridViewUserSQL.Appearance.EvenRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.GridViewUserSQL.Appearance.EvenRow.Image = CType(resources.GetObject("GridViewUserSQL.Appearance.EvenRow.Image"), System.Drawing.Image)
|
||||
Me.GridViewUserSQL.Appearance.EvenRow.Options.UseBackColor = True
|
||||
Me.GridViewUserSQL.Appearance.FocusedRow.BackColor = CType(resources.GetObject("GridViewUserSQL.Appearance.FocusedRow.BackColor"), System.Drawing.Color)
|
||||
Me.GridViewUserSQL.Appearance.FocusedRow.FontSizeDelta = CType(resources.GetObject("GridViewUserSQL.Appearance.FocusedRow.FontSizeDelta"), Integer)
|
||||
Me.GridViewUserSQL.Appearance.FocusedRow.FontStyleDelta = CType(resources.GetObject("GridViewUserSQL.Appearance.FocusedRow.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.GridViewUserSQL.Appearance.FocusedRow.GradientMode = CType(resources.GetObject("GridViewUserSQL.Appearance.FocusedRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.GridViewUserSQL.Appearance.FocusedRow.Image = CType(resources.GetObject("GridViewUserSQL.Appearance.FocusedRow.Image"), System.Drawing.Image)
|
||||
Me.GridViewUserSQL.Appearance.FocusedRow.Options.UseBackColor = True
|
||||
resources.ApplyResources(Me.GridViewUserSQL, "GridViewUserSQL")
|
||||
Me.GridViewUserSQL.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colSurname4, Me.GridColumn4, Me.GridColumn5, Me.GridColumn6, Me.colID1})
|
||||
Me.GridViewUserSQL.GridControl = Me.GridControlUserSQL
|
||||
Me.GridViewUserSQL.Name = "GridViewUserSQL"
|
||||
@ -1203,25 +1268,27 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'GridColumn4
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn4, "GridColumn4")
|
||||
Me.GridColumn4.FieldName = "Username"
|
||||
Me.GridColumn4.Name = "GridColumn4"
|
||||
Me.GridColumn4.OptionsColumn.AllowEdit = False
|
||||
resources.ApplyResources(Me.GridColumn4, "GridColumn4")
|
||||
'
|
||||
'GridColumn5
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn5, "GridColumn5")
|
||||
Me.GridColumn5.FieldName = "Email"
|
||||
Me.GridColumn5.Name = "GridColumn5"
|
||||
Me.GridColumn5.OptionsColumn.AllowEdit = False
|
||||
resources.ApplyResources(Me.GridColumn5, "GridColumn5")
|
||||
'
|
||||
'GridColumn6
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn6, "GridColumn6")
|
||||
Me.GridColumn6.FieldName = "ID"
|
||||
Me.GridColumn6.Name = "GridColumn6"
|
||||
'
|
||||
'colID1
|
||||
'
|
||||
resources.ApplyResources(Me.colID1, "colID1")
|
||||
Me.colID1.FieldName = "ID"
|
||||
Me.colID1.Name = "colID1"
|
||||
'
|
||||
@ -1237,24 +1304,24 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'dgvResult
|
||||
'
|
||||
resources.ApplyResources(Me.dgvResult, "dgvResult")
|
||||
Me.dgvResult.AllowUserToAddRows = False
|
||||
Me.dgvResult.AllowUserToDeleteRows = False
|
||||
DataGridViewCellStyle1.BackColor = System.Drawing.Color.Cyan
|
||||
Me.dgvResult.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
|
||||
resources.ApplyResources(Me.dgvResult, "dgvResult")
|
||||
Me.dgvResult.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
|
||||
Me.dgvResult.Name = "dgvResult"
|
||||
Me.dgvResult.ReadOnly = True
|
||||
'
|
||||
'dgvPlaceholders
|
||||
'
|
||||
resources.ApplyResources(Me.dgvPlaceholders, "dgvPlaceholders")
|
||||
Me.dgvPlaceholders.AllowUserToAddRows = False
|
||||
Me.dgvPlaceholders.AllowUserToDeleteRows = False
|
||||
DataGridViewCellStyle2.BackColor = System.Drawing.Color.Cyan
|
||||
Me.dgvPlaceholders.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
|
||||
Me.dgvPlaceholders.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
|
||||
Me.dgvPlaceholders.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.colPlaceholder, Me.colReplace})
|
||||
resources.ApplyResources(Me.dgvPlaceholders, "dgvPlaceholders")
|
||||
Me.dgvPlaceholders.Name = "dgvPlaceholders"
|
||||
'
|
||||
'colPlaceholder
|
||||
@ -1277,8 +1344,8 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'btnAddUserSQL
|
||||
'
|
||||
Me.btnAddUserSQL.Image = Global.DD_Record_Organiser.My.Resources.Resources.action_add_16xLG
|
||||
resources.ApplyResources(Me.btnAddUserSQL, "btnAddUserSQL")
|
||||
Me.btnAddUserSQL.Image = Global.DD_Record_Organiser.My.Resources.Resources.action_add_16xLG
|
||||
Me.btnAddUserSQL.Name = "btnAddUserSQL"
|
||||
Me.btnAddUserSQL.UseVisualStyleBackColor = True
|
||||
'
|
||||
@ -1290,8 +1357,8 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'CHANGED_WHENTextBox2
|
||||
'
|
||||
Me.CHANGED_WHENTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_CONSTRUCTOR_USER_SQLBindingSource, "CHANGED_WHEN", True))
|
||||
resources.ApplyResources(Me.CHANGED_WHENTextBox2, "CHANGED_WHENTextBox2")
|
||||
Me.CHANGED_WHENTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_CONSTRUCTOR_USER_SQLBindingSource, "CHANGED_WHEN", True))
|
||||
Me.CHANGED_WHENTextBox2.Name = "CHANGED_WHENTextBox2"
|
||||
Me.CHANGED_WHENTextBox2.ReadOnly = True
|
||||
'
|
||||
@ -1307,35 +1374,35 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'CHANGED_WHOTextBox2
|
||||
'
|
||||
Me.CHANGED_WHOTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_CONSTRUCTOR_USER_SQLBindingSource, "CHANGED_WHO", True))
|
||||
resources.ApplyResources(Me.CHANGED_WHOTextBox2, "CHANGED_WHOTextBox2")
|
||||
Me.CHANGED_WHOTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_CONSTRUCTOR_USER_SQLBindingSource, "CHANGED_WHO", True))
|
||||
Me.CHANGED_WHOTextBox2.Name = "CHANGED_WHOTextBox2"
|
||||
Me.CHANGED_WHOTextBox2.ReadOnly = True
|
||||
'
|
||||
'ADDED_WHENTextBox2
|
||||
'
|
||||
Me.ADDED_WHENTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_CONSTRUCTOR_USER_SQLBindingSource, "ADDED_WHEN", True))
|
||||
resources.ApplyResources(Me.ADDED_WHENTextBox2, "ADDED_WHENTextBox2")
|
||||
Me.ADDED_WHENTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_CONSTRUCTOR_USER_SQLBindingSource, "ADDED_WHEN", True))
|
||||
Me.ADDED_WHENTextBox2.Name = "ADDED_WHENTextBox2"
|
||||
Me.ADDED_WHENTextBox2.ReadOnly = True
|
||||
'
|
||||
'ADDED_WHOTextBox2
|
||||
'
|
||||
Me.ADDED_WHOTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_CONSTRUCTOR_USER_SQLBindingSource, "ADDED_WHO", True))
|
||||
resources.ApplyResources(Me.ADDED_WHOTextBox2, "ADDED_WHOTextBox2")
|
||||
Me.ADDED_WHOTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_CONSTRUCTOR_USER_SQLBindingSource, "ADDED_WHO", True))
|
||||
Me.ADDED_WHOTextBox2.Name = "ADDED_WHOTextBox2"
|
||||
Me.ADDED_WHOTextBox2.ReadOnly = True
|
||||
'
|
||||
'SQL_COMMANDTextBox
|
||||
'
|
||||
Me.SQL_COMMANDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_CONSTRUCTOR_USER_SQLBindingSource, "SQL_COMMAND", True))
|
||||
resources.ApplyResources(Me.SQL_COMMANDTextBox, "SQL_COMMANDTextBox")
|
||||
Me.SQL_COMMANDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_CONSTRUCTOR_USER_SQLBindingSource, "SQL_COMMAND", True))
|
||||
Me.SQL_COMMANDTextBox.Name = "SQL_COMMANDTextBox"
|
||||
'
|
||||
'GUIDTextBox
|
||||
'
|
||||
Me.GUIDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_CONSTRUCTOR_USER_SQLBindingSource, "GUID", True))
|
||||
resources.ApplyResources(Me.GUIDTextBox, "GUIDTextBox")
|
||||
Me.GUIDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_CONSTRUCTOR_USER_SQLBindingSource, "GUID", True))
|
||||
Me.GUIDTextBox.Name = "GUIDTextBox"
|
||||
Me.GUIDTextBox.ReadOnly = True
|
||||
'
|
||||
@ -1352,6 +1419,7 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'XtraTabPage6
|
||||
'
|
||||
resources.ApplyResources(Me.XtraTabPage6, "XtraTabPage6")
|
||||
Me.XtraTabPage6.Controls.Add(Me.btndeleteEntityfromClient)
|
||||
Me.XtraTabPage6.Controls.Add(Me.lblUser2Client)
|
||||
Me.XtraTabPage6.Controls.Add(Me.chklbxEntitiesforClient)
|
||||
@ -1359,12 +1427,11 @@ Partial Class frmConstructorDesigner
|
||||
Me.XtraTabPage6.Controls.Add(Me.Label18)
|
||||
Me.XtraTabPage6.Controls.Add(Me.chklbxClient)
|
||||
Me.XtraTabPage6.Name = "XtraTabPage6"
|
||||
resources.ApplyResources(Me.XtraTabPage6, "XtraTabPage6")
|
||||
'
|
||||
'btndeleteEntityfromClient
|
||||
'
|
||||
Me.btndeleteEntityfromClient.Image = Global.DD_Record_Organiser.My.Resources.Resources.delete
|
||||
resources.ApplyResources(Me.btndeleteEntityfromClient, "btndeleteEntityfromClient")
|
||||
Me.btndeleteEntityfromClient.Image = Global.DD_Record_Organiser.My.Resources.Resources.delete
|
||||
Me.btndeleteEntityfromClient.Name = "btndeleteEntityfromClient"
|
||||
Me.btndeleteEntityfromClient.UseVisualStyleBackColor = True
|
||||
'
|
||||
@ -1382,8 +1449,8 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'btnsaddUser2Client
|
||||
'
|
||||
Me.btnsaddUser2Client.Image = Global.DD_Record_Organiser.My.Resources.Resources.add1
|
||||
resources.ApplyResources(Me.btnsaddUser2Client, "btnsaddUser2Client")
|
||||
Me.btnsaddUser2Client.Image = Global.DD_Record_Organiser.My.Resources.Resources.add1
|
||||
Me.btnsaddUser2Client.Name = "btnsaddUser2Client"
|
||||
Me.btnsaddUser2Client.UseVisualStyleBackColor = True
|
||||
'
|
||||
@ -1401,20 +1468,20 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'StatusStrip1
|
||||
'
|
||||
Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslblSaveDetail})
|
||||
resources.ApplyResources(Me.StatusStrip1, "StatusStrip1")
|
||||
Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslblSaveDetail})
|
||||
Me.StatusStrip1.Name = "StatusStrip1"
|
||||
'
|
||||
'tslblSaveDetail
|
||||
'
|
||||
resources.ApplyResources(Me.tslblSaveDetail, "tslblSaveDetail")
|
||||
Me.tslblSaveDetail.BackColor = System.Drawing.Color.Yellow
|
||||
Me.tslblSaveDetail.Name = "tslblSaveDetail"
|
||||
resources.ApplyResources(Me.tslblSaveDetail, "tslblSaveDetail")
|
||||
'
|
||||
'ToolStrip1
|
||||
'
|
||||
Me.ToolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tsbtnSave})
|
||||
resources.ApplyResources(Me.ToolStrip1, "ToolStrip1")
|
||||
Me.ToolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tsbtnSave})
|
||||
Me.ToolStrip1.Name = "ToolStrip1"
|
||||
'
|
||||
'tsbtnSave
|
||||
@ -1429,10 +1496,10 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'ListBox1
|
||||
'
|
||||
resources.ApplyResources(Me.ListBox1, "ListBox1")
|
||||
Me.ListBox1.DataSource = Me.TBPMO_FORM_CONSTRUCTORBindingSource
|
||||
Me.ListBox1.DisplayMember = "FORM_TITLE"
|
||||
Me.ListBox1.FormattingEnabled = True
|
||||
resources.ApplyResources(Me.ListBox1, "ListBox1")
|
||||
Me.ListBox1.Name = "ListBox1"
|
||||
Me.ListBox1.ValueMember = "GUID"
|
||||
'
|
||||
@ -1550,8 +1617,8 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'LANGUAGETextBox
|
||||
'
|
||||
Me.LANGUAGETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTORBindingSource, "LANGUAGE", True))
|
||||
resources.ApplyResources(Me.LANGUAGETextBox, "LANGUAGETextBox")
|
||||
Me.LANGUAGETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_FORM_CONSTRUCTORBindingSource, "LANGUAGE", True))
|
||||
Me.LANGUAGETextBox.Name = "LANGUAGETextBox"
|
||||
Me.LANGUAGETextBox.ReadOnly = True
|
||||
'
|
||||
@ -1563,8 +1630,8 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'btnChangeHOMESTANDARD
|
||||
'
|
||||
Me.btnChangeHOMESTANDARD.Image = Global.DD_Record_Organiser.My.Resources.Resources.Link
|
||||
resources.ApplyResources(Me.btnChangeHOMESTANDARD, "btnChangeHOMESTANDARD")
|
||||
Me.btnChangeHOMESTANDARD.Image = Global.DD_Record_Organiser.My.Resources.Resources.Link
|
||||
Me.btnChangeHOMESTANDARD.Name = "btnChangeHOMESTANDARD"
|
||||
Me.btnChangeHOMESTANDARD.UseVisualStyleBackColor = True
|
||||
'
|
||||
@ -1582,8 +1649,20 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'GridControlUsers2Menue
|
||||
'
|
||||
Me.GridControlUsers2Menue.DataSource = Me.TBAD_UsersBindingSource
|
||||
resources.ApplyResources(Me.GridControlUsers2Menue, "GridControlUsers2Menue")
|
||||
Me.GridControlUsers2Menue.DataSource = Me.TBAD_UsersBindingSource
|
||||
Me.GridControlUsers2Menue.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridControlUsers2Menue.EmbeddedNavigator.AccessibleDescription")
|
||||
Me.GridControlUsers2Menue.EmbeddedNavigator.AccessibleName = resources.GetString("GridControlUsers2Menue.EmbeddedNavigator.AccessibleName")
|
||||
Me.GridControlUsers2Menue.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridControlUsers2Menue.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
|
||||
Me.GridControlUsers2Menue.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridControlUsers2Menue.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
||||
Me.GridControlUsers2Menue.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridControlUsers2Menue.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
|
||||
Me.GridControlUsers2Menue.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridControlUsers2Menue.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
||||
Me.GridControlUsers2Menue.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridControlUsers2Menue.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
||||
Me.GridControlUsers2Menue.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridControlUsers2Menue.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
|
||||
Me.GridControlUsers2Menue.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridControlUsers2Menue.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
||||
Me.GridControlUsers2Menue.EmbeddedNavigator.ToolTip = resources.GetString("GridControlUsers2Menue.EmbeddedNavigator.ToolTip")
|
||||
Me.GridControlUsers2Menue.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridControlUsers2Menue.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
||||
Me.GridControlUsers2Menue.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridControlUsers2Menue.EmbeddedNavigator.ToolTipTitle")
|
||||
Me.GridControlUsers2Menue.MainView = Me.GridViewlUsers2Menue
|
||||
Me.GridControlUsers2Menue.Name = "GridControlUsers2Menue"
|
||||
Me.GridControlUsers2Menue.ShowOnlyPredefinedDetails = True
|
||||
@ -1592,9 +1671,18 @@ Partial Class frmConstructorDesigner
|
||||
'GridViewlUsers2Menue
|
||||
'
|
||||
Me.GridViewlUsers2Menue.Appearance.EvenRow.BackColor = CType(resources.GetObject("GridViewlUsers2Menue.Appearance.EvenRow.BackColor"), System.Drawing.Color)
|
||||
Me.GridViewlUsers2Menue.Appearance.EvenRow.FontSizeDelta = CType(resources.GetObject("GridViewlUsers2Menue.Appearance.EvenRow.FontSizeDelta"), Integer)
|
||||
Me.GridViewlUsers2Menue.Appearance.EvenRow.FontStyleDelta = CType(resources.GetObject("GridViewlUsers2Menue.Appearance.EvenRow.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.GridViewlUsers2Menue.Appearance.EvenRow.GradientMode = CType(resources.GetObject("GridViewlUsers2Menue.Appearance.EvenRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.GridViewlUsers2Menue.Appearance.EvenRow.Image = CType(resources.GetObject("GridViewlUsers2Menue.Appearance.EvenRow.Image"), System.Drawing.Image)
|
||||
Me.GridViewlUsers2Menue.Appearance.EvenRow.Options.UseBackColor = True
|
||||
Me.GridViewlUsers2Menue.Appearance.FocusedRow.BackColor = CType(resources.GetObject("GridViewlUsers2Menue.Appearance.FocusedRow.BackColor"), System.Drawing.Color)
|
||||
Me.GridViewlUsers2Menue.Appearance.FocusedRow.FontSizeDelta = CType(resources.GetObject("GridViewlUsers2Menue.Appearance.FocusedRow.FontSizeDelta"), Integer)
|
||||
Me.GridViewlUsers2Menue.Appearance.FocusedRow.FontStyleDelta = CType(resources.GetObject("GridViewlUsers2Menue.Appearance.FocusedRow.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.GridViewlUsers2Menue.Appearance.FocusedRow.GradientMode = CType(resources.GetObject("GridViewlUsers2Menue.Appearance.FocusedRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.GridViewlUsers2Menue.Appearance.FocusedRow.Image = CType(resources.GetObject("GridViewlUsers2Menue.Appearance.FocusedRow.Image"), System.Drawing.Image)
|
||||
Me.GridViewlUsers2Menue.Appearance.FocusedRow.Options.UseBackColor = True
|
||||
resources.ApplyResources(Me.GridViewlUsers2Menue, "GridViewlUsers2Menue")
|
||||
Me.GridViewlUsers2Menue.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colSelect, Me.colSurname, Me.GridColumn1, Me.GridColumn2, Me.colID})
|
||||
Me.GridViewlUsers2Menue.GridControl = Me.GridControlUsers2Menue
|
||||
Me.GridViewlUsers2Menue.Name = "GridViewlUsers2Menue"
|
||||
@ -1621,20 +1709,21 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'GridColumn1
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn1, "GridColumn1")
|
||||
Me.GridColumn1.FieldName = "Username"
|
||||
Me.GridColumn1.Name = "GridColumn1"
|
||||
Me.GridColumn1.OptionsColumn.AllowEdit = False
|
||||
resources.ApplyResources(Me.GridColumn1, "GridColumn1")
|
||||
'
|
||||
'GridColumn2
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn2, "GridColumn2")
|
||||
Me.GridColumn2.FieldName = "Email"
|
||||
Me.GridColumn2.Name = "GridColumn2"
|
||||
Me.GridColumn2.OptionsColumn.AllowEdit = False
|
||||
resources.ApplyResources(Me.GridColumn2, "GridColumn2")
|
||||
'
|
||||
'colID
|
||||
'
|
||||
resources.ApplyResources(Me.colID, "colID")
|
||||
Me.colID.FieldName = "ID"
|
||||
Me.colID.Name = "colID"
|
||||
'
|
||||
@ -1642,6 +1731,18 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
resources.ApplyResources(Me.GridControl1, "GridControl1")
|
||||
Me.GridControl1.DataSource = Me.TBWH_Users1BindingSource
|
||||
Me.GridControl1.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridControl1.EmbeddedNavigator.AccessibleDescription")
|
||||
Me.GridControl1.EmbeddedNavigator.AccessibleName = resources.GetString("GridControl1.EmbeddedNavigator.AccessibleName")
|
||||
Me.GridControl1.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridControl1.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
|
||||
Me.GridControl1.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridControl1.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
||||
Me.GridControl1.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridControl1.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
|
||||
Me.GridControl1.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridControl1.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
||||
Me.GridControl1.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridControl1.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
||||
Me.GridControl1.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridControl1.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
|
||||
Me.GridControl1.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridControl1.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
||||
Me.GridControl1.EmbeddedNavigator.ToolTip = resources.GetString("GridControl1.EmbeddedNavigator.ToolTip")
|
||||
Me.GridControl1.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridControl1.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
||||
Me.GridControl1.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridControl1.EmbeddedNavigator.ToolTipTitle")
|
||||
Me.GridControl1.MainView = Me.GridView1
|
||||
Me.GridControl1.Name = "GridControl1"
|
||||
Me.GridControl1.ShowOnlyPredefinedDetails = True
|
||||
@ -1650,9 +1751,18 @@ Partial Class frmConstructorDesigner
|
||||
'GridView1
|
||||
'
|
||||
Me.GridView1.Appearance.EvenRow.BackColor = CType(resources.GetObject("GridView1.Appearance.EvenRow.BackColor"), System.Drawing.Color)
|
||||
Me.GridView1.Appearance.EvenRow.FontSizeDelta = CType(resources.GetObject("GridView1.Appearance.EvenRow.FontSizeDelta"), Integer)
|
||||
Me.GridView1.Appearance.EvenRow.FontStyleDelta = CType(resources.GetObject("GridView1.Appearance.EvenRow.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.GridView1.Appearance.EvenRow.GradientMode = CType(resources.GetObject("GridView1.Appearance.EvenRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.GridView1.Appearance.EvenRow.Image = CType(resources.GetObject("GridView1.Appearance.EvenRow.Image"), System.Drawing.Image)
|
||||
Me.GridView1.Appearance.EvenRow.Options.UseBackColor = True
|
||||
Me.GridView1.Appearance.FocusedRow.BackColor = CType(resources.GetObject("GridView1.Appearance.FocusedRow.BackColor"), System.Drawing.Color)
|
||||
Me.GridView1.Appearance.FocusedRow.FontSizeDelta = CType(resources.GetObject("GridView1.Appearance.FocusedRow.FontSizeDelta"), Integer)
|
||||
Me.GridView1.Appearance.FocusedRow.FontStyleDelta = CType(resources.GetObject("GridView1.Appearance.FocusedRow.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.GridView1.Appearance.FocusedRow.GradientMode = CType(resources.GetObject("GridView1.Appearance.FocusedRow.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.GridView1.Appearance.FocusedRow.Image = CType(resources.GetObject("GridView1.Appearance.FocusedRow.Image"), System.Drawing.Image)
|
||||
Me.GridView1.Appearance.FocusedRow.Options.UseBackColor = True
|
||||
resources.ApplyResources(Me.GridView1, "GridView1")
|
||||
Me.GridView1.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.GridColumn3, Me.colSurname1, Me.GridColumn7, Me.GridColumn8, Me.GridColumn9})
|
||||
Me.GridView1.GridControl = Me.GridControl1
|
||||
Me.GridView1.Name = "GridView1"
|
||||
@ -1679,20 +1789,21 @@ Partial Class frmConstructorDesigner
|
||||
'
|
||||
'GridColumn7
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn7, "GridColumn7")
|
||||
Me.GridColumn7.FieldName = "Username"
|
||||
Me.GridColumn7.Name = "GridColumn7"
|
||||
Me.GridColumn7.OptionsColumn.AllowEdit = False
|
||||
resources.ApplyResources(Me.GridColumn7, "GridColumn7")
|
||||
'
|
||||
'GridColumn8
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn8, "GridColumn8")
|
||||
Me.GridColumn8.FieldName = "Email"
|
||||
Me.GridColumn8.Name = "GridColumn8"
|
||||
Me.GridColumn8.OptionsColumn.AllowEdit = False
|
||||
resources.ApplyResources(Me.GridColumn8, "GridColumn8")
|
||||
'
|
||||
'GridColumn9
|
||||
'
|
||||
resources.ApplyResources(Me.GridColumn9, "GridColumn9")
|
||||
Me.GridColumn9.FieldName = "ID"
|
||||
Me.GridColumn9.Name = "GridColumn9"
|
||||
'
|
||||
|
||||
@ -160,54 +160,27 @@
|
||||
<data name="CHANGED_WHENLabel.Text" xml:space="preserve">
|
||||
<value>Changed when:</value>
|
||||
</data>
|
||||
<data name="GUIDLabel1.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 8.25pt, style=Italic</value>
|
||||
</data>
|
||||
<data name="WINDREAM_SEARCHLabel.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>93, 13</value>
|
||||
</data>
|
||||
<data name="WINDREAM_SEARCHLabel.Text" xml:space="preserve">
|
||||
<value>windream-search:</value>
|
||||
</data>
|
||||
<data name="ADDED_WHOLabel1.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 8.25pt, style=Italic</value>
|
||||
</data>
|
||||
<data name="ADDED_WHOLabel1.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>73, 13</value>
|
||||
</data>
|
||||
<data name="ADDED_WHOLabel1.Text" xml:space="preserve">
|
||||
<value>Created who:</value>
|
||||
</data>
|
||||
<data name="ADDED_WHENLabel1.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 8.25pt, style=Italic</value>
|
||||
</data>
|
||||
<data name="ADDED_WHENLabel1.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>79, 13</value>
|
||||
</data>
|
||||
<data name="ADDED_WHENLabel1.Text" xml:space="preserve">
|
||||
<value>Created when:</value>
|
||||
</data>
|
||||
<data name="CHANGED_WHOLabel1.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 8.25pt, style=Italic</value>
|
||||
</data>
|
||||
<data name="CHANGED_WHOLabel1.Text" xml:space="preserve">
|
||||
<value>Changed who:</value>
|
||||
</data>
|
||||
<data name="CHANGED_WHENLabel1.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 8.25pt, style=Italic</value>
|
||||
</data>
|
||||
<data name="CHANGED_WHENLabel1.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>83, 13</value>
|
||||
</data>
|
||||
<data name="CHANGED_WHENLabel1.Text" xml:space="preserve">
|
||||
<value>Changed when:</value>
|
||||
</data>
|
||||
<data name="SQL_SELECT_EBENE1Label.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>67, 13</value>
|
||||
</data>
|
||||
<data name="SQL_SELECT_EBENE1Label.Text" xml:space="preserve">
|
||||
<value>SQL Level 1:</value>
|
||||
</data>
|
||||
<data name="COLUMN_NAME1Label1.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>103, 13</value>
|
||||
</data>
|
||||
@ -230,18 +203,6 @@
|
||||
zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
|
||||
IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
|
||||
rkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="BindingNavigatorDeleteItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
|
||||
DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
|
||||
rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
|
||||
i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
|
||||
86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
|
||||
QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
|
||||
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="BindingNavigatorMoveFirstItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
@ -282,6 +243,18 @@
|
||||
kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
|
||||
WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
|
||||
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="BindingNavigatorDeleteItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
|
||||
DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
|
||||
rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
|
||||
i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
|
||||
86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
|
||||
QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
|
||||
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="TBPMO_FORM_CONSTRUCTORBindingNavigatorSaveItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
@ -296,7 +269,7 @@
|
||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
|
||||
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
||||
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABS
|
||||
CQAAAk1TRnQBSQFMAgEBAgEAAXABCgFwAQoBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
||||
CQAAAk1TRnQBSQFMAgEBAgEAAXgBCgF4AQoBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
||||
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
|
||||
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
|
||||
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
|
||||
@ -338,9 +311,6 @@
|
||||
AeABBwHgAQcEAAHgAQcB4AEHBAAB4AEHAeABBwQAAeABBwHgAQcEAAHgAQcB4AEHBAAL
|
||||
</value>
|
||||
</data>
|
||||
<data name="GUIDTextBox1.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 8.25pt, style=Italic</value>
|
||||
</data>
|
||||
<data name="LEVEL1_SELECTCheckBox.Text" xml:space="preserve">
|
||||
<value>Level 1 Selection? </value>
|
||||
</data>
|
||||
@ -359,18 +329,6 @@
|
||||
<data name="Label2.Text" xml:space="preserve">
|
||||
<value>Is it possible to select data on the first level for this Entity?</value>
|
||||
</data>
|
||||
<data name="CHANGED_WHENTextBox1.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 8.25pt, style=Italic</value>
|
||||
</data>
|
||||
<data name="CHANGED_WHOTextBox1.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 8.25pt, style=Italic</value>
|
||||
</data>
|
||||
<data name="ADDED_WHENTextBox1.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 8.25pt, style=Italic</value>
|
||||
</data>
|
||||
<data name="ADDED_WHOTextBox1.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 8.25pt, style=Italic</value>
|
||||
</data>
|
||||
<data name="XtraTabPage3.Text" xml:space="preserve">
|
||||
<value>General</value>
|
||||
</data>
|
||||
@ -462,45 +420,277 @@
|
||||
<data name="XtraTabPage5.Text" xml:space="preserve">
|
||||
<value>Quick View</value>
|
||||
</data>
|
||||
<data name="chkActivateDSOnEdit.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>229, 17</value>
|
||||
</data>
|
||||
<data name="chkActivateDSOnEdit.Text" xml:space="preserve">
|
||||
<value>Filemanagement on record-change active?</value>
|
||||
</data>
|
||||
<data name="chkDOC_SEARCH_TAB1.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>142, 17</value>
|
||||
</data>
|
||||
<data name="chkDOC_SEARCH_TAB1.Text" xml:space="preserve">
|
||||
<value>Display results on Tab1?</value>
|
||||
</data>
|
||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="GridControl2.EmbeddedNavigator.AccessibleDescription" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControl2.EmbeddedNavigator.AccessibleName" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<assembly alias="DevExpress.Data.v15.2" name="DevExpress.Data.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||
<data name="GridControl2.EmbeddedNavigator.AllowHtmlTextInToolTip" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="GridControl2.EmbeddedNavigator.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Left</value>
|
||||
</data>
|
||||
<data name="GridControl2.EmbeddedNavigator.BackgroundImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControl2.EmbeddedNavigator.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
|
||||
<value>Tile</value>
|
||||
</data>
|
||||
<data name="GridControl2.EmbeddedNavigator.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||
<value>Inherit</value>
|
||||
</data>
|
||||
<data name="GridControl2.EmbeddedNavigator.MaximumSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<assembly alias="DevExpress.XtraEditors.v15.2" name="DevExpress.XtraEditors.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||
<data name="GridControl2.EmbeddedNavigator.TextLocation" type="DevExpress.XtraEditors.NavigatorButtonsTextLocation, DevExpress.XtraEditors.v15.2">
|
||||
<value>Center</value>
|
||||
</data>
|
||||
<data name="GridControl2.EmbeddedNavigator.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<assembly alias="DevExpress.Utils.v15.2" name="DevExpress.Utils.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||
<data name="GridControl2.EmbeddedNavigator.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="GridControl2.EmbeddedNavigator.ToolTipTitle" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="GridView2.Appearance.EvenRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="GridView2.Appearance.EvenRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="GridView2.Appearance.EvenRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="GridView2.Appearance.EvenRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridView2.Appearance.FocusedRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="GridView2.Appearance.FocusedRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="GridView2.Appearance.FocusedRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="GridView2.Appearance.FocusedRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Label9.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>94, 13</value>
|
||||
</data>
|
||||
<data name="Label9.Text" xml:space="preserve">
|
||||
<value>windream-Search:</value>
|
||||
</data>
|
||||
<data name="GridControlSupervisorAdd.EmbeddedNavigator.AccessibleDescription" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlSupervisorAdd.EmbeddedNavigator.AccessibleName" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlSupervisorAdd.EmbeddedNavigator.AllowHtmlTextInToolTip" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="GridControlSupervisorAdd.EmbeddedNavigator.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Left</value>
|
||||
</data>
|
||||
<data name="GridControlSupervisorAdd.EmbeddedNavigator.BackgroundImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlSupervisorAdd.EmbeddedNavigator.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
|
||||
<value>Tile</value>
|
||||
</data>
|
||||
<data name="GridControlSupervisorAdd.EmbeddedNavigator.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||
<value>Inherit</value>
|
||||
</data>
|
||||
<data name="GridControlSupervisorAdd.EmbeddedNavigator.MaximumSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<data name="GridControlSupervisorAdd.EmbeddedNavigator.TextLocation" type="DevExpress.XtraEditors.NavigatorButtonsTextLocation, DevExpress.XtraEditors.v15.2">
|
||||
<value>Center</value>
|
||||
</data>
|
||||
<data name="GridControlSupervisorAdd.EmbeddedNavigator.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlSupervisorAdd.EmbeddedNavigator.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="GridControlSupervisorAdd.EmbeddedNavigator.ToolTipTitle" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridViewSupervisorsAdd.Appearance.EvenRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="GridViewSupervisorsAdd.Appearance.EvenRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="GridViewSupervisorsAdd.Appearance.EvenRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="GridViewSupervisorsAdd.Appearance.EvenRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridViewSupervisorsAdd.Appearance.FocusedRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="GridViewSupervisorsAdd.Appearance.FocusedRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="GridViewSupervisorsAdd.Appearance.FocusedRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="GridViewSupervisorsAdd.Appearance.FocusedRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="btnDeleteUserSupervisor.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29m
|
||||
dHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJpSURBVDhPpZP7S1NhGMf9W/SHKEGiGyFhFBTmvMyd
|
||||
tTa3eTvL9LjFIpam7AzTDGoYuvCHcJbaVSt/yTSxUV4ycnYdWh4rL+3URq3pObumfNsmbS5HEL3weeE8
|
||||
PJ/vy3nOeZMA/BcbCgsaTco8Van/QJUzsyqSm1GVcO9JJTNFyvW2UmnKn/1xD4tqDfGJotjvpib4RywI
|
||||
vLUiMDEK/n43FrRleF1IsC+UQmK9EyfPVVD88t1urM6+Q3DwHoJdzQiaL+Dn7TasjA/CUauFVZ7NP5dm
|
||||
RkMi27xanRyS7dzNLqwyNgQvn4O72YClphr4LxkQaKHhN56C/8EtLB4nMX7kgH1Msi85GhCSaWe9Hiu2
|
||||
yciJPhMN13kdvA3qOLjTJPy91/AqLwPD4gw6GvCROsZ4eq8j2GOG21iFb0XihCxXkeCb6uAwVOMxkc5E
|
||||
A5gKlTfwsBdBkwHus9pQKfFyyHLgogqxZG6FJW+XN1RaC5ghi7y+ng74G7XwnimPNCda4QBnmQJLba0Y
|
||||
Em6LBUyXKhiXsQ6+ZhrcSWWkMSHyPLjra7FQq8OgIC32CrZiKc1IBPD2dMKtksBVJtogs9JssAUieLqu
|
||||
YFS4AwNZW2JDfFMkTn5ZQtgXK0vgudMRGZhTIVwTZblgJSFZIgTf2Y6pYnFYtvcJNsc+Y5jJghxiQnaI
|
||||
nzuqgOdGB3400nCQcnxRyuBq0IO/2o5pZT76s1L5kBz/I/3mmfQg8fTwftYq2oOvNTq4Wi5G+Fx9Ak9y
|
||||
todldr0cJi4gzIh4b8qwMF1vIXYzj/J3ckOCrdxAbhrTn52q78vc9PfL9O8g6Rcd0s65aUjWSwAAAABJ
|
||||
RU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="btnAddUser2Supervisor.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
xAAADsQBlSsOGwAAALhJREFUOE+tk8ENhCAQRSnFWqiEOiiAO42sJXjmRCnsXriy83VIZCQE153kJcKf
|
||||
/yM6KFk5Z0NsRBFgz3DbtUhciBhCKNbaorVuwB409KCXbUexOTnnLkaJ9x4hqQmhRYTQM/TgkFjNBq8m
|
||||
m9bXWt7ps4NnqfNxDAK23pnBKAQeeBHQCJJRCLxNQG0ccQ75f0CPmSM8/ojPfiPPQpyZwkozSCha7KM8
|
||||
M43dUUZxyG+X6Vwk3rjOSn0Bs2pSjcG3D98AAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="btnAddSupervisorControl.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
xAAADsQBlSsOGwAAALhJREFUOE+tk8ENhCAQRSnFWqiEOiiAO42sJXjmRCnsXriy83VIZCQE153kJcKf
|
||||
/yM6KFk5Z0NsRBFgz3DbtUhciBhCKNbaorVuwB409KCXbUexOTnnLkaJ9x4hqQmhRYTQM/TgkFjNBq8m
|
||||
m9bXWt7ps4NnqfNxDAK23pnBKAQeeBHQCJJRCLxNQG0ccQ75f0CPmSM8/ojPfiPPQpyZwkozSCha7KM8
|
||||
M43dUUZxyG+X6Vwk3rjOSn0Bs2pSjcG3D98AAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="chkWDSearch_Active.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>139, 17</value>
|
||||
</data>
|
||||
<data name="chkWDSearch_Active.Text" xml:space="preserve">
|
||||
<value>windream search active</value>
|
||||
</data>
|
||||
<data name="lblSave1.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>104, 13</value>
|
||||
</data>
|
||||
<data name="lblSave1.Text" xml:space="preserve">
|
||||
<value>Saved successfully.</value>
|
||||
</data>
|
||||
<data name="Label9.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>99, 13</value>
|
||||
</data>
|
||||
<data name="Label9.Text" xml:space="preserve">
|
||||
<value>windream-Search:</value>
|
||||
</data>
|
||||
<data name="grpbxWD_RecordSearch.Text" xml:space="preserve">
|
||||
<value>windream-search for Record driven Search:</value>
|
||||
</data>
|
||||
<data name="GroupBox1.Text" xml:space="preserve">
|
||||
<value>windream-search for Entity-wide search:</value>
|
||||
</data>
|
||||
<data name="XtraTabPage4.Text" xml:space="preserve">
|
||||
<value>windream-search</value>
|
||||
</data>
|
||||
<data name="GridControlUserSQL.EmbeddedNavigator.AccessibleDescription" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlUserSQL.EmbeddedNavigator.AccessibleName" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlUserSQL.EmbeddedNavigator.AllowHtmlTextInToolTip" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="GridControlUserSQL.EmbeddedNavigator.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Left</value>
|
||||
</data>
|
||||
<data name="GridControlUserSQL.EmbeddedNavigator.BackgroundImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlUserSQL.EmbeddedNavigator.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
|
||||
<value>Tile</value>
|
||||
</data>
|
||||
<data name="GridControlUserSQL.EmbeddedNavigator.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||
<value>Inherit</value>
|
||||
</data>
|
||||
<data name="GridControlUserSQL.EmbeddedNavigator.MaximumSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<data name="GridControlUserSQL.EmbeddedNavigator.TextLocation" type="DevExpress.XtraEditors.NavigatorButtonsTextLocation, DevExpress.XtraEditors.v15.2">
|
||||
<value>Center</value>
|
||||
</data>
|
||||
<data name="GridControlUserSQL.EmbeddedNavigator.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlUserSQL.EmbeddedNavigator.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="GridControlUserSQL.EmbeddedNavigator.ToolTipTitle" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridViewUserSQL.Appearance.EvenRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="GridViewUserSQL.Appearance.EvenRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="GridViewUserSQL.Appearance.EvenRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="GridViewUserSQL.Appearance.EvenRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridViewUserSQL.Appearance.FocusedRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="GridViewUserSQL.Appearance.FocusedRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="GridViewUserSQL.Appearance.FocusedRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="GridViewUserSQL.Appearance.FocusedRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlUserSQL.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>272, 221</value>
|
||||
</data>
|
||||
<data name="Label12.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>283, -103</value>
|
||||
</data>
|
||||
<data name="Label12.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>77, 15</value>
|
||||
</data>
|
||||
<data name="Label12.Text" xml:space="preserve">
|
||||
<value>Placeholders:</value>
|
||||
</data>
|
||||
<data name="Label17.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>536, -103</value>
|
||||
</data>
|
||||
<data name="Label17.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>42, 15</value>
|
||||
</data>
|
||||
<data name="Label17.Text" xml:space="preserve">
|
||||
<value>Result:</value>
|
||||
</data>
|
||||
<data name="dgvResult.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>542, 149</value>
|
||||
</data>
|
||||
<data name="colPlaceholder.HeaderText" xml:space="preserve">
|
||||
<value>Placeholder</value>
|
||||
</data>
|
||||
@ -525,9 +715,15 @@
|
||||
<data name="Label10.Text" xml:space="preserve">
|
||||
<value>User for selection:</value>
|
||||
</data>
|
||||
<data name="TabPage1.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>1078, 248</value>
|
||||
</data>
|
||||
<data name="TabPage1.Text" xml:space="preserve">
|
||||
<value>Restrictions Recordmanagement</value>
|
||||
</data>
|
||||
<data name="TabPage2.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>1078, 248</value>
|
||||
</data>
|
||||
<data name="XtraTabPage2.Text" xml:space="preserve">
|
||||
<value>Usermapping</value>
|
||||
</data>
|
||||
@ -582,11 +778,10 @@ selected clients</value>
|
||||
<data name="lblSave.Text" xml:space="preserve">
|
||||
<value>Record saved!</value>
|
||||
</data>
|
||||
<assembly alias="DevExpress.Utils.v15.2" name="DevExpress.Utils.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||
<data name="ImageCollection1.ImageStream" type="DevExpress.Utils.ImageCollectionStreamer, DevExpress.Utils.v15.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFpEZXZFeHByZXNzLlV0aWxzLnYxNS4xLCBWZXJzaW9uPTE1LjEu
|
||||
Ny4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI4OGQxNzU0ZDcwMGU0OWEMAwAAAFFT
|
||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFpEZXZFeHByZXNzLlV0aWxzLnYxNS4yLCBWZXJzaW9uPTE1LjIu
|
||||
OS4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI4OGQxNzU0ZDcwMGU0OWEMAwAAAFFT
|
||||
eXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRv
|
||||
a2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAAChEZXZFeHByZXNzLlV0aWxzLkltYWdlQ29sbGVjdGlvblN0
|
||||
cmVhbWVyAgAAAAlJbWFnZVNpemUERGF0YQQHE1N5c3RlbS5EcmF3aW5nLlNpemUDAAAAAgIAAAAF/P//
|
||||
@ -5664,6 +5859,126 @@ selected clients</value>
|
||||
<data name="Label16.Text" xml:space="preserve">
|
||||
<value>Only the related Users will be able to start/choose the Constructor from Quick menu.</value>
|
||||
</data>
|
||||
<data name="GridControlUsers2Menue.EmbeddedNavigator.AccessibleDescription" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlUsers2Menue.EmbeddedNavigator.AccessibleName" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlUsers2Menue.EmbeddedNavigator.AllowHtmlTextInToolTip" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="GridControlUsers2Menue.EmbeddedNavigator.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Left</value>
|
||||
</data>
|
||||
<data name="GridControlUsers2Menue.EmbeddedNavigator.BackgroundImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlUsers2Menue.EmbeddedNavigator.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
|
||||
<value>Tile</value>
|
||||
</data>
|
||||
<data name="GridControlUsers2Menue.EmbeddedNavigator.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||
<value>Inherit</value>
|
||||
</data>
|
||||
<data name="GridControlUsers2Menue.EmbeddedNavigator.MaximumSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<data name="GridControlUsers2Menue.EmbeddedNavigator.TextLocation" type="DevExpress.XtraEditors.NavigatorButtonsTextLocation, DevExpress.XtraEditors.v15.2">
|
||||
<value>Center</value>
|
||||
</data>
|
||||
<data name="GridControlUsers2Menue.EmbeddedNavigator.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlUsers2Menue.EmbeddedNavigator.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="GridControlUsers2Menue.EmbeddedNavigator.ToolTipTitle" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridViewlUsers2Menue.Appearance.EvenRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="GridViewlUsers2Menue.Appearance.EvenRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="GridViewlUsers2Menue.Appearance.EvenRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="GridViewlUsers2Menue.Appearance.EvenRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridViewlUsers2Menue.Appearance.FocusedRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="GridViewlUsers2Menue.Appearance.FocusedRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="GridViewlUsers2Menue.Appearance.FocusedRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="GridViewlUsers2Menue.Appearance.FocusedRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.AccessibleDescription" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.AccessibleName" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.AllowHtmlTextInToolTip" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Left</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.BackgroundImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
|
||||
<value>Tile</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||
<value>Inherit</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.MaximumSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.TextLocation" type="DevExpress.XtraEditors.NavigatorButtonsTextLocation, DevExpress.XtraEditors.v15.2">
|
||||
<value>Center</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.ToolTipTitle" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridView1.Appearance.EvenRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="GridView1.Appearance.EvenRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="GridView1.Appearance.EvenRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="GridView1.Appearance.EvenRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridView1.Appearance.FocusedRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="GridView1.Appearance.FocusedRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="GridView1.Appearance.FocusedRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="GridView1.Appearance.FocusedRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
AAABAAQAEBAQAAAAAAAoAQAARgAAABAQAAAAAAAAaAUAAG4BAAAgIBAAAAAAAOgCAADWBgAAICAAAAAA
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
622
app/DD-Record-Organiser/frmConstructor_Main.Designer.vb
generated
622
app/DD-Record-Organiser/frmConstructor_Main.Designer.vb
generated
File diff suppressed because it is too large
Load Diff
1469
app/DD-Record-Organiser/frmConstructor_Main.ar-EG.resx
Normal file
1469
app/DD-Record-Organiser/frmConstructor_Main.ar-EG.resx
Normal file
File diff suppressed because it is too large
Load Diff
@ -117,6 +117,13 @@
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<assembly alias="DevExpress.Data.v15.2" name="DevExpress.Data.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||
<data name="TreeViewMain.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="CMSEntity.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="ResetEbenenAuswahlToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>188, 22</value>
|
||||
@ -160,6 +167,34 @@
|
||||
<data name="CMSEntity.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>189, 138</value>
|
||||
</data>
|
||||
<data name="CMSEntity.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="CMSEntity.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="CMSEntity.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<assembly alias="DevExpress.Utils.v15.2" name="DevExpress.Utils.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||
<data name="CMSEntity.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="TreeViewMain.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="TreeViewMain.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="TreeViewMain.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="TreeViewMain.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="ContextMenuGrid.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="FunktionenDataGridToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>226, 22</value>
|
||||
</data>
|
||||
@ -241,6 +276,87 @@
|
||||
<data name="ContextMenuGrid.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>227, 270</value>
|
||||
</data>
|
||||
<data name="ContextMenuGrid.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ContextMenuGrid.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ContextMenuGrid.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ContextMenuGrid.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="GridControlMain.EmbeddedNavigator.AccessibleDescription" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlMain.EmbeddedNavigator.AccessibleName" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlMain.EmbeddedNavigator.AllowHtmlTextInToolTip" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="GridControlMain.EmbeddedNavigator.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Left</value>
|
||||
</data>
|
||||
<data name="GridControlMain.EmbeddedNavigator.BackgroundImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlMain.EmbeddedNavigator.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
|
||||
<value>Tile</value>
|
||||
</data>
|
||||
<data name="GridControlMain.EmbeddedNavigator.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||
<value>Inherit</value>
|
||||
</data>
|
||||
<data name="GridControlMain.EmbeddedNavigator.MaximumSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<assembly alias="DevExpress.XtraEditors.v15.2" name="DevExpress.XtraEditors.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||
<data name="GridControlMain.EmbeddedNavigator.TextLocation" type="DevExpress.XtraEditors.NavigatorButtonsTextLocation, DevExpress.XtraEditors.v15.2">
|
||||
<value>Center</value>
|
||||
</data>
|
||||
<data name="GridControlMain.EmbeddedNavigator.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlMain.EmbeddedNavigator.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="GridControlMain.EmbeddedNavigator.ToolTipTitle" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="grvwGrid.Appearance.EvenRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="grvwGrid.Appearance.EvenRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="grvwGrid.Appearance.EvenRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="grvwGrid.Appearance.EvenRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="grvwTiles.AppearanceGroupText.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="grvwTiles.AppearanceGroupText.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="grvwTiles.AppearanceGroupText.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="grvwTiles.AppearanceGroupText.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlMain.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripRecords.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="CopyRecordtsmi.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>200, 22</value>
|
||||
</data>
|
||||
@ -253,6 +369,12 @@
|
||||
<data name="NewVarianttsmi.Text" xml:space="preserve">
|
||||
<value>New variant</value>
|
||||
</data>
|
||||
<data name="RecordDeleteToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>200, 22</value>
|
||||
</data>
|
||||
<data name="RecordDeleteToolStripMenuItem.Text" xml:space="preserve">
|
||||
<value>delete Record</value>
|
||||
</data>
|
||||
<data name="ToolStripSeparator5.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>197, 6</value>
|
||||
</data>
|
||||
@ -295,6 +417,117 @@
|
||||
<data name="ToolStripDropDownButton3.Text" xml:space="preserve">
|
||||
<value>record-functions</value>
|
||||
</data>
|
||||
<data name="ToolStripRecords.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripRecords.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripRecords.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripRecords.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="SplitContainerTop.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="TCDetails.AppearancePage.HeaderHotTracked.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="TCDetails.AppearancePage.HeaderHotTracked.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="TCDetails.AppearancePage.HeaderHotTracked.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="TCDetails.AppearancePage.HeaderHotTracked.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="SplitContainerDetails.Appearance.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="SplitContainerDetails.Appearance.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="SplitContainerDetails.Appearance.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="SplitContainerDetails.Appearance.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="pnlDetails.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="pnlDetails.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="pnlDetails.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="pnlDetails.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="pnlDetails.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="pnlDocFill.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="statStripDoc.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="tslblDocViewLocked.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>279, 19</value>
|
||||
</data>
|
||||
<data name="tslblDocViewLocked.Text" xml:space="preserve">
|
||||
<value>View is locked - Click Work Record for unlocking</value>
|
||||
</data>
|
||||
<data name="statStripDoc.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="statStripDoc.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="statStripDoc.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="statStripDoc.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="pnlDocFill.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="pnlDocFill.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="pnlDocFill.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="pnlDocFill.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="pnlDocToolStrip.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="pnlDocToolStrip.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="pnlDocToolStrip.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="pnlDocToolStrip.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="pnlDocToolStrip.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="SplitContainerDetails.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripEdit.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="tsButtonAdd.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>49, 22</value>
|
||||
</data>
|
||||
@ -342,6 +575,12 @@
|
||||
<data name="tsButtonCancel.Text" xml:space="preserve">
|
||||
<value>Cancel</value>
|
||||
</data>
|
||||
<data name="tsbtnPanel1Collapse.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>109, 22</value>
|
||||
</data>
|
||||
<data name="tsbtnPanel1Collapse.Text" xml:space="preserve">
|
||||
<value>Collapse details</value>
|
||||
</data>
|
||||
<data name="tslblLocked.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>128, 22</value>
|
||||
</data>
|
||||
@ -354,9 +593,27 @@
|
||||
<data name="tslblFileslocked.Text" xml:space="preserve">
|
||||
<value>No file-access</value>
|
||||
</data>
|
||||
<data name="ToolStripEdit.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripEdit.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripEdit.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripEdit.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="TabDetails.Text" xml:space="preserve">
|
||||
<value>Details</value>
|
||||
</data>
|
||||
<data name="TabDetails.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ContextMenuStripResultFiles.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="docCM_Open.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>209, 22</value>
|
||||
</data>
|
||||
@ -372,6 +629,15 @@
|
||||
<data name="ToolStripSeparator10.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>206, 6</value>
|
||||
</data>
|
||||
<data name="docCMEntityWideSearch.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>209, 22</value>
|
||||
</data>
|
||||
<data name="docCMEntityWideSearch.Text" xml:space="preserve">
|
||||
<value>Entitywide Search</value>
|
||||
</data>
|
||||
<data name="ToolStripSeparator20.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>206, 6</value>
|
||||
</data>
|
||||
<data name="docCM_Rename.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>209, 22</value>
|
||||
</data>
|
||||
@ -451,45 +717,128 @@
|
||||
<value>Properties</value>
|
||||
</data>
|
||||
<data name="ContextMenuStripResultFiles.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>210, 320</value>
|
||||
<value>210, 348</value>
|
||||
</data>
|
||||
<data name="KonfigurationToolStripMenuItem.Text" xml:space="preserve">
|
||||
<value>Configuration User</value>
|
||||
<data name="ContextMenuStripResultFiles.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripDropDownButton2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGcSURBVDhPrZI/SEJRFMZvFNTSIo2Bk0OtLdlYEeEgEQUR
|
||||
BNHSEEmQS4iVIFgkDtWQIDTU0FJEkGDYHwr7M2SUQyDUFC0NFUEUpF/33PPe9QqSSx98vHvevd/vnXt4
|
||||
4t+V6BewbdZRD9d/ig5io0Gb6lyohuutxuoQBdhtYRsg2wSYdrOtCMtuswxg2gK8r9Uj5atTaw1RodMh
|
||||
4GRAB57jTg2kr5IzwSYNItPVFEQBLseBXAQ49ABJtwqmRwQewwJfUYGzMYbs+8shJUBMoLDdyp1IyKq3
|
||||
9OVAp8DeqEC8S2BCBqjDz4QMtxlzIEh2Sm7ehhQkKmtrS4kgJoCcDdSWz0F18pQEbgLIRFzqsNq0RBAT
|
||||
QNZXOJ+UG+leKBFEziSfaFcB0/llZ2XA64LAz5JA8cDLA5WDxP2K7CbINfm4TzvWIQc6bHRIkI8ZgQcf
|
||||
D+56vpkB1A0978LsCwa9rbtK97dFEArTmp6FTReKO20oprrxPcdDpvpl0YG8v8LfaIoAkP8AXetq1oFY
|
||||
DwcIdDRYJUwiAB0yTe/NNUuIXy/etxLLTTpKAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
<data name="ContextMenuStripResultFiles.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripDropDownButton2.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>195, 22</value>
|
||||
<data name="ContextMenuStripResultFiles.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripDropDownButton2.Text" xml:space="preserve">
|
||||
<value>configuration windream-View</value>
|
||||
<data name="ContextMenuStripResultFiles.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="tsbtnEntitySearch.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>128, 22</value>
|
||||
<data name="GridControlDocSearch.EmbeddedNavigator.AccessibleDescription" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="tsbtnEntitySearch.Text" xml:space="preserve">
|
||||
<value>Entity-wide search</value>
|
||||
<data name="GridControlDocSearch.EmbeddedNavigator.AccessibleName" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="DocSearchRefresh.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>107, 22</value>
|
||||
<data name="GridControlDocSearch.EmbeddedNavigator.AllowHtmlTextInToolTip" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="DocSearchRefresh.Text" xml:space="preserve">
|
||||
<value>Refresh search</value>
|
||||
<data name="GridControlDocSearch.EmbeddedNavigator.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Left</value>
|
||||
</data>
|
||||
<data name="GridControlDocSearch.EmbeddedNavigator.BackgroundImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlDocSearch.EmbeddedNavigator.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
|
||||
<value>Tile</value>
|
||||
</data>
|
||||
<data name="GridControlDocSearch.EmbeddedNavigator.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||
<value>Inherit</value>
|
||||
</data>
|
||||
<data name="GridControlDocSearch.EmbeddedNavigator.MaximumSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<data name="GridControlDocSearch.EmbeddedNavigator.TextLocation" type="DevExpress.XtraEditors.NavigatorButtonsTextLocation, DevExpress.XtraEditors.v15.2">
|
||||
<value>Center</value>
|
||||
</data>
|
||||
<data name="GridControlDocSearch.EmbeddedNavigator.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlDocSearch.EmbeddedNavigator.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="GridControlDocSearch.EmbeddedNavigator.ToolTipTitle" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridViewDoc_Search.Appearance.OddRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="GridViewDoc_Search.Appearance.OddRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="GridViewDoc_Search.Appearance.OddRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="GridViewDoc_Search.Appearance.OddRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlDocSearch.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripDokumente.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="ToolStripLabel1.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>133, 22</value>
|
||||
</data>
|
||||
<data name="ToolStripLabel1.Text" xml:space="preserve">
|
||||
<value>Fulltext-Search ECM:</value>
|
||||
</data>
|
||||
<data name="tsbtnDoc_Refresh.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>102, 22</value>
|
||||
</data>
|
||||
<data name="tsbtnDoc_Refresh.Text" xml:space="preserve">
|
||||
<value>Reload search</value>
|
||||
</data>
|
||||
<data name="ToolStripDokumente.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripDokumente.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripDokumente.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ToolStripDokumente.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="TabWindream.Text" xml:space="preserve">
|
||||
<value>windream-files</value>
|
||||
</data>
|
||||
<data name="TabWindream.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ListViewFollowUps.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="ListViewFollowUps.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ListViewFollowUps.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ListViewFollowUps.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ListViewFollowUps.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="grpbxFU_Profile.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="GroupBox4.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="btnRemoveUser_FollowUp.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="btnRemoveUser_FollowUp.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29m
|
||||
@ -510,33 +859,288 @@
|
||||
<data name="btnRemoveUser_FollowUp.Text" xml:space="preserve">
|
||||
<value>delete user</value>
|
||||
</data>
|
||||
<data name="btnRemoveUser_FollowUp.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="btnRemoveUser_FollowUp.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="btnRemoveUser_FollowUp.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="btnRemoveUser_FollowUp.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="btnAddUser_FollowUp.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="btnAddUser_FollowUp.Text" xml:space="preserve">
|
||||
<value>Add user tu follow up</value>
|
||||
</data>
|
||||
<data name="btnAddUser_FollowUp.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="btnAddUser_FollowUp.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="btnAddUser_FollowUp.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="btnAddUser_FollowUp.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="cmbFollowUpUser.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="cmbFollowUpUser.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="cmbFollowUpUser.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="cmbFollowUpUser.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="cmbFollowUpUser.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="Label6.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="Label6.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Label6.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Label6.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Label6.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="ListBoxUser2Profile.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="ListBoxUser2Profile.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ListBoxUser2Profile.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ListBoxUser2Profile.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ListBoxUser2Profile.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="Label7.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="Label7.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>216, 13</value>
|
||||
</data>
|
||||
<data name="Label7.Text" xml:space="preserve">
|
||||
<value>Attention: this list overdrives the general list.</value>
|
||||
</data>
|
||||
<data name="Label7.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Label7.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Label7.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Label7.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="GroupBox4.Text" xml:space="preserve">
|
||||
<value>Special recipient for record:</value>
|
||||
</data>
|
||||
<data name="GroupBox4.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GroupBox4.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GroupBox4.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GroupBox4.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="lblFollowUp_save.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="lblFollowUp_save.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>92, 15</value>
|
||||
</data>
|
||||
<data name="lblFollowUp_save.Text" xml:space="preserve">
|
||||
<value>Follow Up saved</value>
|
||||
</data>
|
||||
<data name="lblFollowUp_save.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="lblFollowUp_save.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="lblFollowUp_save.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="lblFollowUp_save.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="chkFollowUp.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="chkFollowUp.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="chkFollowUp.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="chkFollowUp.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="chkFollowUp.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="dtpFollowUp.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="dtpFollowUp.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="dtpFollowUp.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="dtpFollowUp.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="dtpFollowUp.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="lblWiedervorlage_Control.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="lblWiedervorlage_Control.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="lblWiedervorlage_Control.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="lblWiedervorlage_Control.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="lblWiedervorlage_Control.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="grpbxFU_Profile.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="grpbxFU_Profile.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="grpbxFU_Profile.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="grpbxFU_Profile.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="Label5.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="Label5.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>91, 13</value>
|
||||
</data>
|
||||
<data name="Label5.Text" xml:space="preserve">
|
||||
<value>Saved Follow Ups</value>
|
||||
</data>
|
||||
<data name="Label5.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Label5.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Label5.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Label5.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="TabFollowUp.Text" xml:space="preserve">
|
||||
<value>Follow Up</value>
|
||||
</data>
|
||||
<data name="TabFollowUp.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Panel1.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="GridControlPos.EmbeddedNavigator.AccessibleDescription" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlPos.EmbeddedNavigator.AccessibleName" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlPos.EmbeddedNavigator.AllowHtmlTextInToolTip" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="GridControlPos.EmbeddedNavigator.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Left</value>
|
||||
</data>
|
||||
<data name="GridControlPos.EmbeddedNavigator.BackgroundImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlPos.EmbeddedNavigator.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
|
||||
<value>Tile</value>
|
||||
</data>
|
||||
<data name="GridControlPos.EmbeddedNavigator.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||
<value>Inherit</value>
|
||||
</data>
|
||||
<data name="GridControlPos.EmbeddedNavigator.MaximumSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<data name="GridControlPos.EmbeddedNavigator.TextLocation" type="DevExpress.XtraEditors.NavigatorButtonsTextLocation, DevExpress.XtraEditors.v15.2">
|
||||
<value>Center</value>
|
||||
</data>
|
||||
<data name="GridControlPos.EmbeddedNavigator.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlPos.EmbeddedNavigator.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="GridControlPos.EmbeddedNavigator.ToolTipTitle" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="grvwGridPos.Appearance.EvenRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="grvwGridPos.Appearance.EvenRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="grvwGridPos.Appearance.EvenRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="grvwGridPos.Appearance.EvenRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControlPos.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Panel1.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Panel1.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Panel1.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Panel1.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="BindingNavigatorAddNewItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
@ -549,6 +1153,9 @@
|
||||
rkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="BindingNavigatorPOS.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="BindingNavigatorDeleteItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
@ -601,6 +1208,18 @@
|
||||
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="BindingNavigatorPOS.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="BindingNavigatorPOS.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="BindingNavigatorPOS.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="BindingNavigatorPOS.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="TabPos.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAABl0RVh0U29m
|
||||
@ -612,6 +1231,105 @@
|
||||
<data name="TabPos.Text" xml:space="preserve">
|
||||
<value>positions</value>
|
||||
</data>
|
||||
<data name="TabPos.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="TabPageVariant.Appearance.Header.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="TabPageVariant.Appearance.Header.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="TabPageVariant.Appearance.Header.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="TabPageVariant.Appearance.Header.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.AccessibleDescription" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.AccessibleName" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.AllowHtmlTextInToolTip" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Left</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.BackgroundImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
|
||||
<value>Tile</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||
<value>Inherit</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.MaximumSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.TextLocation" type="DevExpress.XtraEditors.NavigatorButtonsTextLocation, DevExpress.XtraEditors.v15.2">
|
||||
<value>Center</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="GridControl1.EmbeddedNavigator.ToolTipTitle" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridViewVariants.Appearance.EvenRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="GridViewVariants.Appearance.EvenRow.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="GridViewVariants.Appearance.EvenRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="GridViewVariants.Appearance.EvenRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GridControl1.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="tsVariants.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="ToolStripButton1.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>63, 22</value>
|
||||
</data>
|
||||
<data name="ToolStripButton1.Text" xml:space="preserve">
|
||||
<value>Reload</value>
|
||||
</data>
|
||||
<data name="tsVariants.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="tsVariants.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="tsVariants.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="tsVariants.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="TabPageVariant.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="TCDetails.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="SplitContainerMain.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="SplitContainerFORM.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="NavButtonHome.Glyph" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAABl0RVh0U29m
|
||||
@ -639,7 +1357,24 @@
|
||||
uIEEMbxns0OpzYNRITMZmOv/PZbXJi3WJC3WJC3Wo939Ao+TPgKX3Mi+AAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<assembly alias="DevExpress.Utils.v15.2" name="DevExpress.Utils.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||
<data name="NavPane.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="StatusStrip_Main.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="StatusStrip_Main.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="StatusStrip_Main.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="StatusStrip_Main.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="StatusStrip_Main.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="ImageCollection1.ImageStream" type="DevExpress.Utils.ImageCollectionStreamer, DevExpress.Utils.v15.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFpEZXZFeHByZXNzLlV0aWxzLnYxNS4yLCBWZXJzaW9uPTE1LjIu
|
||||
@ -647,6 +1382,39 @@
|
||||
ZXZFeHByZXNzLlV0aWxzLkltYWdlQ29sbGVjdGlvblN0cmVhbWVyAAAAAAIAAAAL
|
||||
</value>
|
||||
</data>
|
||||
<data name="ContextMenuDetails.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="ContextMenuDetails.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ContextMenuDetails.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ContextMenuDetails.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="ContextMenuDetails.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="cmsrpContainer.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="cmsrpContainer.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="cmsrpContainer.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="cmsrpContainer.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="cmsrpContainer.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="$this.AllowHtmlText" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
AAABAAgAEBAAAAEACABoBQAAhgAAABAQAAABACAAaAQAAO4FAAAYGAAAAQAIAMgGAABWCgAAGBgAAAEA
|
||||
@ -1096,4 +1864,16 @@
|
||||
AAAADwAA/gAAAAAPAAD//4AAAB8AAP///8AP/wAA////////AAD///////8AAP///////wAA
|
||||
</value>
|
||||
</data>
|
||||
<data name="$this.Title" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="$this.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="$this.ToolTip1" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="$this.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
</root>
|
||||
File diff suppressed because it is too large
Load Diff
@ -492,15 +492,15 @@ Public Class frmConstructor_Main
|
||||
If NODE_NAVIGATION = False Then
|
||||
settings.Add(New ClassSetting("SplitViewTopSplitterPosition", SplitContainerTop.SplitterPosition))
|
||||
settings.Add(New ClassSetting("SplitViewMainSplitterPosition", SplitContainerMain.SplitterPosition))
|
||||
If DOC_SEARCH_TAB1 = True Then
|
||||
settings.Add(New ClassSetting("SplitViewDetailsSplitterPosition", SplitContainerDetails.SplitterPosition))
|
||||
End If
|
||||
|
||||
Else
|
||||
settings.Add(New ClassSetting("SplitViewTopSplitterPosition", SplitContainerTop.SplitterPosition))
|
||||
settings.Add(New ClassSetting("SplitViewMainSplitterPosition", SplitContainerFORM.SplitterPosition))
|
||||
|
||||
End If
|
||||
|
||||
If DOC_SEARCH_TAB1 = True Then
|
||||
settings.Add(New ClassSetting("SplitViewDetailsSplitterPosition", SplitContainerDetails.SplitterPosition))
|
||||
End If
|
||||
layout.Save(settings)
|
||||
Catch ex As Exception
|
||||
MsgBox("Error in Save_Splitter_Layout:" & vbNewLine & ex.Message)
|
||||
@ -1220,6 +1220,11 @@ Public Class frmConstructor_Main
|
||||
|
||||
End If
|
||||
Load_Datafor_Entity()
|
||||
If DOC_SEARCH_TAB1 = True Then
|
||||
tsbtnPanel1Collapse.Visible = True
|
||||
Else
|
||||
tsbtnPanel1Collapse.Visible = True
|
||||
End If
|
||||
If NODE_NAVIGATION = True Then
|
||||
Dim SelectedNode As TreeNode = TryCast(TreeViewMain.SelectedNode, TreeNode)
|
||||
If SelectedNode IsNot Nothing Then
|
||||
@ -1227,8 +1232,10 @@ Public Class frmConstructor_Main
|
||||
If SelectedNode.Tag.ToString.Contains("RECORD-ID") Then
|
||||
Dim Record = Return_RECORD_forTag(SelectedNode.Tag)
|
||||
If Record <> 0 Then
|
||||
ToolStripEdit.Enabled = True
|
||||
If RIGHT_WINDREAM_FORBIDDEN = False Then
|
||||
Doc_Controls_EditMode(True)
|
||||
|
||||
End If
|
||||
Column_Row_Handler(Record, True)
|
||||
LocateRecordById(RECORD_ID)
|
||||
@ -1236,8 +1243,9 @@ Public Class frmConstructor_Main
|
||||
Doc_Controls_EditMode(True)
|
||||
End If
|
||||
End If
|
||||
If pnlDetails.Enabled = False Then pnlDetails.Enabled = True
|
||||
Else
|
||||
pnlDetails.Enabled = False
|
||||
If pnlDetails.Enabled = True Then pnlDetails.Enabled = False
|
||||
If DOC_SEARCH_TAB1 = True Then
|
||||
Doc_Controls_EditMode(False)
|
||||
End If
|
||||
@ -1259,7 +1267,6 @@ Public Class frmConstructor_Main
|
||||
tslblDocViewLocked.Visible = False
|
||||
End If
|
||||
tsTextboxFulltext.Enabled = state
|
||||
tsdrdowbtnDocSearch.Enabled = state
|
||||
End Sub
|
||||
Private Sub TreeViewMain_BeforeSelect(sender As Object, e As TreeViewCancelEventArgs) Handles TreeViewMain.BeforeSelect
|
||||
If NODE_NAVIGATION = False Then
|
||||
@ -2284,6 +2291,20 @@ Public Class frmConstructor_Main
|
||||
tslblDocIDMain.Visible = True
|
||||
tslblDocIDTab1.Visible = False
|
||||
End If
|
||||
|
||||
Dim GEODATA As Boolean = False
|
||||
Dim sql = String.Format("SELECT COUNT(*) FROM TBPMO_RECORD_GEODATA WHERE RECORD_ID IN (SELECT GUID FROM TBPMO_RECORD WHERE FORM_ID = {0})", ENTITY_ID)
|
||||
Dim count = ClassDatabase.Execute_Scalar(sql)
|
||||
If count > 0 Then
|
||||
GEODATA = True
|
||||
Else
|
||||
GEODATA = False
|
||||
End If
|
||||
If GEODATA = True Then
|
||||
tsbtnGeodata.Visible = True
|
||||
Else
|
||||
tsbtnGeodata.Visible = False
|
||||
End If
|
||||
ACTIVATE_DOC_SEARCH_ON_EDIT = result.Item("ACTIVATE_DOC_SEARCH_ON_EDIT")
|
||||
Dim sql_ResultList = String.Format("select * from TBPMO_DOCSEARCH_RESULTLIST_CONFIG WHERE VISIBLE = 1 AND ENTITY_ID = {0} AND LANGUAGE = '{1}'", ENTITY_ID, USER_LANGUAGE) 'TBPMO_WINDREAM_RESULTLIST_CONFIG"
|
||||
DT_WINDREAM_RESULTLIST = ClassDatabase.Return_Datatable(sql_ResultList, "GETRESULTLIST KONFIG")
|
||||
@ -3094,8 +3115,9 @@ Public Class frmConstructor_Main
|
||||
|
||||
End Try
|
||||
'Try
|
||||
' grvwGrid.GridControl.RepositoryItems.Add(CheckBoxEditorForDisplay)
|
||||
' grvwGrid.Columns("files?").ColumnEdit = CheckBoxEditorForDisplay
|
||||
' Dim chkRep As New DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit
|
||||
' grvwGrid.GridControl.RepositoryItems.Add(chkRep)
|
||||
' grvwGrid.Columns("files?").ColumnEdit = chkRep
|
||||
'Catch ex As Exception
|
||||
' ClassLogger.Add(">> Attention: Column files? not existing in GridView?", False)
|
||||
'End Try
|
||||
@ -4250,7 +4272,7 @@ Public Class frmConstructor_Main
|
||||
End If
|
||||
End Sub
|
||||
Sub Drag_Drop(e As DragEventArgs)
|
||||
If act_FormViewID <> 0 And RIGHT_WINDREAM_FORBIDDEN = False Then
|
||||
If act_FormViewID <> 0 And RIGHT_WINDREAM_FORBIDDEN = False And Not IsNothing(GridControlDocSearch.ContextMenuStrip) Then
|
||||
Dim sql = "select count(*) from VWPMO_DOKUMENTTYPES where FORMVIEW_ID = " & FORMVIEW_ID
|
||||
Dim count_DT = ClassDatabase.Execute_Scalar(sql, True)
|
||||
If count_DT = 0 And CURRENT_ENTITY_REDUNDANT_ID = 0 Then
|
||||
@ -6277,6 +6299,9 @@ Public Class frmConstructor_Main
|
||||
|
||||
Private Sub tsbtnVariantDetailView_Click(sender As Object, e As EventArgs) Handles tsbtnVariantDetailView.Click
|
||||
|
||||
Load_Variant_Record()
|
||||
End Sub
|
||||
Sub Load_Variant_Record()
|
||||
Try
|
||||
Dim RECORD_ID = GridViewVariants.GetFocusedRowCellValue(GridViewVariants.Columns("RECORD_ID"))
|
||||
If Not IsNothing(RECORD_ID) Then
|
||||
@ -6287,9 +6312,43 @@ Public Class frmConstructor_Main
|
||||
End Try
|
||||
JUMP_RECORD_ID = 0
|
||||
End Sub
|
||||
|
||||
Private Sub ToolStripButton2_Click(sender As Object, e As EventArgs) Handles ToolStripButton2.Click
|
||||
Private Sub ToolStripButton2_Click(sender As Object, e As EventArgs) Handles tsbtnGeodata.Click
|
||||
Dim frm As New frmGeodataNavigation(GridControlMain, CURRENT_FORM_ID)
|
||||
frm.Show()
|
||||
End Sub
|
||||
|
||||
Private Sub GridControl1_DoubleClick(sender As Object, e As EventArgs) Handles GridControl1.DoubleClick
|
||||
Load_Variant_Record()
|
||||
End Sub
|
||||
|
||||
Private Sub ChangeHidepanelToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles ChangeHidepanelToolStripMenuItem.Click
|
||||
If SplitContainerDetails.CollapsePanel = SplitCollapsePanel.Panel1 Then
|
||||
SplitContainerDetails.CollapsePanel = SplitCollapsePanel.Panel2
|
||||
Else
|
||||
SplitContainerDetails.CollapsePanel = SplitCollapsePanel.Panel1
|
||||
End If
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub tsbtnPanel1Collapse_Click(sender As Object, e As EventArgs) Handles tsbtnPanel1Collapse.Click
|
||||
If SplitContainerDetails.CollapsePanel = SplitCollapsePanel.Panel2 Then
|
||||
SplitContainerDetails.CollapsePanel = SplitCollapsePanel.Panel1
|
||||
SplitContainerDetails.Collapsed = True
|
||||
Dim msg = "Dateisuche 'einklappen'"
|
||||
If USER_LANGUAGE <> "de-DE" Then
|
||||
msg = "Collapse filesearch"
|
||||
End If
|
||||
tsbtnPanel1Collapse.Text = msg
|
||||
tsbtnPanel1Collapse.Image = My.Resources.arrow_Forward_16xLG
|
||||
Else
|
||||
SplitContainerDetails.CollapsePanel = SplitCollapsePanel.Panel2
|
||||
SplitContainerDetails.Collapsed = True
|
||||
Dim msg = "Detailbereich 'einklappen'"
|
||||
If USER_LANGUAGE <> "de-DE" Then
|
||||
msg = "Collapse details"
|
||||
End If
|
||||
tsbtnPanel1Collapse.Text = msg
|
||||
tsbtnPanel1Collapse.Image = My.Resources.arrow_left
|
||||
End If
|
||||
End Sub
|
||||
End Class
|
||||
@ -24,10 +24,11 @@ Partial Class frmGeodataNavigation
|
||||
Private Sub InitializeComponent()
|
||||
Dim ImageTilesLayer1 As DevExpress.XtraMap.ImageTilesLayer = New DevExpress.XtraMap.ImageTilesLayer()
|
||||
Dim VectorItemsLayer1 As DevExpress.XtraMap.VectorItemsLayer = New DevExpress.XtraMap.VectorItemsLayer()
|
||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmGeodataNavigation))
|
||||
Me.ToolStrip1 = New System.Windows.Forms.ToolStrip()
|
||||
Me.StatusStrip1 = New System.Windows.Forms.StatusStrip()
|
||||
Me.MapControl1 = New DevExpress.XtraMap.MapControl()
|
||||
Me.tsLabelRecordCount = New System.Windows.Forms.ToolStripStatusLabel()
|
||||
Me.MapControl1 = New DevExpress.XtraMap.MapControl()
|
||||
Me.StatusStrip1.SuspendLayout()
|
||||
CType(Me.MapControl1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.SuspendLayout()
|
||||
@ -49,6 +50,12 @@ Partial Class frmGeodataNavigation
|
||||
Me.StatusStrip1.TabIndex = 1
|
||||
Me.StatusStrip1.Text = "StatusStrip1"
|
||||
'
|
||||
'tsLabelRecordCount
|
||||
'
|
||||
Me.tsLabelRecordCount.Name = "tsLabelRecordCount"
|
||||
Me.tsLabelRecordCount.Size = New System.Drawing.Size(119, 17)
|
||||
Me.tsLabelRecordCount.Text = "0 Elemente gefunden"
|
||||
'
|
||||
'MapControl1
|
||||
'
|
||||
Me.MapControl1.Dock = System.Windows.Forms.DockStyle.Fill
|
||||
@ -62,12 +69,6 @@ Partial Class frmGeodataNavigation
|
||||
Me.MapControl1.Size = New System.Drawing.Size(796, 452)
|
||||
Me.MapControl1.TabIndex = 2
|
||||
'
|
||||
'tsLabelRecordCount
|
||||
'
|
||||
Me.tsLabelRecordCount.Name = "tsLabelRecordCount"
|
||||
Me.tsLabelRecordCount.Size = New System.Drawing.Size(119, 17)
|
||||
Me.tsLabelRecordCount.Text = "0 Elemente gefunden"
|
||||
'
|
||||
'frmGeodataNavigation
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
@ -76,8 +77,10 @@ Partial Class frmGeodataNavigation
|
||||
Me.Controls.Add(Me.MapControl1)
|
||||
Me.Controls.Add(Me.StatusStrip1)
|
||||
Me.Controls.Add(Me.ToolStrip1)
|
||||
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
||||
Me.Name = "frmGeodataNavigation"
|
||||
Me.Text = "frmGeodataNavigation"
|
||||
Me.Text = "Geodata Navigation"
|
||||
Me.StatusStrip1.ResumeLayout(False)
|
||||
Me.StatusStrip1.PerformLayout()
|
||||
CType(Me.MapControl1, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -300,14 +300,14 @@ Partial Class frmGlobalSearch
|
||||
Me.GroupBox1.Name = "GroupBox1"
|
||||
Me.GroupBox1.TabStop = False
|
||||
'
|
||||
'frmSearchAllOVer
|
||||
'frmGlobalSearch
|
||||
'
|
||||
resources.ApplyResources(Me, "$this")
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.Controls.Add(Me.SplitContainerMain)
|
||||
Me.Controls.Add(Me.Panel1)
|
||||
Me.KeyPreview = True
|
||||
Me.Name = "frmSearchAllOVer"
|
||||
Me.Name = "frmGlobalSearch"
|
||||
CType(Me.SplitContainerMain, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.SplitContainerMain.ResumeLayout(False)
|
||||
CType(Me.GridControlRecords, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
|
||||
@ -132,9 +132,6 @@
|
||||
<data name="GridViewFiles.Appearance.EvenRow.BackColor" type="System.Drawing.Color, System.Drawing">
|
||||
<value>Orange</value>
|
||||
</data>
|
||||
<data name="tsbtnRefresh.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>92, 22</value>
|
||||
</data>
|
||||
<data name=">>Label3.Parent" xml:space="preserve">
|
||||
<value>Panel1</value>
|
||||
</data>
|
||||
@ -144,12 +141,6 @@
|
||||
<data name=">>rbSearchCombined.Parent" xml:space="preserve">
|
||||
<value>GroupBox1</value>
|
||||
</data>
|
||||
<data name="Label3.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name=">>ToolStripMain.ZOrder" xml:space="preserve">
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="ToolStripMain.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>1</value>
|
||||
</data>
|
||||
@ -162,6 +153,9 @@
|
||||
<data name=">>GroupBox1.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="tsbtnviewDetail.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>95, 22</value>
|
||||
</data>
|
||||
<data name="GridControlFiles.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>4</value>
|
||||
</data>
|
||||
@ -177,6 +171,9 @@
|
||||
<data name=">>GridViewRecords.Name" xml:space="preserve">
|
||||
<value>GridViewRecords</value>
|
||||
</data>
|
||||
<data name=">>ToolStripMain.Name" xml:space="preserve">
|
||||
<value>ToolStripMain</value>
|
||||
</data>
|
||||
<data name="GridViewRecords.Appearance.EvenRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
@ -195,6 +192,9 @@
|
||||
<data name=">>rbSearchFulltext.ZOrder" xml:space="preserve">
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="cmsRecords.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>144, 48</value>
|
||||
</data>
|
||||
<data name=">>tsbtnRefresh.Name" xml:space="preserve">
|
||||
<value>tsbtnRefresh</value>
|
||||
</data>
|
||||
@ -204,6 +204,9 @@
|
||||
<data name="rbSearchFulltext.Text" xml:space="preserve">
|
||||
<value>Nur in Volltext der Dateien suchen</value>
|
||||
</data>
|
||||
<data name=">>tslblRecordsResult.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="ToolStripButton1.ImageTransparentColor" type="System.Drawing.Color, System.Drawing">
|
||||
<value>Magenta</value>
|
||||
</data>
|
||||
@ -213,6 +216,9 @@
|
||||
<data name=">>Panel1.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>1426, 547</value>
|
||||
</data>
|
||||
<data name="SplitContainerMain.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>8</value>
|
||||
</data>
|
||||
@ -249,15 +255,9 @@
|
||||
<data name=">>ShowRecordToolStripMenuItem.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>ToolStripRecords.Parent" xml:space="preserve">
|
||||
<value>SplitContainerMain.Panel1</value>
|
||||
</data>
|
||||
<data name="GridViewRecords.Appearance.EvenRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name=">>rbSearchFulltext.Name" xml:space="preserve">
|
||||
<value>rbSearchFulltext</value>
|
||||
</data>
|
||||
<data name=">>Label1.Name" xml:space="preserve">
|
||||
<value>Label1</value>
|
||||
</data>
|
||||
@ -270,6 +270,9 @@
|
||||
<data name=">>GridControlFiles.Name" xml:space="preserve">
|
||||
<value>GridControlFiles</value>
|
||||
</data>
|
||||
<data name="ShowRecordToolStripMenuItem.Text" xml:space="preserve">
|
||||
<value>Show Record</value>
|
||||
</data>
|
||||
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
|
||||
<value>6, 13</value>
|
||||
</data>
|
||||
@ -325,18 +328,15 @@
|
||||
AADAAQAA4AAAAPAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPwBAAD+AwAA
|
||||
</value>
|
||||
</data>
|
||||
<data name="tsbtnRefresh.Text" xml:space="preserve">
|
||||
<value>Starte Suche</value>
|
||||
</data>
|
||||
<data name="rbSearchRecord.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>183, 17</value>
|
||||
</data>
|
||||
<data name=">>SplitContainerMain.Parent" xml:space="preserve">
|
||||
<value>$this</value>
|
||||
</data>
|
||||
<data name="Label2.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
</data>
|
||||
<data name=">>ToolStripButton2.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>GridViewFiles.Name" xml:space="preserve">
|
||||
<value>GridViewFiles</value>
|
||||
</data>
|
||||
@ -349,36 +349,39 @@
|
||||
<data name="rbSearchFulltext.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="SplitContainerMain.Panel1.Text" xml:space="preserve">
|
||||
<value>Panel1</value>
|
||||
</data>
|
||||
<data name="GridControlRecords.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Fill</value>
|
||||
</data>
|
||||
<data name="Panel1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Top</value>
|
||||
</data>
|
||||
<data name="tsbtnviewDetail.Text" xml:space="preserve">
|
||||
<value>Detailansicht</value>
|
||||
</data>
|
||||
<data name="GridControlRecords.EmbeddedNavigator.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Left</value>
|
||||
</data>
|
||||
<data name="GridControlFiles.EmbeddedNavigator.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||
<value>Inherit</value>
|
||||
</data>
|
||||
<data name="GridControlFiles.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>0, 25</value>
|
||||
</data>
|
||||
<assembly alias="DevExpress.Data.v15.2" name="DevExpress.Data.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||
<data name="GridControlRecords.EmbeddedNavigator.AllowHtmlTextInToolTip" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
</data>
|
||||
<data name="GroupBox1.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>765, 78</value>
|
||||
</data>
|
||||
<data name="ToolStripMain.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>1426, 25</value>
|
||||
</data>
|
||||
<data name="GridViewRecords.Appearance.EvenRow.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name=">>txtSearch.ZOrder" xml:space="preserve">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="rbSearchCombined.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>405, 17</value>
|
||||
<data name=">>tslblDocView.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>rbSearchCombined.ZOrder" xml:space="preserve">
|
||||
<value>2</value>
|
||||
@ -389,17 +392,14 @@
|
||||
<data name=">>ToolStripMain.Parent" xml:space="preserve">
|
||||
<value>Panel1</value>
|
||||
</data>
|
||||
<data name=">>ShowRecordToolStripMenuItem.Name" xml:space="preserve">
|
||||
<value>ShowRecordToolStripMenuItem</value>
|
||||
</data>
|
||||
<data name="rbSearchCombined.Text" xml:space="preserve">
|
||||
<value>Kombinierte Suche (ADDI-Datensätzen und Dateien - wenn Volltext vorhanden)</value>
|
||||
</data>
|
||||
<data name=">>rbSearchRecord.Parent" xml:space="preserve">
|
||||
<value>GroupBox1</value>
|
||||
</data>
|
||||
<data name=">>cmsRecords.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<data name="GroupBox1.Text" xml:space="preserve">
|
||||
<value>Bitte definieren Sie eine Suchvariante:</value>
|
||||
</data>
|
||||
<data name="rbSearchRecord.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>1</value>
|
||||
@ -462,17 +462,11 @@
|
||||
<data name="GridControlRecords.EmbeddedNavigator.TextLocation" type="DevExpress.XtraEditors.NavigatorButtonsTextLocation, DevExpress.XtraEditors.v15.2">
|
||||
<value>Center</value>
|
||||
</data>
|
||||
<data name="Label3.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>38, 13</value>
|
||||
</data>
|
||||
<data name=">>tsbtnviewDetail.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="GridControlFiles.EmbeddedNavigator.AccessibleName" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name=">>GridControlFiles.Type" xml:space="preserve">
|
||||
<value>DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||
<data name="rbSearchRecord.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
</data>
|
||||
<data name="GridViewFiles.Appearance.EvenRow.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
@ -480,27 +474,27 @@
|
||||
<data name="ToolStripDokumente.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name="ToolStripButton2.ImageTransparentColor" type="System.Drawing.Color, System.Drawing">
|
||||
<value>Magenta</value>
|
||||
</data>
|
||||
<data name=">>ToolStripDokumente.ZOrder" xml:space="preserve">
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="ToolStripButton1.Text" xml:space="preserve">
|
||||
<value>Export</value>
|
||||
</data>
|
||||
<data name=">>Label3.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="ToolStripButton2.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>63, 22</value>
|
||||
</data>
|
||||
<data name="GridControlFiles.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Fill</value>
|
||||
</data>
|
||||
<data name=">>GroupBox1.Parent" xml:space="preserve">
|
||||
<value>Panel1</value>
|
||||
</data>
|
||||
<data name=">>Label3.ZOrder" xml:space="preserve">
|
||||
<value>5</value>
|
||||
</data>
|
||||
<data name=">>Label2.Name" xml:space="preserve">
|
||||
<value>Label2</value>
|
||||
</data>
|
||||
<data name="ExportExcelToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>143, 22</value>
|
||||
</data>
|
||||
<data name="rbSearchCombined.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
</data>
|
||||
@ -510,12 +504,18 @@
|
||||
<data name=">>ToolStripButton1.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>txtSearch.Name" xml:space="preserve">
|
||||
<value>txtSearch</value>
|
||||
<data name=">>ToolStripDokumente.Name" xml:space="preserve">
|
||||
<value>ToolStripDokumente</value>
|
||||
</data>
|
||||
<data name="ToolStripRecords.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<data name=">>rbSearchFulltext.Parent" xml:space="preserve">
|
||||
<value>GroupBox1</value>
|
||||
</data>
|
||||
<data name="GridControlFiles.EmbeddedNavigator.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
|
||||
<value>Tile</value>
|
||||
</data>
|
||||
<data name="tslblRecordsResult.Text" xml:space="preserve">
|
||||
<value>0 Records found</value>
|
||||
</data>
|
||||
@ -525,9 +525,6 @@
|
||||
<data name="GridControlFiles.EmbeddedNavigator.ToolTip" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name="Label1.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 8.25pt, style=Italic</value>
|
||||
</data>
|
||||
<data name="GridControlRecords.EmbeddedNavigator.BackgroundImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
@ -564,6 +561,9 @@
|
||||
<data name="Label2.Text" xml:space="preserve">
|
||||
<value>Suchbegriff:</value>
|
||||
</data>
|
||||
<data name="GridControlRecords.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name=">>GroupBox1.ZOrder" xml:space="preserve">
|
||||
<value>2</value>
|
||||
</data>
|
||||
@ -573,18 +573,12 @@
|
||||
<data name="SplitContainerMain.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Fill</value>
|
||||
</data>
|
||||
<data name="ExportExcelToolStripMenuItem.Text" xml:space="preserve">
|
||||
<value>Export Excel</value>
|
||||
</data>
|
||||
<data name="Label2.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>15, 31</value>
|
||||
</data>
|
||||
<data name="ToolStripButton2.Text" xml:space="preserve">
|
||||
<value>Export</value>
|
||||
</data>
|
||||
<data name="txtSearch.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>501, 21</value>
|
||||
</data>
|
||||
<data name="rbSearchCombined.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>12, 20</value>
|
||||
</data>
|
||||
@ -595,10 +589,7 @@
|
||||
<value>504, 13</value>
|
||||
</data>
|
||||
<data name=">>$this.Name" xml:space="preserve">
|
||||
<value>frmSearchAllOVer</value>
|
||||
</data>
|
||||
<data name="SplitContainerMain.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>0, 117</value>
|
||||
<value>frmGlobalSearch</value>
|
||||
</data>
|
||||
<data name=">>tsbtnRefresh.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
@ -606,6 +597,9 @@
|
||||
<data name="GridControlRecords.EmbeddedNavigator.AccessibleDescription" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name=">>$this.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="tslblDocView.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI, 8.25pt, style=Bold, Italic</value>
|
||||
</data>
|
||||
@ -615,8 +609,8 @@
|
||||
<data name="Label1.Text" xml:space="preserve">
|
||||
<value>In diesem Formular können Sie systemweit (in Sichten und/oder Dateien) nach Volltextbegriffen suchen.</value>
|
||||
</data>
|
||||
<data name="ToolStripMain.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>1426, 25</value>
|
||||
<data name=">>ShowRecordToolStripMenuItem.Name" xml:space="preserve">
|
||||
<value>ShowRecordToolStripMenuItem</value>
|
||||
</data>
|
||||
<data name="rbSearchRecord.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>423, 20</value>
|
||||
@ -624,11 +618,11 @@
|
||||
<data name="GridControlFiles.EmbeddedNavigator.ToolTipTitle" xml:space="preserve">
|
||||
<value />
|
||||
</data>
|
||||
<data name=">>$this.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<data name=">>SplitContainerMain.Parent" xml:space="preserve">
|
||||
<value>$this</value>
|
||||
</data>
|
||||
<data name=">>ToolStripMain.Name" xml:space="preserve">
|
||||
<value>ToolStripMain</value>
|
||||
<data name=">>GridControlFiles.Type" xml:space="preserve">
|
||||
<value>DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||
</data>
|
||||
<data name="SplitContainerMain.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>1426, 430</value>
|
||||
@ -636,6 +630,9 @@
|
||||
<data name=">>ToolStripMain.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="Panel1.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>7</value>
|
||||
</data>
|
||||
<assembly alias="DevExpress.Utils.v15.2" name="DevExpress.Utils.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||
<data name="GridControlRecords.EmbeddedNavigator.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
@ -643,20 +640,20 @@
|
||||
<data name=">>ExportExcelToolStripMenuItem.Name" xml:space="preserve">
|
||||
<value>ExportExcelToolStripMenuItem</value>
|
||||
</data>
|
||||
<data name="GridViewFiles.Appearance.EvenRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="GroupBox1.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>538, 31</value>
|
||||
</data>
|
||||
<data name="ToolStripMain.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>0, 92</value>
|
||||
</data>
|
||||
<data name=">>txtSearch.Parent" xml:space="preserve">
|
||||
<value>Panel1</value>
|
||||
</data>
|
||||
<data name=">>Label1.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="Panel1.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>7</value>
|
||||
<data name="ToolStripMain.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>0, 92</value>
|
||||
</data>
|
||||
<data name=">>ToolStripRecords.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
@ -667,29 +664,32 @@
|
||||
<data name=">>Label2.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>Label3.ZOrder" xml:space="preserve">
|
||||
<value>5</value>
|
||||
</data>
|
||||
<data name=">>tslblRecordsResult.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="Label3.Text" xml:space="preserve">
|
||||
<value>Label3</value>
|
||||
<data name="ToolStripButton2.ImageTransparentColor" type="System.Drawing.Color, System.Drawing">
|
||||
<value>Magenta</value>
|
||||
</data>
|
||||
<data name=">>rbSearchFulltext.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="Label1.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 8.25pt, style=Italic</value>
|
||||
</data>
|
||||
<data name="Label3.Text" xml:space="preserve">
|
||||
<value>Label3</value>
|
||||
</data>
|
||||
<data name=">>ToolStripMain.ZOrder" xml:space="preserve">
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name=">>ToolStripButton1.Name" xml:space="preserve">
|
||||
<value>ToolStripButton1</value>
|
||||
</data>
|
||||
<data name="txtSearch.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>15, 50</value>
|
||||
</data>
|
||||
<data name="GridControlFiles.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Fill</value>
|
||||
<data name=">>ToolStripButton2.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="GridControlRecords.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="Label1.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
<data name="tsbtnRefresh.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>92, 22</value>
|
||||
</data>
|
||||
<data name="GridControlFiles.EmbeddedNavigator.AllowHtmlTextInToolTip" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v15.2">
|
||||
<value>Default</value>
|
||||
@ -700,8 +700,8 @@
|
||||
<data name="GridControlRecords.EmbeddedNavigator.MaximumSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<data name="tslblDocView.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>126, 22</value>
|
||||
<data name="SplitContainerMain.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>0, 117</value>
|
||||
</data>
|
||||
<data name=">>GridControlRecords.Type" xml:space="preserve">
|
||||
<value>DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||
@ -709,8 +709,11 @@
|
||||
<data name="SplitContainerMain.Text" xml:space="preserve">
|
||||
<value>SplitContainerControl1</value>
|
||||
</data>
|
||||
<data name="ShowRecordToolStripMenuItem.Text" xml:space="preserve">
|
||||
<value>Show Record</value>
|
||||
<data name="GridControlFiles.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>0, 25</value>
|
||||
</data>
|
||||
<data name="rbSearchFulltext.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
</data>
|
||||
<data name=">>GridControlFiles.Parent" xml:space="preserve">
|
||||
<value>SplitContainerMain.Panel2</value>
|
||||
@ -721,14 +724,14 @@
|
||||
<data name="tsbtnviewDetail.ImageTransparentColor" type="System.Drawing.Color, System.Drawing">
|
||||
<value>Magenta</value>
|
||||
</data>
|
||||
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>1426, 547</value>
|
||||
<data name="ExportExcelToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>143, 22</value>
|
||||
</data>
|
||||
<data name="ToolStripMain.Text" xml:space="preserve">
|
||||
<value>ToolStrip1</value>
|
||||
</data>
|
||||
<data name=">>tslblDocView.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<data name="ExportExcelToolStripMenuItem.Text" xml:space="preserve">
|
||||
<value>Export Excel</value>
|
||||
</data>
|
||||
<data name="ToolStripDokumente.Text" xml:space="preserve">
|
||||
<value>ToolStrip2</value>
|
||||
@ -736,23 +739,20 @@
|
||||
<data name="Panel1.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<data name="GroupBox1.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>765, 78</value>
|
||||
<data name=">>rbSearchFulltext.Name" xml:space="preserve">
|
||||
<value>rbSearchFulltext</value>
|
||||
</data>
|
||||
<data name=">>ToolStripDokumente.Parent" xml:space="preserve">
|
||||
<value>SplitContainerMain.Panel2</value>
|
||||
</data>
|
||||
<data name="rbSearchRecord.Text" xml:space="preserve">
|
||||
<value>Nur in ADDI-Datensätzen suchen</value>
|
||||
<data name=">>txtSearch.Name" xml:space="preserve">
|
||||
<value>txtSearch</value>
|
||||
</data>
|
||||
<data name="ToolStripButton2.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>63, 22</value>
|
||||
<data name="ToolStripButton1.Text" xml:space="preserve">
|
||||
<value>Export</value>
|
||||
</data>
|
||||
<data name="tsbtnRefresh.Text" xml:space="preserve">
|
||||
<value>Starte Suche</value>
|
||||
</data>
|
||||
<data name=">>rbSearchFulltext.Parent" xml:space="preserve">
|
||||
<value>GroupBox1</value>
|
||||
<data name="Label3.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>38, 13</value>
|
||||
</data>
|
||||
<data name="ToolStripDokumente.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>670, 25</value>
|
||||
@ -760,17 +760,17 @@
|
||||
<data name=">>rbSearchCombined.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>ToolStripDokumente.Name" xml:space="preserve">
|
||||
<value>ToolStripDokumente</value>
|
||||
<data name="rbSearchCombined.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>405, 17</value>
|
||||
</data>
|
||||
<data name="GridControlFiles.EmbeddedNavigator.TextLocation" type="DevExpress.XtraEditors.NavigatorButtonsTextLocation, DevExpress.XtraEditors.v15.2">
|
||||
<value>Center</value>
|
||||
</data>
|
||||
<data name="cmsRecords.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>144, 48</value>
|
||||
<data name="rbSearchRecord.Text" xml:space="preserve">
|
||||
<value>Nur in ADDI-Datensätzen suchen</value>
|
||||
</data>
|
||||
<data name="tsbtnviewDetail.Text" xml:space="preserve">
|
||||
<value>Detailansicht</value>
|
||||
<data name=">>ToolStripRecords.Parent" xml:space="preserve">
|
||||
<value>SplitContainerMain.Panel1</value>
|
||||
</data>
|
||||
<data name="GridViewRecords.Appearance.EvenRow.BackColor" type="System.Drawing.Color, System.Drawing">
|
||||
<value>Aqua</value>
|
||||
@ -778,26 +778,26 @@
|
||||
<data name="ToolStripRecords.Text" xml:space="preserve">
|
||||
<value>ToolStrip2</value>
|
||||
</data>
|
||||
<data name=">>ToolStripButton1.Name" xml:space="preserve">
|
||||
<value>ToolStripButton1</value>
|
||||
<data name="SplitContainerMain.Panel1.Text" xml:space="preserve">
|
||||
<value>Panel1</value>
|
||||
</data>
|
||||
<data name="ToolStripRecords.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="tsbtnviewDetail.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>95, 22</value>
|
||||
<data name="txtSearch.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>501, 21</value>
|
||||
</data>
|
||||
<data name=">>GridControlRecords.Parent" xml:space="preserve">
|
||||
<value>SplitContainerMain.Panel1</value>
|
||||
</data>
|
||||
<data name="GridViewFiles.Appearance.EvenRow.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<data name="GridControlFiles.EmbeddedNavigator.AccessibleName" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="rbSearchRecord.AutoSize" type="System.Boolean, mscorlib">
|
||||
<data name="Label1.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
</data>
|
||||
<data name="GridControlFiles.EmbeddedNavigator.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
|
||||
<value>Tile</value>
|
||||
<data name="tslblDocView.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>126, 22</value>
|
||||
</data>
|
||||
<data name="SplitContainerMain.Panel2.Text" xml:space="preserve">
|
||||
<value>Panel2</value>
|
||||
@ -808,14 +808,14 @@
|
||||
<data name="GridControlFiles.EmbeddedNavigator.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v15.2">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="GroupBox1.Text" xml:space="preserve">
|
||||
<value>Bitte definieren Sie eine Suchvariante:</value>
|
||||
<data name=">>cmsRecords.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>SplitContainerMain.ZOrder" xml:space="preserve">
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="rbSearchFulltext.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
<data name="Label3.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name=">>GridViewFiles.Type" xml:space="preserve">
|
||||
<value>DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.2, Version=15.2.9.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||
@ -844,7 +844,4 @@
|
||||
<metadata name="ToolStripDokumente.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>289, 17</value>
|
||||
</metadata>
|
||||
<metadata name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>en-US</value>
|
||||
</metadata>
|
||||
</root>
|
||||
101
app/DD-Record-Organiser/frmGoogle.Designer.vb
generated
101
app/DD-Record-Organiser/frmGoogle.Designer.vb
generated
@ -1,101 +0,0 @@
|
||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||
Partial Class frmGoogle
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
|
||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
Try
|
||||
If disposing AndAlso components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
Finally
|
||||
MyBase.Dispose(disposing)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'Wird vom Windows Form-Designer benötigt.
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
|
||||
'Das Bearbeiten ist mit dem Windows Form-Designer möglich.
|
||||
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
|
||||
<System.Diagnostics.DebuggerStepThrough()> _
|
||||
Private Sub InitializeComponent()
|
||||
Me.components = New System.ComponentModel.Container()
|
||||
Dim ImageTilesLayer1 As DevExpress.XtraMap.ImageTilesLayer = New DevExpress.XtraMap.ImageTilesLayer()
|
||||
Dim BingMapDataProvider1 As DevExpress.XtraMap.BingMapDataProvider = New DevExpress.XtraMap.BingMapDataProvider()
|
||||
Dim InformationLayer1 As DevExpress.XtraMap.InformationLayer = New DevExpress.XtraMap.InformationLayer()
|
||||
Dim BingSearchDataProvider1 As DevExpress.XtraMap.BingSearchDataProvider = New DevExpress.XtraMap.BingSearchDataProvider()
|
||||
Dim VectorItemsLayer1 As DevExpress.XtraMap.VectorItemsLayer = New DevExpress.XtraMap.VectorItemsLayer()
|
||||
Dim MapItemStorage1 As DevExpress.XtraMap.MapItemStorage = New DevExpress.XtraMap.MapItemStorage()
|
||||
Me.ContextMenuStrip1 = New System.Windows.Forms.ContextMenuStrip(Me.components)
|
||||
Me.MapControl1 = New DevExpress.XtraMap.MapControl()
|
||||
Me.ToolTipController1 = New DevExpress.Utils.ToolTipController(Me.components)
|
||||
Me.ListBox1 = New System.Windows.Forms.ListBox()
|
||||
CType(Me.MapControl1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'ContextMenuStrip1
|
||||
'
|
||||
Me.ContextMenuStrip1.Name = "ContextMenuStrip1"
|
||||
Me.ContextMenuStrip1.Size = New System.Drawing.Size(61, 4)
|
||||
'
|
||||
'MapControl1
|
||||
'
|
||||
Me.MapControl1.CenterPoint = New DevExpress.XtraMap.GeoPoint(50.7R, 8.6R)
|
||||
BingMapDataProvider1.BingKey = "hQUTlqLLK70bETnonpfi~0jx1pIAq1yQ7gXqbIyzKrg~Au-Tewbty8afAxdbNilSv4JlU7qwU-fQKu0ou" & _
|
||||
"H9e1uJmpIyVdA3jugVEWMdy1Rbt"
|
||||
BingMapDataProvider1.Kind = DevExpress.XtraMap.BingMapKind.Road
|
||||
BingMapDataProvider1.TileSource = Nothing
|
||||
ImageTilesLayer1.DataProvider = BingMapDataProvider1
|
||||
ImageTilesLayer1.Name = "ImageLayer"
|
||||
BingSearchDataProvider1.BingKey = "hQUTlqLLK70bETnonpfi~0jx1pIAq1yQ7gXqbIyzKrg~Au-Tewbty8afAxdbNilSv4JlU7qwU-fQKu0ou" & _
|
||||
"H9e1uJmpIyVdA3jugVEWMdy1Rbt"
|
||||
InformationLayer1.DataProvider = BingSearchDataProvider1
|
||||
InformationLayer1.Name = "SearchLayer"
|
||||
VectorItemsLayer1.Data = MapItemStorage1
|
||||
VectorItemsLayer1.Name = "VectorLayer"
|
||||
Me.MapControl1.Layers.Add(ImageTilesLayer1)
|
||||
Me.MapControl1.Layers.Add(InformationLayer1)
|
||||
Me.MapControl1.Layers.Add(VectorItemsLayer1)
|
||||
Me.MapControl1.Location = New System.Drawing.Point(200, 2)
|
||||
Me.MapControl1.Name = "MapControl1"
|
||||
Me.MapControl1.Size = New System.Drawing.Size(1188, 485)
|
||||
Me.MapControl1.TabIndex = 6
|
||||
Me.MapControl1.ToolTipController = Me.ToolTipController1
|
||||
Me.MapControl1.ZoomLevel = 10.0R
|
||||
'
|
||||
'ToolTipController1
|
||||
'
|
||||
Me.ToolTipController1.Rounded = True
|
||||
Me.ToolTipController1.ToolTipStyle = DevExpress.Utils.ToolTipStyle.WindowsXP
|
||||
Me.ToolTipController1.ToolTipType = DevExpress.Utils.ToolTipType.SuperTip
|
||||
'
|
||||
'ListBox1
|
||||
'
|
||||
Me.ListBox1.FormattingEnabled = True
|
||||
Me.ListBox1.Location = New System.Drawing.Point(3, 2)
|
||||
Me.ListBox1.Name = "ListBox1"
|
||||
Me.ListBox1.Size = New System.Drawing.Size(191, 485)
|
||||
Me.ListBox1.TabIndex = 7
|
||||
'
|
||||
'frmGoogle
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(1390, 490)
|
||||
Me.Controls.Add(Me.ListBox1)
|
||||
Me.Controls.Add(Me.MapControl1)
|
||||
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.Name = "frmGoogle"
|
||||
Me.Text = "frmGoogle"
|
||||
CType(Me.MapControl1, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.ResumeLayout(False)
|
||||
|
||||
End Sub
|
||||
Friend WithEvents ContextMenuStrip1 As System.Windows.Forms.ContextMenuStrip
|
||||
Friend WithEvents MapControl1 As DevExpress.XtraMap.MapControl
|
||||
Friend WithEvents ListBox1 As System.Windows.Forms.ListBox
|
||||
Friend WithEvents ToolTipController1 As DevExpress.Utils.ToolTipController
|
||||
End Class
|
||||
@ -1,126 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="ContextMenuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="ToolTipController1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>174, 17</value>
|
||||
</metadata>
|
||||
</root>
|
||||
@ -1,120 +0,0 @@
|
||||
Imports System.Web
|
||||
Imports System.Text
|
||||
Imports DevExpress.XtraMap
|
||||
Imports DevExpress.Map
|
||||
|
||||
Public Class frmGoogle
|
||||
|
||||
Public Sub New()
|
||||
InitializeComponent()
|
||||
|
||||
mapControl1.SetMapItemFactory(New MapItemFactory())
|
||||
End Sub
|
||||
|
||||
'##################### SEARCH ##############################
|
||||
'Private ReadOnly Property SearchLayer() As InformationLayer
|
||||
' Get
|
||||
' Return CType(MapControl1.Layers("SearchLayer"), InformationLayer)
|
||||
' End Get
|
||||
'End Property
|
||||
|
||||
|
||||
'Private ReadOnly Property SearchProvider() As BingSearchDataProvider
|
||||
' Get
|
||||
' Return CType(SearchLayer.DataProvider, BingSearchDataProvider)
|
||||
' End Get
|
||||
'End Property
|
||||
|
||||
'##################### VECTOR ##############################
|
||||
Private ReadOnly Property VectorLayer() As VectorItemsLayer
|
||||
Get
|
||||
Return CType(MapControl1.Layers("VectorLayer"), VectorItemsLayer)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'Private Property ItemStorage() As MapItemStorage
|
||||
' Get
|
||||
' Return CType(VectorLayer.Data, MapItemStorage)
|
||||
' End Get
|
||||
'End Property
|
||||
|
||||
|
||||
Private Sub frmGoogle_Load(sender As Object, e As EventArgs) Handles Me.Load
|
||||
|
||||
Dim items As New List(Of MapPushpin)
|
||||
|
||||
MapControl1.ShowToolTips = True
|
||||
MapControl1.SetMapItemFactory(New MapItemFactory())
|
||||
|
||||
'Records holen
|
||||
Dim dt As DataTable = ClassDatabase.Return_Datatable("SELECT TOP 10 * FROM VWTEMP_PMO_FORM19")
|
||||
|
||||
Dim lat As Double = 50.6
|
||||
Dim lon As Double = 8.6
|
||||
|
||||
' Pins erstellen
|
||||
For Each row As DataRow In dt.Rows
|
||||
|
||||
' TODO: How to change PushPin Appearance when selected?
|
||||
' TODO: Make Pretty Permanent Tooltip like google maps?
|
||||
|
||||
' MapItemFactory
|
||||
' https://documentation.devexpress.com/#WindowsForms/DevExpressXtraMapMapControl_SetMapItemFactorytopic
|
||||
|
||||
Dim pushpin As New MapPushpin()
|
||||
pushpin.Location = New GeoPoint(lat, lon)
|
||||
pushpin.Text = row.Item("Record-ID")
|
||||
pushpin.Information = row
|
||||
pushpin.TextColor = Color.Aqua
|
||||
|
||||
pushpin.Attributes.Add(New MapItemAttribute() With {.Name = "SNumber", .Type = GetType(String), .Value = row.Item("Supplier_number")})
|
||||
pushpin.Attributes.Add(New MapItemAttribute() With {.Name = "SName", .Type = GetType(String), .Value = row.Item("Supplier_name")})
|
||||
|
||||
pushpin.ToolTipPattern = "Supplier Name: {SName} - Supplier Number: {SNumber}"
|
||||
|
||||
items.Add(pushpin)
|
||||
|
||||
lat += 0.01
|
||||
lon += 0.01
|
||||
Next
|
||||
|
||||
Dim storage As New MapItemStorage()
|
||||
Dim itemArray() As MapPushpin = items.ToArray()
|
||||
|
||||
storage.Items.AddRange(itemArray)
|
||||
VectorLayer.Data = storage
|
||||
|
||||
End Sub
|
||||
Private Sub MapControl1_MapItemClick(sender As Object, e As MapItemClickEventArgs) Handles MapControl1.MapItemClick
|
||||
Try
|
||||
Dim item As MapPushpin = e.Item
|
||||
Dim row As DataRow = item.Information
|
||||
Dim attrs As MapItemAttributeCollection = item.Attributes
|
||||
ListBox1.Items.Clear()
|
||||
ListBox1.Items.Add(row.Item("Supplier_number"))
|
||||
ListBox1.Items.Add(row.Item("Supplier_name"))
|
||||
ListBox1.Items.Add(row.Item("MP_Number"))
|
||||
Catch ex As Exception
|
||||
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
Private Sub MapControl1_DrawMapItem(sender As Object, e As DrawMapItemEventArgs) Handles MapControl1.DrawMapItem
|
||||
Dim colorOuter As Color = Color.Green
|
||||
Dim colorInner As Color = Color.Green
|
||||
Dim colorInnerHighlight As Color = Color.Red
|
||||
e.Fill = Color.Red
|
||||
End Sub
|
||||
|
||||
Public Class MapItemFactory
|
||||
Inherits DefaultMapItemFactory
|
||||
Protected Overrides Sub InitializeItem(ByVal item As MapItem, ByVal obj As Object)
|
||||
MyBase.InitializeItem(item, obj)
|
||||
Dim rect As MapRectangle = TryCast(item, MapRectangle)
|
||||
If rect IsNot Nothing Then
|
||||
rect.Width = 1000
|
||||
rect.Height = 1000
|
||||
End If
|
||||
End Sub
|
||||
End Class
|
||||
End Class
|
||||
52
app/DD-Record-Organiser/frmMain.Designer.vb
generated
52
app/DD-Record-Organiser/frmMain.Designer.vb
generated
@ -71,7 +71,6 @@ Partial Class frmMain
|
||||
Me.BarButtonItem23 = New DevExpress.XtraBars.BarButtonItem()
|
||||
Me.btnGlobalSearch = New DevExpress.XtraBars.BarButtonItem()
|
||||
Me.LabelUser = New DevExpress.XtraBars.BarButtonItem()
|
||||
Me.BarButtonItem24 = New DevExpress.XtraBars.BarButtonItem()
|
||||
Me.bbtnItemViewsUser = New DevExpress.XtraBars.BarButtonItem()
|
||||
Me.RibbonPageCategory1 = New DevExpress.XtraBars.Ribbon.RibbonPageCategory()
|
||||
Me.pageHome = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
||||
@ -80,7 +79,6 @@ Partial Class frmMain
|
||||
Me.groupSearchAllOver = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||
Me.pageForms = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
||||
Me.groupQuickAccessForm2 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||
Me.RibbonPageGroup4 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||
Me.pageAdmin = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
||||
Me.RibbonPageGroupProgram = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||
Me.RibbonPageGroupTask = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||
@ -102,26 +100,26 @@ Partial Class frmMain
|
||||
'NotifyIcon
|
||||
'
|
||||
Me.NotifyIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info
|
||||
Me.NotifyIcon.ContextMenuStrip = Me.cmsSystray
|
||||
resources.ApplyResources(Me.NotifyIcon, "NotifyIcon")
|
||||
Me.NotifyIcon.ContextMenuStrip = Me.cmsSystray
|
||||
'
|
||||
'cmsSystray
|
||||
'
|
||||
resources.ApplyResources(Me.cmsSystray, "cmsSystray")
|
||||
Me.cmsSystray.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ADDIBeendenToolStripMenuItem, Me.CockpitAnzeigenToolStripMenuItem})
|
||||
Me.cmsSystray.Name = "cmsSystray"
|
||||
resources.ApplyResources(Me.cmsSystray, "cmsSystray")
|
||||
'
|
||||
'ADDIBeendenToolStripMenuItem
|
||||
'
|
||||
resources.ApplyResources(Me.ADDIBeendenToolStripMenuItem, "ADDIBeendenToolStripMenuItem")
|
||||
Me.ADDIBeendenToolStripMenuItem.Image = Global.DD_Record_Organiser.My.Resources.Resources.cancel1
|
||||
Me.ADDIBeendenToolStripMenuItem.Name = "ADDIBeendenToolStripMenuItem"
|
||||
resources.ApplyResources(Me.ADDIBeendenToolStripMenuItem, "ADDIBeendenToolStripMenuItem")
|
||||
'
|
||||
'CockpitAnzeigenToolStripMenuItem
|
||||
'
|
||||
resources.ApplyResources(Me.CockpitAnzeigenToolStripMenuItem, "CockpitAnzeigenToolStripMenuItem")
|
||||
Me.CockpitAnzeigenToolStripMenuItem.Image = Global.DD_Record_Organiser.My.Resources.Resources.WebUserControl_ascx__11270_16x
|
||||
Me.CockpitAnzeigenToolStripMenuItem.Name = "CockpitAnzeigenToolStripMenuItem"
|
||||
resources.ApplyResources(Me.CockpitAnzeigenToolStripMenuItem, "CockpitAnzeigenToolStripMenuItem")
|
||||
'
|
||||
'TimerTasks
|
||||
'
|
||||
@ -185,11 +183,11 @@ Partial Class frmMain
|
||||
'
|
||||
'ribbonMain
|
||||
'
|
||||
resources.ApplyResources(Me.ribbonMain, "ribbonMain")
|
||||
Me.ribbonMain.ApplicationButtonDropDownControl = Me.MainMenu
|
||||
Me.ribbonMain.BackColor = System.Drawing.Color.DarkGray
|
||||
Me.ribbonMain.ExpandCollapseItem.Id = 0
|
||||
Me.ribbonMain.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.ribbonMain.ExpandCollapseItem, Me.LabelMachine, Me.LabelLoggedIn, Me.LabelVersion, Me.itemInfo, Me.itemExit, Me.BarButtonItem1, Me.BarButtonItem3, Me.BarButtonItem4, Me.BarButtonItem5, Me.BarButtonItem6, Me.BarButtonItem7, Me.itemSettings, Me.BarButtonItem2, Me.BarButtonItem10, Me.BarButtonItem12, Me.BarButtonItem13, Me.BarButtonItemConnections, Me.BarButtonItem15, Me.BarButtonItem16, Me.BarButtonItem17, Me.BarButtonItem18, Me.LabelLanguage, Me.BarButtonItem20, Me.BarButtonItemSAPConnect, Me.BarButtonItemStructureNOdes, Me.BarSubItem1, Me.BarButtonItem14, Me.BarButtonItem21, Me.BarButtonItem22, Me.BarButtonItem8, Me.BarButtonItem9, Me.itemAbout, Me.BarButtonItem19, Me.btnGlobalSearch, Me.LabelUser, Me.BarButtonItem24, Me.bbtnItemViewsUser, Me.BarButtonItem23})
|
||||
resources.ApplyResources(Me.ribbonMain, "ribbonMain")
|
||||
Me.ribbonMain.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.ribbonMain.ExpandCollapseItem, Me.LabelMachine, Me.LabelLoggedIn, Me.LabelVersion, Me.itemInfo, Me.itemExit, Me.BarButtonItem1, Me.BarButtonItem3, Me.BarButtonItem4, Me.BarButtonItem5, Me.BarButtonItem6, Me.BarButtonItem7, Me.itemSettings, Me.BarButtonItem2, Me.BarButtonItem10, Me.BarButtonItem12, Me.BarButtonItem13, Me.BarButtonItemConnections, Me.BarButtonItem15, Me.BarButtonItem16, Me.BarButtonItem17, Me.BarButtonItem18, Me.LabelLanguage, Me.BarButtonItem20, Me.BarButtonItemSAPConnect, Me.BarButtonItemStructureNOdes, Me.BarSubItem1, Me.BarButtonItem14, Me.BarButtonItem21, Me.BarButtonItem22, Me.BarButtonItem8, Me.BarButtonItem9, Me.itemAbout, Me.BarButtonItem19, Me.btnGlobalSearch, Me.LabelUser, Me.bbtnItemViewsUser, Me.BarButtonItem23})
|
||||
Me.ribbonMain.MaxItemId = 10
|
||||
Me.ribbonMain.Name = "ribbonMain"
|
||||
Me.ribbonMain.PageCategories.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageCategory() {Me.RibbonPageCategory1})
|
||||
@ -205,6 +203,10 @@ Partial Class frmMain
|
||||
Me.MainMenu.ItemLinks.Add(Me.itemAbout)
|
||||
Me.MainMenu.ItemLinks.Add(Me.BarButtonItem19)
|
||||
Me.MainMenu.ItemLinks.Add(Me.itemExit)
|
||||
Me.MainMenu.MenuAppearance.HeaderItemAppearance.FontSizeDelta = CType(resources.GetObject("MainMenu.MenuAppearance.HeaderItemAppearance.FontSizeDelta"), Integer)
|
||||
Me.MainMenu.MenuAppearance.HeaderItemAppearance.FontStyleDelta = CType(resources.GetObject("MainMenu.MenuAppearance.HeaderItemAppearance.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.MainMenu.MenuAppearance.HeaderItemAppearance.GradientMode = CType(resources.GetObject("MainMenu.MenuAppearance.HeaderItemAppearance.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.MainMenu.MenuAppearance.HeaderItemAppearance.Image = CType(resources.GetObject("MainMenu.MenuAppearance.HeaderItemAppearance.Image"), System.Drawing.Image)
|
||||
Me.MainMenu.Name = "MainMenu"
|
||||
Me.MainMenu.Ribbon = Me.ribbonMain
|
||||
'
|
||||
@ -422,6 +424,10 @@ Partial Class frmMain
|
||||
resources.ApplyResources(Me.BarSubItem1, "BarSubItem1")
|
||||
Me.BarSubItem1.Id = 38
|
||||
Me.BarSubItem1.LinksPersistInfo.AddRange(New DevExpress.XtraBars.LinkPersistInfo() {New DevExpress.XtraBars.LinkPersistInfo(Me.BarButtonItem14), New DevExpress.XtraBars.LinkPersistInfo(Me.BarButtonItem21), New DevExpress.XtraBars.LinkPersistInfo(Me.BarButtonItem22), New DevExpress.XtraBars.LinkPersistInfo(Me.BarButtonItem8), New DevExpress.XtraBars.LinkPersistInfo(Me.BarButtonItem9), New DevExpress.XtraBars.LinkPersistInfo(Me.BarButtonItem23)})
|
||||
Me.BarSubItem1.MenuAppearance.HeaderItemAppearance.FontSizeDelta = CType(resources.GetObject("BarSubItem1.MenuAppearance.HeaderItemAppearance.FontSizeDelta"), Integer)
|
||||
Me.BarSubItem1.MenuAppearance.HeaderItemAppearance.FontStyleDelta = CType(resources.GetObject("BarSubItem1.MenuAppearance.HeaderItemAppearance.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.BarSubItem1.MenuAppearance.HeaderItemAppearance.GradientMode = CType(resources.GetObject("BarSubItem1.MenuAppearance.HeaderItemAppearance.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.BarSubItem1.MenuAppearance.HeaderItemAppearance.Image = CType(resources.GetObject("BarSubItem1.MenuAppearance.HeaderItemAppearance.Image"), System.Drawing.Image)
|
||||
Me.BarSubItem1.Name = "BarSubItem1"
|
||||
Me.BarSubItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large
|
||||
'
|
||||
@ -462,7 +468,9 @@ Partial Class frmMain
|
||||
'BarButtonItem23
|
||||
'
|
||||
resources.ApplyResources(Me.BarButtonItem23, "BarButtonItem23")
|
||||
Me.BarButtonItem23.Glyph = CType(resources.GetObject("BarButtonItem23.Glyph"), System.Drawing.Image)
|
||||
Me.BarButtonItem23.Id = 9
|
||||
Me.BarButtonItem23.LargeGlyph = CType(resources.GetObject("BarButtonItem23.LargeGlyph"), System.Drawing.Image)
|
||||
Me.BarButtonItem23.Name = "BarButtonItem23"
|
||||
'
|
||||
'btnGlobalSearch
|
||||
@ -481,12 +489,6 @@ Partial Class frmMain
|
||||
Me.LabelUser.Id = 4
|
||||
Me.LabelUser.Name = "LabelUser"
|
||||
'
|
||||
'BarButtonItem24
|
||||
'
|
||||
resources.ApplyResources(Me.BarButtonItem24, "BarButtonItem24")
|
||||
Me.BarButtonItem24.Id = 6
|
||||
Me.BarButtonItem24.Name = "BarButtonItem24"
|
||||
'
|
||||
'bbtnItemViewsUser
|
||||
'
|
||||
resources.ApplyResources(Me.bbtnItemViewsUser, "bbtnItemViewsUser")
|
||||
@ -532,8 +534,12 @@ Partial Class frmMain
|
||||
'pageForms
|
||||
'
|
||||
Me.pageForms.Appearance.BackColor = CType(resources.GetObject("pageForms.Appearance.BackColor"), System.Drawing.Color)
|
||||
Me.pageForms.Appearance.FontSizeDelta = CType(resources.GetObject("pageForms.Appearance.FontSizeDelta"), Integer)
|
||||
Me.pageForms.Appearance.FontStyleDelta = CType(resources.GetObject("pageForms.Appearance.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.pageForms.Appearance.GradientMode = CType(resources.GetObject("pageForms.Appearance.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.pageForms.Appearance.Image = CType(resources.GetObject("pageForms.Appearance.Image"), System.Drawing.Image)
|
||||
Me.pageForms.Appearance.Options.UseBackColor = True
|
||||
Me.pageForms.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.groupQuickAccessForm2, Me.RibbonPageGroup4})
|
||||
Me.pageForms.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.groupQuickAccessForm2})
|
||||
Me.pageForms.Image = Global.DD_Record_Organiser.My.Resources.Resources.application_form
|
||||
Me.pageForms.Name = "pageForms"
|
||||
resources.ApplyResources(Me.pageForms, "pageForms")
|
||||
@ -543,12 +549,6 @@ Partial Class frmMain
|
||||
Me.groupQuickAccessForm2.Name = "groupQuickAccessForm2"
|
||||
resources.ApplyResources(Me.groupQuickAccessForm2, "groupQuickAccessForm2")
|
||||
'
|
||||
'RibbonPageGroup4
|
||||
'
|
||||
Me.RibbonPageGroup4.ItemLinks.Add(Me.BarButtonItem24)
|
||||
Me.RibbonPageGroup4.Name = "RibbonPageGroup4"
|
||||
resources.ApplyResources(Me.RibbonPageGroup4, "RibbonPageGroup4")
|
||||
'
|
||||
'pageAdmin
|
||||
'
|
||||
Me.pageAdmin.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageGroupProgram, Me.RibbonPageGroupTask, Me.RibbonPageGroupMenue, Me.RibbonPageGroup1})
|
||||
@ -599,12 +599,12 @@ Partial Class frmMain
|
||||
'
|
||||
'RibbonStatusBar1
|
||||
'
|
||||
resources.ApplyResources(Me.RibbonStatusBar1, "RibbonStatusBar1")
|
||||
Me.RibbonStatusBar1.ItemLinks.Add(Me.LabelMachine)
|
||||
Me.RibbonStatusBar1.ItemLinks.Add(Me.LabelUser)
|
||||
Me.RibbonStatusBar1.ItemLinks.Add(Me.LabelLoggedIn)
|
||||
Me.RibbonStatusBar1.ItemLinks.Add(Me.LabelVersion)
|
||||
Me.RibbonStatusBar1.ItemLinks.Add(Me.LabelLanguage)
|
||||
resources.ApplyResources(Me.RibbonStatusBar1, "RibbonStatusBar1")
|
||||
Me.RibbonStatusBar1.Name = "RibbonStatusBar1"
|
||||
Me.RibbonStatusBar1.Ribbon = Me.ribbonMain
|
||||
'
|
||||
@ -638,10 +638,14 @@ Partial Class frmMain
|
||||
'
|
||||
'frmMain
|
||||
'
|
||||
resources.ApplyResources(Me, "$this")
|
||||
Me.Appearance.BackColor = CType(resources.GetObject("frmMain.Appearance.BackColor"), System.Drawing.Color)
|
||||
Me.Appearance.FontSizeDelta = CType(resources.GetObject("frmMain.Appearance.FontSizeDelta"), Integer)
|
||||
Me.Appearance.FontStyleDelta = CType(resources.GetObject("frmMain.Appearance.FontStyleDelta"), System.Drawing.FontStyle)
|
||||
Me.Appearance.GradientMode = CType(resources.GetObject("frmMain.Appearance.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
|
||||
Me.Appearance.Image = CType(resources.GetObject("frmMain.Appearance.Image"), System.Drawing.Image)
|
||||
Me.Appearance.Options.UseBackColor = True
|
||||
Me.Appearance.Options.UseFont = True
|
||||
resources.ApplyResources(Me, "$this")
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.Controls.Add(Me.RibbonStatusBar1)
|
||||
Me.Controls.Add(Me.ribbonMain)
|
||||
@ -724,8 +728,6 @@ Partial Class frmMain
|
||||
Friend WithEvents groupSearchAllOver As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
||||
Friend WithEvents LabelUser As DevExpress.XtraBars.BarButtonItem
|
||||
Friend WithEvents BarStaticItem1 As DevExpress.XtraBars.BarStaticItem
|
||||
Friend WithEvents BarButtonItem24 As DevExpress.XtraBars.BarButtonItem
|
||||
Friend WithEvents RibbonPageGroup4 As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
||||
Friend WithEvents bbtnItemViewsUser As DevExpress.XtraBars.BarButtonItem
|
||||
Friend WithEvents BarButtonItem23 As DevExpress.XtraBars.BarButtonItem
|
||||
|
||||
|
||||
@ -2042,18 +2042,6 @@
|
||||
8Xk3UTvF5svvqfc+/O0Ezf8BIKulH747x60AAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="BarSubItem1.MenuAppearance.HeaderItemAppearance.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="BarSubItem1.MenuAppearance.HeaderItemAppearance.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="BarSubItem1.MenuAppearance.HeaderItemAppearance.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="BarSubItem1.MenuAppearance.HeaderItemAppearance.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="BarButtonItem23.Caption" xml:space="preserve">
|
||||
<value>Global Search</value>
|
||||
</data>
|
||||
@ -2122,6 +2110,123 @@
|
||||
f9moomYYtXX3sfZtGhbYqm4GFbXD7R9v2R/z0trXPiAcGrlycqU/Y0xVJPgdAZ2EqqSJhn5qGwioI92z
|
||||
H96GlUb79Bl9R69plEs/sTcJ3iKg49AD+2P+T005EBVCV4RGRUH79NmPOi7a//rTSCnoGM/i/9QoaSk8
|
||||
qy3lS/H/Rm5QvyqWfPjLAcv+Bd859emhr0AKAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="BarSubItem1.MenuAppearance.HeaderItemAppearance.FontSizeDelta" type="System.Int32, mscorlib">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="BarSubItem1.MenuAppearance.HeaderItemAppearance.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Regular</value>
|
||||
</data>
|
||||
<data name="BarSubItem1.MenuAppearance.HeaderItemAppearance.GradientMode" type="System.Drawing.Drawing2D.LinearGradientMode, System.Drawing">
|
||||
<value>Horizontal</value>
|
||||
</data>
|
||||
<data name="BarSubItem1.MenuAppearance.HeaderItemAppearance.Image" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||
<value />
|
||||
</data>
|
||||
<data name="btnGlobalSearch.Caption" xml:space="preserve">
|
||||
<value>global search</value>
|
||||
</data>
|
||||
<data name="btnGlobalSearch.Glyph" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACZ0RVh0VGl0
|
||||
bGUARmluZDtCYXJzO1JpYmJvbjtTdGFuZGFyZDtTZWFyY2i7ZZwIAAAC7klEQVQ4T6WTe0iTURjGP+1i
|
||||
miD0RzdJCkVRA7EbzUuSRowuaGgNW27aalhupTOzpXYxL5kVol3I0UKtxJmbbLWZVJRlYJdptnIrU0uz
|
||||
tVIso6kVT+9nGQX+UfTCj+98z3Pe853zfu9hAPwXv4cDMZGYTEwiHImxYL0x/gz5sSvsw3FT0hFPWb7a
|
||||
kFagHdmRo7oaJcjwIX1iWn61x76iel1mcf2w/LheJ8ks9yDdQZZfy+YxjOzw6MBJkq26e+fBC5jbe6Gs
|
||||
aoDkoGqYdNfM4rqhpkddeNb5FqfPX0NyrrqB9AmS/dVs3mg4xiTkLj9UUgfru0E0NFlQUFIFsfwie0Dv
|
||||
3YWX0f1mAJYOG85VXock6yLiUk5yyPt1HCf+zlPnawwt6Ozuh+HWE0h2lyAsOhuLV6YiamsxLF3vYe54
|
||||
hwu1d5C4RwF+suIs5bH1ok8ERMyJT6sYMj23wtjWC5XhIQRJhQhak4UNwjysFhbCaH4LU7sNl642Q5px
|
||||
Bjypwh4QHDOd0h2YtcLC8grNPfR/tOPL12941mXD3hwlFnPTsWSZGCtic9FssaJvwI7hka8wmjrBEx/B
|
||||
0tWppbTAJCZSdGKox/qBtteKaIkKlXoT6m8+REB4Cub6rkHougPoJr+s5jEiE9Uo05qg0Tdi4QqpnRZw
|
||||
Zrj8oi+fPg+BL1NDrHkDwX4tFXOAdrCLLSJ3fVIpBsnfkKzFFo0Vsfv0VCsb/EJEI+RPZcJicjoetXVD
|
||||
qTaCJ9dAqWvB7aY2+AYldNEE91WCo+bWtldQ1LQgOl2HUm0rGu8/hecCnoV8F2Z+iFCafKAC1xtNePm6
|
||||
D4YbzRClFGG2d3g6TXDjcFNEsoNluHHXhB5rP+roeHHb8zDLOyKefLZjGTevwBiZf2ii2S90G7wWbbTM
|
||||
9ApLI30aMYGY4s8RbPYP3tLsw0nAvMD1LbN8IkSkOxOjvcD2vAvB/hZ3YgYxlRi7C+wk9n6wmhvh+vP9
|
||||
RyONd8P+hXHFvwfMd61HCl7ECOjpAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="btnGlobalSearch.LargeGlyph" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAACZ0RVh0VGl0
|
||||
bGUARmluZDtCYXJzO1JpYmJvbjtTdGFuZGFyZDtTZWFyY2i7ZZwIAAAJwElEQVRYR8VWaVSU1xm2xsZU
|
||||
GxNrUk2aNuk5OWmO2TUtNmIkLoBRgohsKiKbw6YzRHRAYJBFdlCWYd9hQJYxMDACsgyLyKo4sq/DAAPI
|
||||
GjfEEHx671fGpi1J/JW85zxz73zf8977vPfe733vMgC/KpZ8+EviP52ft98sts9qP8l/VgF0kOUEz/0A
|
||||
9P9Sg9NnSv4PfZbk/5wAZqC80sYdorLm/JyiRkVaXo0i5lJ5vl+kcBd5t4K+p8RFY/jRGSU7ErIr82Mz
|
||||
JYro9DJFeMrVfL+IJfk/KYAZ7IrklnNVUxfkI5OYufsQgyPTqKrvQEKWBN5hQlfC+S3lKflxmeXO+eXN
|
||||
kCsm0SefQP7VOpRfb4VAdB1+UXlK/tOV+CkByzNE1TtLaloXZIopPHg4h4np+7jVOQhhQQ3EJXWIu1S+
|
||||
YO4QpIzsudDEArXswoaFqZn7ZCigs28UobFCxKQWoL1vBAnZFQtsHl9jkc+I+K95w5KLl/XI79Aufbki
|
||||
I7+2pvy6FL3yO5id+w7y4QlU1neBn5iHhPQilNW1w8Y16hrhvkDwPD+tpKq6kawWiZ5at2wMkUlinHYL
|
||||
R1ltGyrqO2HvHldLuCsJllc1di077hhGuosWGFuwTNo5RLvLfcMzN6fmXluQ1LVBNjSBucfz6CBR5BY2
|
||||
wDdUgORLpZDUdeA4N/Qe4a8iWHkh8crdoupbDJ8abeMFV8FxCkTmleuMCA4vasHA0kWF8JlVMGEHkmbR
|
||||
PMOFtGGi94/OvZCYXYqqxk6M3JkmW/AIdc29SMmugKtPNJKzy3FFIsVBS/c5wn+RYNW5CxlzOYX1JPIR
|
||||
RsDQyBTiBCVgcwPhG56B3NIm8ILTYHzSN5Tw6aot12d5kWbRnALTabP8b+9tXuURmj0Smy5GU0sf2ft7
|
||||
mCQoqpIiIl4Ee+eLSBKWI4CfiS90bPGhyv4vd+lYaxy0cEO0oBCtXYOMgJE7M4jLKAfb8QJsHQKQQ1Yh
|
||||
LKUQh0/6jb6y4c8vk7mengWlMdHbOIZouQQKkHq5ErfaBvBwdo4s5zjS82pwzi8ZrK99EBAlJK0fVPey
|
||||
sGXHMew3dsYBcx78I7LQKO1hBIxNfEu+lgrYu4TDyOIsyOeJkEQxjE94Q9/SRZfMxZwFOrHS6J+VrLP8
|
||||
PO75WMRnFENUVIOm5jZkCEvB80vBcY4PTKx4YLuEwsD0LFR2m2LbHhsYWnlDx9QF7oHJqK5vxfcLC2jt
|
||||
7EdARDZY9n7Q0rfDScdQuPqn4KRrJI6y/cVkLrp1T1eBiX6vkd27Vk78JxzXEFTXSTExOYMnT54wA3b3
|
||||
DSE2+RvompyB3jEnaOqewCa1Q/8WwDoPbZOzOOMZjTwiWtrSic4eGeRDY5if/x7fzc+jjQjKFlWA40YE
|
||||
nPR98s5H2z8mczJngQqgPy+Yn77YcMIpGIqxCdx98AiK8bvoJae5h2BwbAbT92bRL1fgoLEDtqmb4sOt
|
||||
+lDVtIb+cS98ZewI1il/xKbkMYf22/tzGCb+PYMT6CaQj85gkiSzIcU4zE54Yed+mxtkzpcI6CosW6Gu
|
||||
y9po68wnp3ecIYvKOnDSrQAHWJdgYJuDM76lKJB0oodkuP4BBf654wje36KLg8dcYe8Wgb2HuTCydCV7
|
||||
PwOZYgaXr96GpWM6NI6G40vTKNi6ZSOnWIoO2TgGyMocsjqHv76rspkGTgWsPHrCx9snLAP9w5MIjK2G
|
||||
ql4iDnBrcMS7DUd9OnDIrRF6dgWISGsimW0UQWEp2LrHHB5ByUgXlkDXzJXZIhqxd2QxNmkHQY1dDA3X
|
||||
RuzhNUHjdBl2m8YhIE6C290KOLrzoapuHETmXkMFrLZ2DB241SaDsLgVakdS4JXajx7ZLEm/9+EpGAIr
|
||||
TAY7fi+MHa/ickkbOnuHoXXkNDapGlzX0GPXGNt5Q9oxgAzxDfxdPwQO8R1o73+A+va74CT2QiewHQbB
|
||||
LdhnJ4Cg4AbKrkmx19CeZr51VMAam7Oh8x39YzA5kwN93nVMTz7G1MRjdMkeoqRxBpxYOdgxA+BGt8HB
|
||||
XwIpqQtGx91pIv8TwQaLU4Fo6x2DHjseO4nIiYk5jI/PoaXvPnLrJ2HI74JheCfMQ+pgSbajXtqP/Ye5
|
||||
88R3PRXwkjU3BA0tcmhapIAV2Y2B4Udkv2dR23oPOdVTcEobBDdVjoC8ERzjFZHc3oVDLE8q4A2C11in
|
||||
L+DaTRm2HgnGgYu3yMF9iDbZA5TdnkZ8xRjMErthktAFrrAf2pxEFFe3Y5/hKer/OiPAwj7wXgUptXtt
|
||||
0sFO6kV40SiqWu4ir2EaAfmjcBcOw0ekQEjRCEzOFeFKZQv0zHmPlQIs7AMel9V2YvuxEBjF3IaHeACF
|
||||
0imk1t0BN08O26w+cC7L4FIwAK1TicgpaoK6jt19pYA1h6w92r8paoC5pwhWUc1wzR3CefEw/IpHEXB1
|
||||
DIGkjamegJeQVLWLEpIpq6Bl5NBNJydYb3TcrSuzoA6GjknQu1gNq5wecET9cCgcwJkisnqFcvhWKvB1
|
||||
xg2YeWUhJr0U2zXNuqgvFbBa6/CpsKDob5AkaoKBuxg+xUMIkowhtGocMfXjEDRPIYFEY35Bgvi8BngE
|
||||
p2PHPsso4vsKwR/2GXEiyM0HEVnV0DydhFPiHpwtG4Rb5TB8axUIvzmGoJoh6HpkITyzElzPWHyqejCG
|
||||
+lIBK9/9aNtGY+vzs6LSZngnVcHASwy/wi6kNt+BQDqO4NIemASXwif1Gimv9SQjOj964633PyG+vydY
|
||||
/fZ7Kh8etvKczSlsgjO/ABpnEuCUexPhTcOIuDkMnlgKbZ4AzlFipOTWYJe2zaNXX3ub5oHVVADNRi9u
|
||||
/9LU2pYcRnL3Q/TlOrAjSmAccIWBfWQZIoW1SCQl2ZLjj398rscmPlQ9vWZRvKyqfsTOihxGcifERYEE
|
||||
pj6XoOWUgK+cE2Hun4VgQTmi0kphaO6KjZ/s/pr40E/weQKmFtDO2i1q+sbah7gKHql8UWnFzGHJLmwE
|
||||
n5RSp/MJ2KNrP7rpM21Lwn2VQFnRmEJGsO5TVR3zPbqcUa5HHEISxOQ+WE8CqkNQrAgclwhs0zQbfecD
|
||||
NepP9/5pLaCmFLFm/etvv/O5phl/51c2reoH2Nitw8YX+6zaPttlHLlu/ZsbCWctgXJyppoRU4pYu+6P
|
||||
f9moomYYtXX3sfZtGhbYqm4GFbXD7R9v2R/z0trXPiAcGrlycqU/Y0xVJPgdAZ2EqqSJhn5qGwioI92z
|
||||
H96GlUb79Bl9R69plEs/sTcJ3iKg49AD+2P+T005EBVCV4RGRUH79NmPOi7a//rTSCnoGM/i/9QoaSk8
|
||||
qy3lS/H/Rm5QvyqWfPjLAcv+Bd859emhr0AKAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="bbtnItemViewsUser.Glyph" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAABl0RVh0U29m
|
||||
dHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAARdEVYdFRpdGxlAE1hbjtQZXJzb2478+0UpAAABotJ
|
||||
REFUWEe9VllMlFcUruwMw8zgsC+zMAyzA8MmimKtCiIosskyDLggQrUudbfDotBIgyLLAJWiQm0b+tSk
|
||||
TRPTpOlDk9r0ofGhxSbta5PGpC+mphFJTs85/MPg/48P0qZfcjLzn3PP/b577rn3/18DgBfMB5WtNaAh
|
||||
1iUVd6VlHRzvz+2cWXC0jS0Y9vX3x+cf0FDsJTkMMRfzSRwCXjLROrQga/Nwf/7xOSh6ex6KzsyD48AE
|
||||
aEsv92MsmMYEyGOIuZhP4hAgnkSYiASE2Fw3FwpPfQKFKKDw9DzkH5sDXZlngWI0JkAeQ8zFfBKHAPEk
|
||||
wkQsQLfLs1Bw8mMkRxFoeSggefPJRxSjMQHyGGIu5pM4BIgnESYiAcHrsw8O6Ct6IefINGS3T4Nm5yWI
|
||||
cbQNYOz/ERCdUaVVWprfVdncj8joP/kwFkRjAuQxxFzMJ3EICDAJNyBaKFoEWpRgMrRwtIANKOQyxFzM
|
||||
J3EIEE3AK4+1l6scbZNf5XbNQv7xjyDr0C0w7LnyZXyey4DxgOUX8hliLuaTOASsSmZytbUUt3niu2Xy
|
||||
e2x5x+5BNorQV175Vq7flYzjSIRkG3wQczGfxCFgFXmI2lIaY2/1PiDyPIE4780PIZdtFvQVfUvBkWpl
|
||||
6razZ3F8GNoL2+GDmIv5JA4/lsvu2BNL5M7Ou0yqLfNAbhcRz4Gza9l05b2UqDLsHcATcfE8/qceWRHh
|
||||
g5iL+SQOP0hAmLVl9L7z6B1ebcrWM6Aw1fVmHZoGZ+fssh2d9QlQW1vGwVR/HdK2n7uIz5Fo3BdoDDEX
|
||||
80kcftBeRtjd489ycZXm/TdAadrfjb71thYvEt+FHCTPwV/drh5KjM2ouoZ3wx3IrB+C1G1nLqGPRHAl
|
||||
0CRczCdx+EECZDa39zmVX1fe8xyfVWhKWmnOERTQgYaE2mUBamyU70111yHr8G3IrEURr78oQszFfBKH
|
||||
H5QURavN6cAyL5MoyKzNY5CNxNnttyEbybRl3RRThcfakkmEsW4IHAdnIGPfICQWdXZhjBpzbQKsrjEU
|
||||
sLJKJZm5aRSJZyALBWThr7aUBZC4yIg4RxKJSK+8Coa910DtPPwF+umiChJzMZ/E4QcLMDeO8Eq1pR4W
|
||||
ECpPicvERiPirEMzvFLNzneWMEYCaKXhEfHZiXg9f6qytjxUZNbuRR/dnq9cAe6BtO2XFokocdOJRXzm
|
||||
LYjNPfLY7p5C8g/A3jaNW9Dztzy1QI8x3/HzXde0/ySK5pJwMZ/E4QclhSstTTfxLAP94rNcnrYhSWWq
|
||||
KFY72/+yuifBfmAaTI1jkPbGhW9CZOoYHEPklLva1nQK+CJCo/2jFw69eBSanZfvJ23scMm1JcXxG449
|
||||
sbdMga31FmTUDEFKyekRHCNH45L/q5tQSCQRtAKaMCq93HPK1DCKXz+9T9SOqpJoQ0VLytZzSzb3+2BF
|
||||
01cMQFJRx2Eai7bycvJBzMV8EoeAVepJQEScsz7XVD/81Oa+BebmceyJk78FR8SkYJMNaMv6wOqaAksz
|
||||
fhuW9z6Ly2+rpBzK/S8qEIp7u95YPfjA4prAlU6BAW88ldU1jzE6ljH4/3Nj7XWwuCbB3OjFW/DiU/RT
|
||||
w4asWQCCyKmMUfry7j4qvRX329wwDuqc9t8jYu06jHGnhyo0qYkbT/xhbvKCpWkC3wUekCUXmjDGFxAa
|
||||
Q8zFfBKHH1T6yISCls3G2huLXGJcYVLx6aXo9N11GKPGpCYlkXKlpf6CsXYYT4QXj2UfqMw11egngWsS
|
||||
QElh4SpNgmHf4M9UVkvzJL4ProLS3DCNMSovdzoa94gseVNhetV7YGrwgm73AFaplV5c1IwUZ4i5mE/i
|
||||
8Jc+WlfePWHaPwJmLKux7ibg1/CvIbL4JIzx1bqqT8KCwuQJmrK+p5koQL9nEOILO+fQT0KpSlwFMRfz
|
||||
SRxC6ROL2iuMNcNL5sYJbqyEohOLUdrtZRjj0hO5zxAkOCa55OxPxtpRMFQP4Vad+oF8QuyVBJDiaH3l
|
||||
wC8mbDgqadqObsDjNoh+7my01ZeMr2KKuILOzzJqhsFYOwLJW87/iT61EHtlAYqEoreeUFPRfqrs7h+D
|
||||
wqLj0c+lRxMLoJwoFOnR7OgBY/UIxOZ10lFccwVkCmP1cZXV/VhpcT2UpW7JQ9/Kh4WPXCQiLCQqkd6C
|
||||
X6NvUWGs8aCPmpBz0CRczCdxLA8m1bTXdNFQ2X1vOZ4oAMhPlaEK0Xj6clp5J6AxxFwA8No/K4uTvqJI
|
||||
kmkAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="RibbonPageGroup2.Text" xml:space="preserve">
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -365,11 +365,6 @@ Public Class frmMain
|
||||
btnGlobalSearch.Enabled = True
|
||||
groupSearchAllOver.Visible = True
|
||||
End If
|
||||
If USER_USERNAME.ToUpper = "SCHREIBERM" Or USER_USERNAME.ToUpper = "JENNEJ" Then
|
||||
RibbonPageGroup4.Visible = True
|
||||
Else
|
||||
RibbonPageGroup4.Visible = False
|
||||
End If
|
||||
Catch ex As Exception
|
||||
MsgBox("Unexpected Error in Load QuickStart-Items:" & vbNewLine & ex.Message)
|
||||
End Try
|
||||
@ -854,12 +849,6 @@ Public Class frmMain
|
||||
OpenSearchAllOVer()
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub BaButtonItem24_ItemClick(sender As Object, e As ItemClickEventArgs) Handles BarButtonItem24.ItemClick
|
||||
|
||||
frmGoogle.Show()
|
||||
End Sub
|
||||
|
||||
Private Sub BarButtonItem25_ItemClick(sender As Object, e As ItemClickEventArgs) Handles bbtnItemViewsUser.ItemClick
|
||||
OpenViewsUser()
|
||||
End Sub
|
||||
|
||||
354
app/DD-Record-Organiser/frmSAP_FuBa.Designer.vb
generated
354
app/DD-Record-Organiser/frmSAP_FuBa.Designer.vb
generated
@ -50,8 +50,14 @@ Partial Class frmSAP_FuBa
|
||||
Dim Label12 As System.Windows.Forms.Label
|
||||
Dim Label13 As System.Windows.Forms.Label
|
||||
Dim Label14 As System.Windows.Forms.Label
|
||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmSAP_FuBa))
|
||||
Dim Label15 As System.Windows.Forms.Label
|
||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmSAP_FuBa))
|
||||
Dim Label16 As System.Windows.Forms.Label
|
||||
Dim Label17 As System.Windows.Forms.Label
|
||||
Dim Label18 As System.Windows.Forms.Label
|
||||
Dim Label19 As System.Windows.Forms.Label
|
||||
Dim Label20 As System.Windows.Forms.Label
|
||||
Dim Label21 As System.Windows.Forms.Label
|
||||
Me.DD_ECMAdmin = New DD_Record_Organiser.DD_ECMAdmin()
|
||||
Me.TBPMO_SAP_FUBABindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
||||
Me.TBPMO_SAP_FUBATableAdapter = New DD_Record_Organiser.DD_ECMAdminTableAdapters.TBPMO_SAP_FUBATableAdapter()
|
||||
@ -109,7 +115,7 @@ Partial Class frmSAP_FuBa
|
||||
Me.XtraTabControl1 = New DevExpress.XtraTab.XtraTabControl()
|
||||
Me.XtraTabPage1 = New DevExpress.XtraTab.XtraTabPage()
|
||||
Me.XtraTabPage2 = New DevExpress.XtraTab.XtraTabPage()
|
||||
Me.lblresultFunction = New System.Windows.Forms.Label()
|
||||
Me.testSAP_OBJECT = New System.Windows.Forms.TextBox()
|
||||
Me.testDOCTYPE = New System.Windows.Forms.TextBox()
|
||||
Me.testOBJECT_ID = New System.Windows.Forms.TextBox()
|
||||
Me.testDOCID = New System.Windows.Forms.TextBox()
|
||||
@ -125,7 +131,15 @@ Partial Class frmSAP_FuBa
|
||||
Me.Button1 = New System.Windows.Forms.Button()
|
||||
Me.testClient = New System.Windows.Forms.TextBox()
|
||||
Me.testLanguage = New System.Windows.Forms.TextBox()
|
||||
Me.testSAP_OBJECT = New System.Windows.Forms.TextBox()
|
||||
Me.Button2 = New System.Windows.Forms.Button()
|
||||
Me.txtDOC_IDSendList = New System.Windows.Forms.TextBox()
|
||||
Me.txtDoctypeSendList = New System.Windows.Forms.TextBox()
|
||||
Me.txtCONTREPSendList = New System.Windows.Forms.TextBox()
|
||||
Me.txtARDATESendList = New System.Windows.Forms.TextBox()
|
||||
Me.txtTableSendList = New System.Windows.Forms.TextBox()
|
||||
Me.lblresultFunction = New System.Windows.Forms.Label()
|
||||
Me.lblResultBAPI = New System.Windows.Forms.Label()
|
||||
Me.txtBARCODESendlist = New System.Windows.Forms.TextBox()
|
||||
GUIDLabel = New System.Windows.Forms.Label()
|
||||
NAMELabel = New System.Windows.Forms.Label()
|
||||
COMMENTLabel = New System.Windows.Forms.Label()
|
||||
@ -154,21 +168,27 @@ Partial Class frmSAP_FuBa
|
||||
Label13 = New System.Windows.Forms.Label()
|
||||
Label14 = New System.Windows.Forms.Label()
|
||||
Label15 = New System.Windows.Forms.Label()
|
||||
CType(Me.DD_ECMAdmin, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
CType(Me.TBPMO_SAP_FUBABindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
CType(Me.TBPMO_SAP_FUBABindingNavigator, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.TBPMO_SAP_FUBABindingNavigator.SuspendLayout()
|
||||
CType(Me.GridControl2, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
CType(Me.GridView2, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
CType(Me.XtraTabControl1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.XtraTabControl1.SuspendLayout()
|
||||
Me.XtraTabPage1.SuspendLayout()
|
||||
Me.XtraTabPage2.SuspendLayout()
|
||||
Me.SuspendLayout()
|
||||
Label16 = New System.Windows.Forms.Label()
|
||||
Label17 = New System.Windows.Forms.Label()
|
||||
Label18 = New System.Windows.Forms.Label()
|
||||
Label19 = New System.Windows.Forms.Label()
|
||||
Label20 = New System.Windows.Forms.Label()
|
||||
Label21 = New System.Windows.Forms.Label()
|
||||
CType(Me.DD_ECMAdmin,System.ComponentModel.ISupportInitialize).BeginInit
|
||||
CType(Me.TBPMO_SAP_FUBABindingSource,System.ComponentModel.ISupportInitialize).BeginInit
|
||||
CType(Me.TBPMO_SAP_FUBABindingNavigator,System.ComponentModel.ISupportInitialize).BeginInit
|
||||
Me.TBPMO_SAP_FUBABindingNavigator.SuspendLayout
|
||||
CType(Me.GridControl2,System.ComponentModel.ISupportInitialize).BeginInit
|
||||
CType(Me.GridView2,System.ComponentModel.ISupportInitialize).BeginInit
|
||||
CType(Me.XtraTabControl1,System.ComponentModel.ISupportInitialize).BeginInit
|
||||
Me.XtraTabControl1.SuspendLayout
|
||||
Me.XtraTabPage1.SuspendLayout
|
||||
Me.XtraTabPage2.SuspendLayout
|
||||
Me.SuspendLayout
|
||||
'
|
||||
'GUIDLabel
|
||||
'
|
||||
GUIDLabel.AutoSize = True
|
||||
GUIDLabel.AutoSize = true
|
||||
GUIDLabel.Location = New System.Drawing.Point(137, 28)
|
||||
GUIDLabel.Name = "GUIDLabel"
|
||||
GUIDLabel.Size = New System.Drawing.Size(36, 13)
|
||||
@ -177,7 +197,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'NAMELabel
|
||||
'
|
||||
NAMELabel.AutoSize = True
|
||||
NAMELabel.AutoSize = true
|
||||
NAMELabel.Location = New System.Drawing.Point(190, 28)
|
||||
NAMELabel.Name = "NAMELabel"
|
||||
NAMELabel.Size = New System.Drawing.Size(69, 13)
|
||||
@ -186,7 +206,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'COMMENTLabel
|
||||
'
|
||||
COMMENTLabel.AutoSize = True
|
||||
COMMENTLabel.AutoSize = true
|
||||
COMMENTLabel.Location = New System.Drawing.Point(381, 28)
|
||||
COMMENTLabel.Name = "COMMENTLabel"
|
||||
COMMENTLabel.Size = New System.Drawing.Size(65, 13)
|
||||
@ -195,7 +215,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'HostLabel
|
||||
'
|
||||
HostLabel.AutoSize = True
|
||||
HostLabel.AutoSize = true
|
||||
HostLabel.Location = New System.Drawing.Point(190, 69)
|
||||
HostLabel.Name = "HostLabel"
|
||||
HostLabel.Size = New System.Drawing.Size(272, 13)
|
||||
@ -204,7 +224,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'SystemNumberLabel
|
||||
'
|
||||
SystemNumberLabel.AutoSize = True
|
||||
SystemNumberLabel.AutoSize = true
|
||||
SystemNumberLabel.Location = New System.Drawing.Point(490, 69)
|
||||
SystemNumberLabel.Name = "SystemNumberLabel"
|
||||
SystemNumberLabel.Size = New System.Drawing.Size(147, 13)
|
||||
@ -213,7 +233,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'UserNameLabel
|
||||
'
|
||||
UserNameLabel.AutoSize = True
|
||||
UserNameLabel.AutoSize = true
|
||||
UserNameLabel.Location = New System.Drawing.Point(190, 110)
|
||||
UserNameLabel.Name = "UserNameLabel"
|
||||
UserNameLabel.Size = New System.Drawing.Size(63, 13)
|
||||
@ -222,7 +242,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'PasswordLabel
|
||||
'
|
||||
PasswordLabel.AutoSize = True
|
||||
PasswordLabel.AutoSize = true
|
||||
PasswordLabel.Location = New System.Drawing.Point(381, 110)
|
||||
PasswordLabel.Name = "PasswordLabel"
|
||||
PasswordLabel.Size = New System.Drawing.Size(57, 13)
|
||||
@ -231,7 +251,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'ClientLabel
|
||||
'
|
||||
ClientLabel.AutoSize = True
|
||||
ClientLabel.AutoSize = true
|
||||
ClientLabel.Location = New System.Drawing.Point(490, 110)
|
||||
ClientLabel.Name = "ClientLabel"
|
||||
ClientLabel.Size = New System.Drawing.Size(105, 13)
|
||||
@ -240,7 +260,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'LanguageLabel
|
||||
'
|
||||
LanguageLabel.AutoSize = True
|
||||
LanguageLabel.AutoSize = true
|
||||
LanguageLabel.Location = New System.Drawing.Point(675, 110)
|
||||
LanguageLabel.Name = "LanguageLabel"
|
||||
LanguageLabel.Size = New System.Drawing.Size(58, 13)
|
||||
@ -249,7 +269,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'TempTableNameLabel
|
||||
'
|
||||
TempTableNameLabel.AutoSize = True
|
||||
TempTableNameLabel.AutoSize = true
|
||||
TempTableNameLabel.Location = New System.Drawing.Point(258, 149)
|
||||
TempTableNameLabel.Name = "TempTableNameLabel"
|
||||
TempTableNameLabel.Size = New System.Drawing.Size(98, 13)
|
||||
@ -258,7 +278,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'ADDED_WHOLabel
|
||||
'
|
||||
ADDED_WHOLabel.AutoSize = True
|
||||
ADDED_WHOLabel.AutoSize = true
|
||||
ADDED_WHOLabel.Location = New System.Drawing.Point(190, 280)
|
||||
ADDED_WHOLabel.Name = "ADDED_WHOLabel"
|
||||
ADDED_WHOLabel.Size = New System.Drawing.Size(65, 13)
|
||||
@ -267,7 +287,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'ADDED_WHENLabel
|
||||
'
|
||||
ADDED_WHENLabel.AutoSize = True
|
||||
ADDED_WHENLabel.AutoSize = true
|
||||
ADDED_WHENLabel.Location = New System.Drawing.Point(332, 280)
|
||||
ADDED_WHENLabel.Name = "ADDED_WHENLabel"
|
||||
ADDED_WHENLabel.Size = New System.Drawing.Size(73, 13)
|
||||
@ -276,7 +296,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'CHANGED_WHOLabel
|
||||
'
|
||||
CHANGED_WHOLabel.AutoSize = True
|
||||
CHANGED_WHOLabel.AutoSize = true
|
||||
CHANGED_WHOLabel.Location = New System.Drawing.Point(466, 279)
|
||||
CHANGED_WHOLabel.Name = "CHANGED_WHOLabel"
|
||||
CHANGED_WHOLabel.Size = New System.Drawing.Size(77, 13)
|
||||
@ -285,7 +305,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'CHANGED_WHENLabel
|
||||
'
|
||||
CHANGED_WHENLabel.AutoSize = True
|
||||
CHANGED_WHENLabel.AutoSize = true
|
||||
CHANGED_WHENLabel.Location = New System.Drawing.Point(607, 279)
|
||||
CHANGED_WHENLabel.Name = "CHANGED_WHENLabel"
|
||||
CHANGED_WHENLabel.Size = New System.Drawing.Size(85, 13)
|
||||
@ -294,7 +314,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'WHERE_CLAUSELabel
|
||||
'
|
||||
WHERE_CLAUSELabel.AutoSize = True
|
||||
WHERE_CLAUSELabel.AutoSize = true
|
||||
WHERE_CLAUSELabel.Location = New System.Drawing.Point(190, 238)
|
||||
WHERE_CLAUSELabel.Name = "WHERE_CLAUSELabel"
|
||||
WHERE_CLAUSELabel.Size = New System.Drawing.Size(425, 13)
|
||||
@ -303,7 +323,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'Label4
|
||||
'
|
||||
Label4.AutoSize = True
|
||||
Label4.AutoSize = true
|
||||
Label4.Location = New System.Drawing.Point(138, 36)
|
||||
Label4.Name = "Label4"
|
||||
Label4.Size = New System.Drawing.Size(272, 13)
|
||||
@ -312,7 +332,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'Label5
|
||||
'
|
||||
Label5.AutoSize = True
|
||||
Label5.AutoSize = true
|
||||
Label5.Location = New System.Drawing.Point(438, 36)
|
||||
Label5.Name = "Label5"
|
||||
Label5.Size = New System.Drawing.Size(147, 13)
|
||||
@ -321,7 +341,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'Label6
|
||||
'
|
||||
Label6.AutoSize = True
|
||||
Label6.AutoSize = true
|
||||
Label6.Location = New System.Drawing.Point(138, 77)
|
||||
Label6.Name = "Label6"
|
||||
Label6.Size = New System.Drawing.Size(63, 13)
|
||||
@ -330,7 +350,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'Label7
|
||||
'
|
||||
Label7.AutoSize = True
|
||||
Label7.AutoSize = true
|
||||
Label7.Location = New System.Drawing.Point(329, 77)
|
||||
Label7.Name = "Label7"
|
||||
Label7.Size = New System.Drawing.Size(57, 13)
|
||||
@ -339,7 +359,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'Label8
|
||||
'
|
||||
Label8.AutoSize = True
|
||||
Label8.AutoSize = true
|
||||
Label8.Location = New System.Drawing.Point(438, 77)
|
||||
Label8.Name = "Label8"
|
||||
Label8.Size = New System.Drawing.Size(105, 13)
|
||||
@ -348,7 +368,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'Label9
|
||||
'
|
||||
Label9.AutoSize = True
|
||||
Label9.AutoSize = true
|
||||
Label9.Location = New System.Drawing.Point(623, 77)
|
||||
Label9.Name = "Label9"
|
||||
Label9.Size = New System.Drawing.Size(58, 13)
|
||||
@ -357,7 +377,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'Label3
|
||||
'
|
||||
Label3.AutoSize = True
|
||||
Label3.AutoSize = true
|
||||
Label3.Location = New System.Drawing.Point(138, 143)
|
||||
Label3.Name = "Label3"
|
||||
Label3.Size = New System.Drawing.Size(213, 13)
|
||||
@ -366,7 +386,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'Label10
|
||||
'
|
||||
Label10.AutoSize = True
|
||||
Label10.AutoSize = true
|
||||
Label10.Location = New System.Drawing.Point(138, 184)
|
||||
Label10.Name = "Label10"
|
||||
Label10.Size = New System.Drawing.Size(64, 13)
|
||||
@ -375,7 +395,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'Label11
|
||||
'
|
||||
Label11.AutoSize = True
|
||||
Label11.AutoSize = true
|
||||
Label11.Location = New System.Drawing.Point(138, 222)
|
||||
Label11.Name = "Label11"
|
||||
Label11.Size = New System.Drawing.Size(65, 13)
|
||||
@ -384,7 +404,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'Label12
|
||||
'
|
||||
Label12.AutoSize = True
|
||||
Label12.AutoSize = true
|
||||
Label12.Location = New System.Drawing.Point(438, 143)
|
||||
Label12.Name = "Label12"
|
||||
Label12.Size = New System.Drawing.Size(44, 13)
|
||||
@ -393,7 +413,7 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'Label13
|
||||
'
|
||||
Label13.AutoSize = True
|
||||
Label13.AutoSize = true
|
||||
Label13.Location = New System.Drawing.Point(438, 185)
|
||||
Label13.Name = "Label13"
|
||||
Label13.Size = New System.Drawing.Size(66, 13)
|
||||
@ -402,13 +422,22 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'Label14
|
||||
'
|
||||
Label14.AutoSize = True
|
||||
Label14.AutoSize = true
|
||||
Label14.Location = New System.Drawing.Point(438, 222)
|
||||
Label14.Name = "Label14"
|
||||
Label14.Size = New System.Drawing.Size(77, 13)
|
||||
Label14.TabIndex = 123
|
||||
Label14.Text = "AR_DOCTYPE:"
|
||||
'
|
||||
'Label15
|
||||
'
|
||||
Label15.AutoSize = true
|
||||
Label15.Location = New System.Drawing.Point(735, 143)
|
||||
Label15.Name = "Label15"
|
||||
Label15.Size = New System.Drawing.Size(74, 13)
|
||||
Label15.TabIndex = 126
|
||||
Label15.Text = "SAP_OBJECT:"
|
||||
'
|
||||
'DD_ECMAdmin
|
||||
'
|
||||
Me.DD_ECMAdmin.DataSetName = "DD_ECMAdmin"
|
||||
@ -421,11 +450,11 @@ Partial Class frmSAP_FuBa
|
||||
'
|
||||
'TBPMO_SAP_FUBATableAdapter
|
||||
'
|
||||
Me.TBPMO_SAP_FUBATableAdapter.ClearBeforeFill = True
|
||||
Me.TBPMO_SAP_FUBATableAdapter.ClearBeforeFill = true
|
||||
'
|
||||
'TableAdapterManager
|
||||
'
|
||||
Me.TableAdapterManager.BackupDataSetBeforeUpdate = False
|
||||
Me.TableAdapterManager.BackupDataSetBeforeUpdate = false
|
||||
Me.TableAdapterManager.TBDD_CONNECTIONTableAdapter = Nothing
|
||||
Me.TableAdapterManager.TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter = Nothing
|
||||
Me.TableAdapterManager.TBPMO_FORM_CONSTRUCTOR_DETAILTableAdapter = Nothing
|
||||
@ -448,7 +477,7 @@ Partial Class frmSAP_FuBa
|
||||
Me.TBPMO_SAP_FUBABindingNavigator.MovePreviousItem = Me.BindingNavigatorMovePreviousItem
|
||||
Me.TBPMO_SAP_FUBABindingNavigator.Name = "TBPMO_SAP_FUBABindingNavigator"
|
||||
Me.TBPMO_SAP_FUBABindingNavigator.PositionItem = Me.BindingNavigatorPositionItem
|
||||
Me.TBPMO_SAP_FUBABindingNavigator.Size = New System.Drawing.Size(1209, 25)
|
||||
Me.TBPMO_SAP_FUBABindingNavigator.Size = New System.Drawing.Size(987, 25)
|
||||
Me.TBPMO_SAP_FUBABindingNavigator.TabIndex = 0
|
||||
Me.TBPMO_SAP_FUBABindingNavigator.Text = "BindingNavigator1"
|
||||
'
|
||||
@ -729,10 +758,10 @@ Partial Class frmSAP_FuBa
|
||||
Me.GridControl2.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
||||
Or System.Windows.Forms.AnchorStyles.Left) _
|
||||
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.GridControl2.Location = New System.Drawing.Point(11, 358)
|
||||
Me.GridControl2.Location = New System.Drawing.Point(11, 340)
|
||||
Me.GridControl2.MainView = Me.GridView2
|
||||
Me.GridControl2.Name = "GridControl2"
|
||||
Me.GridControl2.Size = New System.Drawing.Size(1172, 683)
|
||||
Me.GridControl2.Size = New System.Drawing.Size(948, 223)
|
||||
Me.GridControl2.TabIndex = 83
|
||||
Me.GridControl2.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.GridView2})
|
||||
'
|
||||
@ -792,7 +821,7 @@ Partial Class frmSAP_FuBa
|
||||
Me.lblResult.BackColor = System.Drawing.Color.Yellow
|
||||
Me.lblResult.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold)
|
||||
Me.lblResult.ImeMode = System.Windows.Forms.ImeMode.NoControl
|
||||
Me.lblResult.Location = New System.Drawing.Point(8, 332)
|
||||
Me.lblResult.Location = New System.Drawing.Point(8, 324)
|
||||
Me.lblResult.Name = "lblResult"
|
||||
Me.lblResult.Size = New System.Drawing.Size(155, 13)
|
||||
Me.lblResult.TabIndex = 87
|
||||
@ -922,7 +951,7 @@ Partial Class frmSAP_FuBa
|
||||
Me.XtraTabControl1.Location = New System.Drawing.Point(0, 0)
|
||||
Me.XtraTabControl1.Name = "XtraTabControl1"
|
||||
Me.XtraTabControl1.SelectedTabPage = Me.XtraTabPage1
|
||||
Me.XtraTabControl1.Size = New System.Drawing.Size(1215, 717)
|
||||
Me.XtraTabControl1.Size = New System.Drawing.Size(989, 591)
|
||||
Me.XtraTabControl1.TabIndex = 99
|
||||
Me.XtraTabControl1.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.XtraTabPage1, Me.XtraTabPage2})
|
||||
'
|
||||
@ -931,6 +960,7 @@ Partial Class frmSAP_FuBa
|
||||
Me.XtraTabPage1.Controls.Add(Me.TBPMO_SAP_FUBABindingNavigator)
|
||||
Me.XtraTabPage1.Controls.Add(Me.GridControl2)
|
||||
Me.XtraTabPage1.Controls.Add(Me.TempTableNameTextBox)
|
||||
Me.XtraTabPage1.Controls.Add(Me.lblResult)
|
||||
Me.XtraTabPage1.Controls.Add(Me.ListBox1)
|
||||
Me.XtraTabPage1.Controls.Add(Me.Label2)
|
||||
Me.XtraTabPage1.Controls.Add(Me.MethodTextBox)
|
||||
@ -952,7 +982,6 @@ Partial Class frmSAP_FuBa
|
||||
Me.XtraTabPage1.Controls.Add(Me.HostTextBox)
|
||||
Me.XtraTabPage1.Controls.Add(Me.btnInsertData)
|
||||
Me.XtraTabPage1.Controls.Add(HostLabel)
|
||||
Me.XtraTabPage1.Controls.Add(Me.lblResult)
|
||||
Me.XtraTabPage1.Controls.Add(Me.SystemNumberTextBox)
|
||||
Me.XtraTabPage1.Controls.Add(Me.lblConnectionopen)
|
||||
Me.XtraTabPage1.Controls.Add(SystemNumberLabel)
|
||||
@ -979,14 +1008,28 @@ Partial Class frmSAP_FuBa
|
||||
Me.XtraTabPage1.Controls.Add(Me.ADDED_WHENTextBox)
|
||||
Me.XtraTabPage1.Controls.Add(ADDED_WHOLabel)
|
||||
Me.XtraTabPage1.Name = "XtraTabPage1"
|
||||
Me.XtraTabPage1.Size = New System.Drawing.Size(1209, 689)
|
||||
Me.XtraTabPage1.Size = New System.Drawing.Size(987, 566)
|
||||
Me.XtraTabPage1.Text = "Fuba- und Table-Configurations"
|
||||
'
|
||||
'XtraTabPage2
|
||||
'
|
||||
Me.XtraTabPage2.Controls.Add(Label21)
|
||||
Me.XtraTabPage2.Controls.Add(Me.txtBARCODESendlist)
|
||||
Me.XtraTabPage2.Controls.Add(Me.lblResultBAPI)
|
||||
Me.XtraTabPage2.Controls.Add(Me.lblresultFunction)
|
||||
Me.XtraTabPage2.Controls.Add(Label16)
|
||||
Me.XtraTabPage2.Controls.Add(Me.txtDOC_IDSendList)
|
||||
Me.XtraTabPage2.Controls.Add(Label17)
|
||||
Me.XtraTabPage2.Controls.Add(Me.txtDoctypeSendList)
|
||||
Me.XtraTabPage2.Controls.Add(Label18)
|
||||
Me.XtraTabPage2.Controls.Add(Me.txtCONTREPSendList)
|
||||
Me.XtraTabPage2.Controls.Add(Label19)
|
||||
Me.XtraTabPage2.Controls.Add(Me.txtARDATESendList)
|
||||
Me.XtraTabPage2.Controls.Add(Me.txtTableSendList)
|
||||
Me.XtraTabPage2.Controls.Add(Label20)
|
||||
Me.XtraTabPage2.Controls.Add(Me.Button2)
|
||||
Me.XtraTabPage2.Controls.Add(Label15)
|
||||
Me.XtraTabPage2.Controls.Add(Me.testSAP_OBJECT)
|
||||
Me.XtraTabPage2.Controls.Add(Me.lblresultFunction)
|
||||
Me.XtraTabPage2.Controls.Add(Label14)
|
||||
Me.XtraTabPage2.Controls.Add(Me.testDOCTYPE)
|
||||
Me.XtraTabPage2.Controls.Add(Label13)
|
||||
@ -1015,21 +1058,15 @@ Partial Class frmSAP_FuBa
|
||||
Me.XtraTabPage2.Controls.Add(Me.testLanguage)
|
||||
Me.XtraTabPage2.Controls.Add(Label9)
|
||||
Me.XtraTabPage2.Name = "XtraTabPage2"
|
||||
Me.XtraTabPage2.Size = New System.Drawing.Size(1209, 689)
|
||||
Me.XtraTabPage2.Size = New System.Drawing.Size(987, 566)
|
||||
Me.XtraTabPage2.Text = "Test und Funktionsbereich"
|
||||
'
|
||||
'lblresultFunction
|
||||
'testSAP_OBJECT
|
||||
'
|
||||
Me.lblresultFunction.AutoSize = True
|
||||
Me.lblresultFunction.BackColor = System.Drawing.Color.Yellow
|
||||
Me.lblresultFunction.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold)
|
||||
Me.lblresultFunction.ImeMode = System.Windows.Forms.ImeMode.NoControl
|
||||
Me.lblresultFunction.Location = New System.Drawing.Point(299, 274)
|
||||
Me.lblresultFunction.Name = "lblresultFunction"
|
||||
Me.lblresultFunction.Size = New System.Drawing.Size(155, 13)
|
||||
Me.lblresultFunction.TabIndex = 124
|
||||
Me.lblresultFunction.Text = "Result (limited to 1000 rows)"
|
||||
Me.lblresultFunction.Visible = False
|
||||
Me.testSAP_OBJECT.Location = New System.Drawing.Point(738, 159)
|
||||
Me.testSAP_OBJECT.Name = "testSAP_OBJECT"
|
||||
Me.testSAP_OBJECT.Size = New System.Drawing.Size(291, 21)
|
||||
Me.testSAP_OBJECT.TabIndex = 125
|
||||
'
|
||||
'testDOCTYPE
|
||||
'
|
||||
@ -1165,48 +1202,169 @@ Partial Class frmSAP_FuBa
|
||||
Me.testLanguage.Size = New System.Drawing.Size(84, 21)
|
||||
Me.testLanguage.TabIndex = 104
|
||||
'
|
||||
'Label15
|
||||
'Button2
|
||||
'
|
||||
Label15.AutoSize = True
|
||||
Label15.Location = New System.Drawing.Point(735, 143)
|
||||
Label15.Name = "Label15"
|
||||
Label15.Size = New System.Drawing.Size(74, 13)
|
||||
Label15.TabIndex = 126
|
||||
Label15.Text = "SAP_OBJECT:"
|
||||
Me.Button2.Font = New System.Drawing.Font("Segoe UI Semibold", 9.75!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle))
|
||||
Me.Button2.Image = Global.DD_Record_Organiser.My.Resources.Resources.database_connect
|
||||
Me.Button2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||
Me.Button2.ImeMode = System.Windows.Forms.ImeMode.NoControl
|
||||
Me.Button2.Location = New System.Drawing.Point(450, 404)
|
||||
Me.Button2.Name = "Button2"
|
||||
Me.Button2.Size = New System.Drawing.Size(194, 29)
|
||||
Me.Button2.TabIndex = 127
|
||||
Me.Button2.Text = "Execute BAPI_BARCODE"
|
||||
Me.Button2.TextAlign = System.Drawing.ContentAlignment.MiddleRight
|
||||
Me.Button2.UseVisualStyleBackColor = True
|
||||
'
|
||||
'testSAP_OBJECT
|
||||
'Label16
|
||||
'
|
||||
Me.testSAP_OBJECT.Location = New System.Drawing.Point(738, 159)
|
||||
Me.testSAP_OBJECT.Name = "testSAP_OBJECT"
|
||||
Me.testSAP_OBJECT.Size = New System.Drawing.Size(291, 21)
|
||||
Me.testSAP_OBJECT.TabIndex = 125
|
||||
Label16.AutoSize = True
|
||||
Label16.Location = New System.Drawing.Point(735, 312)
|
||||
Label16.Name = "Label16"
|
||||
Label16.Size = New System.Drawing.Size(44, 13)
|
||||
Label16.TabIndex = 137
|
||||
Label16.Text = "DOCID:"
|
||||
'
|
||||
'txtDOC_IDSendList
|
||||
'
|
||||
Me.txtDOC_IDSendList.Location = New System.Drawing.Point(738, 328)
|
||||
Me.txtDOC_IDSendList.Name = "txtDOC_IDSendList"
|
||||
Me.txtDOC_IDSendList.Size = New System.Drawing.Size(291, 21)
|
||||
Me.txtDOC_IDSendList.TabIndex = 136
|
||||
'
|
||||
'Label17
|
||||
'
|
||||
Label17.AutoSize = True
|
||||
Label17.Location = New System.Drawing.Point(438, 354)
|
||||
Label17.Name = "Label17"
|
||||
Label17.Size = New System.Drawing.Size(57, 13)
|
||||
Label17.TabIndex = 135
|
||||
Label17.Text = "DOCTYPE:"
|
||||
'
|
||||
'txtDoctypeSendList
|
||||
'
|
||||
Me.txtDoctypeSendList.Location = New System.Drawing.Point(441, 370)
|
||||
Me.txtDoctypeSendList.Name = "txtDoctypeSendList"
|
||||
Me.txtDoctypeSendList.Size = New System.Drawing.Size(291, 21)
|
||||
Me.txtDoctypeSendList.TabIndex = 134
|
||||
'
|
||||
'Label18
|
||||
'
|
||||
Label18.AutoSize = True
|
||||
Label18.Location = New System.Drawing.Point(438, 312)
|
||||
Label18.Name = "Label18"
|
||||
Label18.Size = New System.Drawing.Size(58, 13)
|
||||
Label18.TabIndex = 133
|
||||
Label18.Text = "CONTREP:"
|
||||
'
|
||||
'txtCONTREPSendList
|
||||
'
|
||||
Me.txtCONTREPSendList.Location = New System.Drawing.Point(441, 328)
|
||||
Me.txtCONTREPSendList.Name = "txtCONTREPSendList"
|
||||
Me.txtCONTREPSendList.Size = New System.Drawing.Size(291, 21)
|
||||
Me.txtCONTREPSendList.TabIndex = 132
|
||||
'
|
||||
'Label19
|
||||
'
|
||||
Label19.AutoSize = True
|
||||
Label19.Location = New System.Drawing.Point(138, 353)
|
||||
Label19.Name = "Label19"
|
||||
Label19.Size = New System.Drawing.Size(51, 13)
|
||||
Label19.TabIndex = 131
|
||||
Label19.Text = "ARDATE:"
|
||||
'
|
||||
'txtARDATESendList
|
||||
'
|
||||
Me.txtARDATESendList.Location = New System.Drawing.Point(141, 369)
|
||||
Me.txtARDATESendList.Name = "txtARDATESendList"
|
||||
Me.txtARDATESendList.Size = New System.Drawing.Size(291, 21)
|
||||
Me.txtARDATESendList.TabIndex = 130
|
||||
'
|
||||
'txtTableSendList
|
||||
'
|
||||
Me.txtTableSendList.Location = New System.Drawing.Point(141, 328)
|
||||
Me.txtTableSendList.Name = "txtTableSendList"
|
||||
Me.txtTableSendList.Size = New System.Drawing.Size(291, 21)
|
||||
Me.txtTableSendList.TabIndex = 129
|
||||
Me.txtTableSendList.Text = "BARCODETABLE"
|
||||
'
|
||||
'Label20
|
||||
'
|
||||
Label20.AutoSize = True
|
||||
Label20.Location = New System.Drawing.Point(138, 312)
|
||||
Label20.Name = "Label20"
|
||||
Label20.Size = New System.Drawing.Size(213, 13)
|
||||
Label20.TabIndex = 128
|
||||
Label20.Text = "Tablename: (TOA01 oder BARCODETABLE)"
|
||||
'
|
||||
'lblresultFunction
|
||||
'
|
||||
Me.lblresultFunction.AutoSize = True
|
||||
Me.lblresultFunction.BackColor = System.Drawing.Color.Yellow
|
||||
Me.lblresultFunction.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold)
|
||||
Me.lblresultFunction.ImeMode = System.Windows.Forms.ImeMode.NoControl
|
||||
Me.lblresultFunction.Location = New System.Drawing.Point(299, 274)
|
||||
Me.lblresultFunction.Name = "lblresultFunction"
|
||||
Me.lblresultFunction.Size = New System.Drawing.Size(95, 13)
|
||||
Me.lblresultFunction.TabIndex = 138
|
||||
Me.lblresultFunction.Text = "lblresultFunction"
|
||||
Me.lblresultFunction.Visible = False
|
||||
'
|
||||
'lblResultBAPI
|
||||
'
|
||||
Me.lblResultBAPI.AutoSize = True
|
||||
Me.lblResultBAPI.BackColor = System.Drawing.Color.Yellow
|
||||
Me.lblResultBAPI.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold)
|
||||
Me.lblResultBAPI.ImeMode = System.Windows.Forms.ImeMode.NoControl
|
||||
Me.lblResultBAPI.Location = New System.Drawing.Point(656, 413)
|
||||
Me.lblResultBAPI.Name = "lblResultBAPI"
|
||||
Me.lblResultBAPI.Size = New System.Drawing.Size(47, 13)
|
||||
Me.lblResultBAPI.TabIndex = 139
|
||||
Me.lblResultBAPI.Text = "Label21"
|
||||
Me.lblResultBAPI.Visible = False
|
||||
'
|
||||
'Label21
|
||||
'
|
||||
Label21.AutoSize = True
|
||||
Label21.Location = New System.Drawing.Point(138, 394)
|
||||
Label21.Name = "Label21"
|
||||
Label21.Size = New System.Drawing.Size(59, 13)
|
||||
Label21.TabIndex = 141
|
||||
Label21.Text = "BARCODE:"
|
||||
'
|
||||
'txtBARCODESendlist
|
||||
'
|
||||
Me.txtBARCODESendlist.Location = New System.Drawing.Point(141, 410)
|
||||
Me.txtBARCODESendlist.Name = "txtBARCODESendlist"
|
||||
Me.txtBARCODESendlist.Size = New System.Drawing.Size(291, 21)
|
||||
Me.txtBARCODESendlist.TabIndex = 140
|
||||
'
|
||||
'frmSAP_FuBa
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(1215, 717)
|
||||
Me.ClientSize = New System.Drawing.Size(989, 591)
|
||||
Me.Controls.Add(Me.XtraTabControl1)
|
||||
Me.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
||||
Me.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0,Byte))
|
||||
Me.Icon = CType(resources.GetObject("$this.Icon"),System.Drawing.Icon)
|
||||
Me.Name = "frmSAP_FuBa"
|
||||
Me.Text = "SAP - Funktionsbausteinverknüpfungen"
|
||||
CType(Me.DD_ECMAdmin, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
CType(Me.TBPMO_SAP_FUBABindingSource, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
CType(Me.TBPMO_SAP_FUBABindingNavigator, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.TBPMO_SAP_FUBABindingNavigator.ResumeLayout(False)
|
||||
Me.TBPMO_SAP_FUBABindingNavigator.PerformLayout()
|
||||
CType(Me.GridControl2, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
CType(Me.GridView2, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
CType(Me.XtraTabControl1, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.XtraTabControl1.ResumeLayout(False)
|
||||
Me.XtraTabPage1.ResumeLayout(False)
|
||||
Me.XtraTabPage1.PerformLayout()
|
||||
Me.XtraTabPage2.ResumeLayout(False)
|
||||
Me.XtraTabPage2.PerformLayout()
|
||||
Me.ResumeLayout(False)
|
||||
CType(Me.DD_ECMAdmin,System.ComponentModel.ISupportInitialize).EndInit
|
||||
CType(Me.TBPMO_SAP_FUBABindingSource,System.ComponentModel.ISupportInitialize).EndInit
|
||||
CType(Me.TBPMO_SAP_FUBABindingNavigator,System.ComponentModel.ISupportInitialize).EndInit
|
||||
Me.TBPMO_SAP_FUBABindingNavigator.ResumeLayout(false)
|
||||
Me.TBPMO_SAP_FUBABindingNavigator.PerformLayout
|
||||
CType(Me.GridControl2,System.ComponentModel.ISupportInitialize).EndInit
|
||||
CType(Me.GridView2,System.ComponentModel.ISupportInitialize).EndInit
|
||||
CType(Me.XtraTabControl1,System.ComponentModel.ISupportInitialize).EndInit
|
||||
Me.XtraTabControl1.ResumeLayout(false)
|
||||
Me.XtraTabPage1.ResumeLayout(false)
|
||||
Me.XtraTabPage1.PerformLayout
|
||||
Me.XtraTabPage2.ResumeLayout(false)
|
||||
Me.XtraTabPage2.PerformLayout
|
||||
Me.ResumeLayout(false)
|
||||
|
||||
End Sub
|
||||
End Sub
|
||||
Friend WithEvents DD_ECMAdmin As DD_Record_Organiser.DD_ECMAdmin
|
||||
Friend WithEvents TBPMO_SAP_FUBABindingSource As System.Windows.Forms.BindingSource
|
||||
Friend WithEvents TBPMO_SAP_FUBATableAdapter As DD_Record_Organiser.DD_ECMAdminTableAdapters.TBPMO_SAP_FUBATableAdapter
|
||||
@ -1279,6 +1437,14 @@ Partial Class frmSAP_FuBa
|
||||
Friend WithEvents testDOCID As System.Windows.Forms.TextBox
|
||||
Friend WithEvents testArchiveID As System.Windows.Forms.TextBox
|
||||
Friend WithEvents testAROBJECT As System.Windows.Forms.TextBox
|
||||
Friend WithEvents lblresultFunction As System.Windows.Forms.Label
|
||||
Friend WithEvents testSAP_OBJECT As System.Windows.Forms.TextBox
|
||||
Friend WithEvents txtDOC_IDSendList As System.Windows.Forms.TextBox
|
||||
Friend WithEvents txtDoctypeSendList As System.Windows.Forms.TextBox
|
||||
Friend WithEvents txtCONTREPSendList As System.Windows.Forms.TextBox
|
||||
Friend WithEvents txtARDATESendList As System.Windows.Forms.TextBox
|
||||
Friend WithEvents txtTableSendList As System.Windows.Forms.TextBox
|
||||
Friend WithEvents Button2 As System.Windows.Forms.Button
|
||||
Friend WithEvents lblresultFunction As System.Windows.Forms.Label
|
||||
Friend WithEvents lblResultBAPI As System.Windows.Forms.Label
|
||||
Friend WithEvents txtBARCODESendlist As System.Windows.Forms.TextBox
|
||||
End Class
|
||||
|
||||
@ -198,6 +198,9 @@
|
||||
<metadata name="Label14.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="Label15.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="DD_ECMAdmin.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
@ -288,7 +291,22 @@
|
||||
<metadata name="BackgroundWorker1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 56</value>
|
||||
</metadata>
|
||||
<metadata name="Label15.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<metadata name="Label21.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="Label16.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="Label17.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="Label18.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="Label19.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="Label20.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
||||
@ -355,4 +355,24 @@ Public Class frmSAP_FuBa
|
||||
End If
|
||||
Me.Cursor = Cursors.Default
|
||||
End Sub
|
||||
|
||||
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
|
||||
Me.Cursor = Cursors.WaitCursor
|
||||
lblResultBAPI.Visible = False
|
||||
If ClassSAP.ConnectionInit(testHOST.Text, testSYSNR.Text, testUSERName.Text, testPW.Text, testClient.Text, testLanguage.Text) = True Then
|
||||
lblSuccess.Visible = True
|
||||
Else
|
||||
lblSuccess.Visible = False
|
||||
Me.Cursor = Cursors.Default
|
||||
Exit Sub
|
||||
End If
|
||||
Dim result = ClassSAP.LINK_ARC_OBJECT(txtTableSendList.Text, txtBARCODESendlist.Text, txtCONTREPSendList.Text, txtDOC_IDSendList.Text, txtARDATESendList.Text, txtDoctypeSendList.Text)
|
||||
lblResultBAPI.Visible = True
|
||||
If result <> "" Then
|
||||
lblResultBAPI.Text = result.ToString
|
||||
Else
|
||||
lblResultBAPI.Text = "Function executed successfully!"
|
||||
End If
|
||||
Me.Cursor = Cursors.Default
|
||||
End Sub
|
||||
End Class
|
||||
@ -152,16 +152,16 @@ Public Class ClassDatabase
|
||||
Return Nothing
|
||||
End Try
|
||||
End Function
|
||||
Public Shared Function Execute_non_Query(ExecuteCMD As String, Optional Userinput As Boolean = False)
|
||||
Public Shared Function Execute_non_Query(ExecuteCMD As String, Optional Userinput As Boolean = False, Optional timeout As Integer = 120)
|
||||
Try
|
||||
|
||||
|
||||
Dim SQLconnect As New SqlClient.SqlConnection
|
||||
Dim SQLcommand As SqlClient.SqlCommand
|
||||
|
||||
SQLconnect.ConnectionString = ConnectionStringRM
|
||||
SQLconnect.Open()
|
||||
SQLcommand = SQLconnect.CreateCommand
|
||||
SQLcommand.CommandTimeout = 120
|
||||
SQLcommand.CommandTimeout = timeout
|
||||
'Update Last Created Record in Foo
|
||||
SQLcommand.CommandText = ExecuteCMD
|
||||
|
||||
|
||||
@ -24,10 +24,8 @@ Partial Class frmUsersReworkRights
|
||||
Private Sub InitializeComponent()
|
||||
Me.Label1 = New System.Windows.Forms.Label()
|
||||
Me.BW_RightsEntity = New System.ComponentModel.BackgroundWorker()
|
||||
Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
|
||||
Me.btncancel = New System.Windows.Forms.Button()
|
||||
Me.btnCheckRights = New System.Windows.Forms.Button()
|
||||
Me.lblstate = New System.Windows.Forms.Label()
|
||||
Me.MyDataset = New RecordOrganizer_RightManager.MyDataset()
|
||||
Me.TBAD_UsersBindingSource = New System.Windows.Forms.BindingSource()
|
||||
Me.GridControlUsers2Menue = New DevExpress.XtraGrid.GridControl()
|
||||
@ -56,14 +54,6 @@ Partial Class frmUsersReworkRights
|
||||
'BW_RightsEntity
|
||||
'
|
||||
'
|
||||
'ProgressBar1
|
||||
'
|
||||
Me.ProgressBar1.Location = New System.Drawing.Point(28, 287)
|
||||
Me.ProgressBar1.Name = "ProgressBar1"
|
||||
Me.ProgressBar1.Size = New System.Drawing.Size(463, 31)
|
||||
Me.ProgressBar1.TabIndex = 3
|
||||
Me.ProgressBar1.Visible = False
|
||||
'
|
||||
'btncancel
|
||||
'
|
||||
Me.btncancel.Image = Global.RecordOrganizer_RightManager.My.Resources.Resources.cancel1
|
||||
@ -89,16 +79,6 @@ Partial Class frmUsersReworkRights
|
||||
Me.btnCheckRights.TextAlign = System.Drawing.ContentAlignment.MiddleRight
|
||||
Me.btnCheckRights.UseVisualStyleBackColor = True
|
||||
'
|
||||
'lblstate
|
||||
'
|
||||
Me.lblstate.AutoSize = True
|
||||
Me.lblstate.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.lblstate.Location = New System.Drawing.Point(25, 271)
|
||||
Me.lblstate.Name = "lblstate"
|
||||
Me.lblstate.Size = New System.Drawing.Size(38, 13)
|
||||
Me.lblstate.TabIndex = 7
|
||||
Me.lblstate.Text = "Label2"
|
||||
'
|
||||
'MyDataset
|
||||
'
|
||||
Me.MyDataset.DataSetName = "MyDataset"
|
||||
@ -183,9 +163,9 @@ Partial Class frmUsersReworkRights
|
||||
Me.ProgressPanel1.Appearance.BackColor = System.Drawing.Color.Transparent
|
||||
Me.ProgressPanel1.Appearance.Options.UseBackColor = True
|
||||
Me.ProgressPanel1.Description = "Collecting rights ..."
|
||||
Me.ProgressPanel1.Location = New System.Drawing.Point(28, 324)
|
||||
Me.ProgressPanel1.Location = New System.Drawing.Point(28, 287)
|
||||
Me.ProgressPanel1.Name = "ProgressPanel1"
|
||||
Me.ProgressPanel1.Size = New System.Drawing.Size(463, 45)
|
||||
Me.ProgressPanel1.Size = New System.Drawing.Size(474, 45)
|
||||
Me.ProgressPanel1.TabIndex = 90
|
||||
Me.ProgressPanel1.Text = "ProgressPanel1"
|
||||
Me.ProgressPanel1.Visible = False
|
||||
@ -197,9 +177,7 @@ Partial Class frmUsersReworkRights
|
||||
Me.ClientSize = New System.Drawing.Size(528, 381)
|
||||
Me.Controls.Add(Me.ProgressPanel1)
|
||||
Me.Controls.Add(Me.GridControlUsers2Menue)
|
||||
Me.Controls.Add(Me.lblstate)
|
||||
Me.Controls.Add(Me.btncancel)
|
||||
Me.Controls.Add(Me.ProgressBar1)
|
||||
Me.Controls.Add(Me.btnCheckRights)
|
||||
Me.Controls.Add(Me.Label1)
|
||||
Me.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
@ -222,9 +200,7 @@ Partial Class frmUsersReworkRights
|
||||
Friend WithEvents Label1 As System.Windows.Forms.Label
|
||||
Friend WithEvents btnCheckRights As System.Windows.Forms.Button
|
||||
Friend WithEvents BW_RightsEntity As System.ComponentModel.BackgroundWorker
|
||||
Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar
|
||||
Friend WithEvents btncancel As System.Windows.Forms.Button
|
||||
Friend WithEvents lblstate As System.Windows.Forms.Label
|
||||
Friend WithEvents MyDataset As RecordOrganizer_RightManager.MyDataset
|
||||
Friend WithEvents TBAD_UsersBindingSource As System.Windows.Forms.BindingSource
|
||||
Friend WithEvents GridControlUsers2Menue As DevExpress.XtraGrid.GridControl
|
||||
|
||||
@ -4,7 +4,7 @@ Imports System.ComponentModel
|
||||
Public Class frmUsersReworkRights
|
||||
Private _error As Boolean = False
|
||||
Private Sub frmCheckRightsEntity_Load(sender As Object, e As EventArgs) Handles Me.Load
|
||||
lblstate.Visible = False
|
||||
'lblstate.Visible = False
|
||||
Refresh_Users()
|
||||
End Sub
|
||||
Sub Refresh_Users()
|
||||
@ -55,21 +55,25 @@ Public Class frmUsersReworkRights
|
||||
''BackgroundWorker erstellen ...
|
||||
BW_RightsEntity = New BackgroundWorker
|
||||
BW_RightsEntity.WorkerReportsProgress = True
|
||||
ProgressBar1.Maximum = Count + 1
|
||||
lblstate.Visible = True
|
||||
lblstate.Text = "Background Worker started...."
|
||||
'ProgressBar1.Maximum = Count + 1
|
||||
'lblstate.Visible = True
|
||||
'lblstate.Text = "Background Worker started...."
|
||||
ProgressPanel1.Description = "Preparing Right-Collector...."
|
||||
Me.ProgressBar1.Visible = True
|
||||
' Me.ProgressBar1.Visible = True
|
||||
ProgressPanel1.Visible = True
|
||||
btnCheckRights.Enabled = False
|
||||
btncancel.Visible = True
|
||||
AddHandler BW_RightsEntity.DoWork, AddressOf bw_DoWork
|
||||
BW_RightsEntity.ReportProgress(1)
|
||||
System.Threading.Thread.Sleep(500)
|
||||
Application.DoEvents()
|
||||
DO_Work()
|
||||
BW_RightsEntity_RunWorkerCompleted()
|
||||
'AddHandler BW_RightsEntity.DoWork, AddressOf bw_DoWork
|
||||
'BW_RightsEntity.ReportProgress(1)
|
||||
'.. und starten
|
||||
BW_RightsEntity.RunWorkerAsync()
|
||||
'BW_RightsEntity.RunWorkerAsync()
|
||||
Catch ex As Exception
|
||||
MsgBox("Unexpected error in starting backgroundworker: " & vbNewLine & ex.Message, MsgBoxStyle.Critical)
|
||||
Me.ProgressBar1.Visible = False
|
||||
'Me.ProgressBar1.Visible = False
|
||||
End Try
|
||||
End If
|
||||
Me.Cursor = Cursors.Default
|
||||
@ -77,7 +81,7 @@ Public Class frmUsersReworkRights
|
||||
End Sub
|
||||
|
||||
Private Sub BW_RightsEntity_ProgressChanged(sender As Object, e As ProgressChangedEventArgs) Handles BW_RightsEntity.ProgressChanged
|
||||
Me.ProgressBar1.Value = e.ProgressPercentage
|
||||
'Me.ProgressBar1.Value = e.ProgressPercentage
|
||||
ProgressPanel1.Description = "Collecting rights for user...."
|
||||
End Sub
|
||||
Private Sub bw_DoWork(ByVal sender As Object, ByVal e As DoWorkEventArgs)
|
||||
@ -101,17 +105,35 @@ Public Class frmUsersReworkRights
|
||||
BW_RightsEntity.ReportProgress(+1)
|
||||
Next
|
||||
End Sub
|
||||
Sub DO_Work()
|
||||
|
||||
For Each row As DataRow In MyDataset.TBAD_Users.Rows
|
||||
If row.Item(0) = CBool(True) Then
|
||||
ProgressPanel1.Description = "Collecting rights for user...." & row.Item("USERNAME")
|
||||
Application.DoEvents()
|
||||
' ProgressPanel1.Description = "Collecting rights for user: " & row.Item("USERNAME")
|
||||
Dim proc = String.Format("EXEC PRPMO_RIGHTS_SERVICE_CHECK_USER {0}, '{1}'", row.Item(5), Environment.UserName)
|
||||
If ClassDatabase.Execute_non_Query(proc, False, 240) = False Then
|
||||
MsgBox("Unexpected Error in Executing rightprocedure - Check the log!", MsgBoxStyle.Critical)
|
||||
_error = True
|
||||
Exit For
|
||||
Else
|
||||
Dim del = String.Format("DELETE FROM TBPMO_USER_RIGHTS_JOBS WHERE USER_ID = {0}", row.Item(5))
|
||||
ClassDatabase.Execute_non_Query(del)
|
||||
End If
|
||||
End If
|
||||
Next
|
||||
End Sub
|
||||
Private Sub btncancel_Click(sender As Object, e As EventArgs) Handles btncancel.Click
|
||||
' Cancel the asynchronous operation.
|
||||
Me.BW_RightsEntity.CancelAsync()
|
||||
End Sub
|
||||
|
||||
Private Sub BW_RightsEntity_RunWorkerCompleted(sender As Object, e As RunWorkerCompletedEventArgs) Handles BW_RightsEntity.RunWorkerCompleted
|
||||
Private Sub BW_RightsEntity_RunWorkerCompleted() '(sender As Object, e As RunWorkerCompletedEventArgs) 'Handles BW_RightsEntity.RunWorkerCompleted
|
||||
Try
|
||||
btncancel.Visible = False
|
||||
ProgressBar1.Visible = False
|
||||
lblstate.Visible = False
|
||||
'ProgressBar1.Visible = False
|
||||
'lblstate.Visible = False
|
||||
btnCheckRights.Enabled = True
|
||||
btncancel.Visible = False
|
||||
ProgressPanel1.Visible = False
|
||||
@ -120,7 +142,7 @@ Public Class frmUsersReworkRights
|
||||
Else
|
||||
MsgBox("Some errors occured while checking and transmitting the rights...please check the log!", MsgBoxStyle.Exclamation)
|
||||
End If
|
||||
|
||||
|
||||
Catch ex As Exception
|
||||
btnCheckRights.Enabled = True
|
||||
btncancel.Visible = False
|
||||
|
||||
@ -83,7 +83,7 @@
|
||||
<File Id="DevExpress.XtraEditors.v15.2_" Name="DevExpress.XtraEditors.v15.2.dll" Source="D:\Programme\Sprachen\DevExpress 15.2\Components\Bin\Framework\DevExpress.XtraEditors.v15.2.dll" />
|
||||
<File Id="DevExpress.XtraGrid.v15.2_" Name="DevExpress.XtraGrid.v15.2.dll" Source="D:\Programme\Sprachen\DevExpress 15.2\Components\Bin\Framework\DevExpress.XtraGrid.v15.2.dll" />
|
||||
<File Id="DevExpress.XtraLayout.v15.2_" Name="DevExpress.XtraLayout.v15.2.dll" Source="D:\Programme\Sprachen\DevExpress 15.2\Components\Bin\Framework\DevExpress.XtraLayout.v15.2.dll" />
|
||||
<File Id="DevExpress.XtraPrinting.v15.2_" Name="DevExpress.XtraPrinting.v15.2.dll" Source="D:\Programme\Sprachen\DevExpress 15.2\Components\Bin\Framework\DevExpress.XtraPrinting.v15.2.dll" />
|
||||
<File Id="DevExpress.XtraPrinting.v15.2_" Name="DevExpress.XtraPrinting.v15.2.dll" Source="D:\Programme\Sprachen\DevExpress 15.2\Components\Bin\Framework\DevExpress.XtraPrinting.v15.2.dll" />
|
||||
</Component>
|
||||
|
||||
</Directory>
|
||||
@ -98,7 +98,7 @@
|
||||
<!-- Programmordner bei Deinstallation entfernen-->
|
||||
<util:RemoveFolderEx Id="RemoveApplicationFolder" On="uninstall" Property="APPLICATIONFOLDER" />
|
||||
</Component>
|
||||
<Component Id="releaseNote.txt" Guid="D6FAF95B-3CF0-4504-B18B-E1181E92DC91">
|
||||
<Component Id="Docu" Guid="D6FAF95B-3CF0-4504-B18B-E1181E92DC91">
|
||||
<File Id="releaseNote.txt" Source="P:\Projekte DIGITAL DATA\DIGITAL DATA - Entwicklung\DD_MODULE\Digital Data - RECORD ORGANIZER\ChangeLog.txt" KeyPath="yes"/>
|
||||
</Component>
|
||||
<!-- WINDREAM Bibliotheken -->
|
||||
@ -175,7 +175,7 @@
|
||||
<File Id="DevExpress.XtraCharts.v15.2.UI_" Name="DevExpress.XtraCharts.v15.2.UI.dll" Source="D:\Programme\Sprachen\DevExpress 15.2\Components\Bin\Framework\DevExpress.XtraCharts.v15.2.UI.dll" />
|
||||
<File Id="DevExpress.XtraDiagram.v15.2_" Name="DevExpress.XtraDiagram.v15.2.dll" Source="D:\Programme\Sprachen\DevExpress 15.2\Components\Bin\Framework\DevExpress.XtraDiagram.v15.2.dll" />
|
||||
<File Id="DevExpress.XtraCharts.Wizard" Name="DevExpress.XtraCharts.v15.2.Wizard.dll" Source="D:\Programme\Sprachen\DevExpress 15.2\Components\Bin\Framework\DevExpress.XtraCharts.v15.2.Wizard.dll" />
|
||||
|
||||
<File Id="DevExpress.XtraMap.v15.2" Name="DevExpress.XtraMap.v15.2.dll" Source="D:\Programme\Sprachen\DevExpress 15.2\Components\Bin\Framework\DevExpress.XtraMap.v15.2.dll" />
|
||||
</Component>
|
||||
|
||||
<!-- Lokalisierung für DEVEXPRESS Bibliotheken-->
|
||||
@ -262,6 +262,7 @@
|
||||
<Feature Id="Complete" Level="1">
|
||||
<ComponentRef Id="MainExecutable" />
|
||||
<ComponentRef Id="WindreamLibs" />
|
||||
<ComponentRef Id="Docu" />
|
||||
<ComponentRef Id="DDLibs" />
|
||||
<ComponentRef Id="IndependentsoftLibs" />
|
||||
<ComponentRef Id="Scheduler.Locales" />
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user