diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1ff0c42 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,63 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto + +############################################################################### +# Set default behavior for command prompt diff. +# +# This is need for earlier builds of msysgit that does not have it on by +# default for csharp files. +# Note: This is only used by command line +############################################################################### +#*.cs diff=csharp + +############################################################################### +# Set the merge driver for project and solution files +# +# Merging from the command prompt will add diff markers to the files if there +# are conflicts (Merging from VS is not affected by the settings below, in VS +# the diff markers are never inserted). Diff markers may cause the following +# file extensions to fail to load in VS. An alternative would be to treat +# these files as binary and thus will always conflict and require user +# intervention with every merge. To do so, just uncomment the entries below +############################################################################### +#*.sln merge=binary +#*.csproj merge=binary +#*.vbproj merge=binary +#*.vcxproj merge=binary +#*.vcproj merge=binary +#*.dbproj merge=binary +#*.fsproj merge=binary +#*.lsproj merge=binary +#*.wixproj merge=binary +#*.modelproj merge=binary +#*.sqlproj merge=binary +#*.wwaproj merge=binary + +############################################################################### +# behavior for image files +# +# image files are treated as binary by default. +############################################################################### +#*.jpg binary +#*.png binary +#*.gif binary + +############################################################################### +# diff behavior for common document formats +# +# Convert binary document formats to text before diffing them. This feature +# is only available from the command line. Turn it on by uncommenting the +# entries below. +############################################################################### +#*.doc diff=astextplain +#*.DOC diff=astextplain +#*.docx diff=astextplain +#*.DOCX diff=astextplain +#*.dot diff=astextplain +#*.DOT diff=astextplain +#*.pdf diff=astextplain +#*.PDF diff=astextplain +#*.rtf diff=astextplain +#*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1bc915c --- /dev/null +++ b/.gitignore @@ -0,0 +1,156 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.sln.docstates + +# Build results + +[Dd]ebug/ +[Rr]elease/ +x64/ +build/ +[Bb]in/ +[Oo]bj/ + +# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets +!packages/*/build/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +*_i.c +*_p.c +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.log +*.scc + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opensdf +*.sdf +*.cachefile + +# Visual Studio profiler +*.psess +*.vsp +*.vspx + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +*.ncrunch* +.*crunch*.local.xml + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.Publish.xml + +# NuGet Packages Directory +## TODO: If you have NuGet Package Restore enabled, uncomment the next line +#packages/ + +# Windows Azure Build Output +csx +*.build.csdef + +# Windows Store app package directory +AppPackages/ + +# Others +sql/ +*.Cache +ClientBin/ +[Ss]tyle[Cc]op.* +~$* +*~ +*.dbmdl +*.[Pp]ublish.xml +*.pfx +*.publishsettings + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file to a newer +# Visual Studio version. Backup files are not needed, because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +App_Data/*.mdf +App_Data/*.ldf + + +#LightSwitch generated files +GeneratedArtifacts/ +_Pvt_Extensions/ +ModelManifest.xml + +# ========================= +# Windows detritus +# ========================= + +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Mac desktop service store files +.DS_Store diff --git a/DD_Clipboard_Searcher.sln b/DD_Clipboard_Searcher.sln index 2e14afd..351fd9c 100644 --- a/DD_Clipboard_Searcher.sln +++ b/DD_Clipboard_Searcher.sln @@ -1,22 +1,44 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "DD_Clipboard_Searcher", "DD_Clipboard_Searcher\DD_Clipboard_Searcher.vbproj", "{09BC9934-1A38-4752-8873-639B42779CDB}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {09BC9934-1A38-4752-8873-639B42779CDB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {09BC9934-1A38-4752-8873-639B42779CDB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {09BC9934-1A38-4752-8873-639B42779CDB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {09BC9934-1A38-4752-8873-639B42779CDB}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.21005.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "DD_Clipboard_Searcher", "DD_Clipboard_Searcher\DD_Clipboard_Searcher.vbproj", "{09BC9934-1A38-4752-8873-639B42779CDB}" +EndProject +Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "SetupWix", "SetupWix\SetupWix.wixproj", "{15FC07B7-9FF7-4F14-9BAB-05674E20D839}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|Mixed Platforms = Debug|Mixed Platforms + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|Mixed Platforms = Release|Mixed Platforms + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {09BC9934-1A38-4752-8873-639B42779CDB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {09BC9934-1A38-4752-8873-639B42779CDB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {09BC9934-1A38-4752-8873-639B42779CDB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {09BC9934-1A38-4752-8873-639B42779CDB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {09BC9934-1A38-4752-8873-639B42779CDB}.Debug|x86.ActiveCfg = Debug|Any CPU + {09BC9934-1A38-4752-8873-639B42779CDB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {09BC9934-1A38-4752-8873-639B42779CDB}.Release|Any CPU.Build.0 = Release|Any CPU + {09BC9934-1A38-4752-8873-639B42779CDB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {09BC9934-1A38-4752-8873-639B42779CDB}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {09BC9934-1A38-4752-8873-639B42779CDB}.Release|x86.ActiveCfg = Release|Any CPU + {15FC07B7-9FF7-4F14-9BAB-05674E20D839}.Debug|Any CPU.ActiveCfg = Debug|x86 + {15FC07B7-9FF7-4F14-9BAB-05674E20D839}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 + {15FC07B7-9FF7-4F14-9BAB-05674E20D839}.Debug|Mixed Platforms.Build.0 = Debug|x86 + {15FC07B7-9FF7-4F14-9BAB-05674E20D839}.Debug|x86.ActiveCfg = Debug|x86 + {15FC07B7-9FF7-4F14-9BAB-05674E20D839}.Debug|x86.Build.0 = Debug|x86 + {15FC07B7-9FF7-4F14-9BAB-05674E20D839}.Release|Any CPU.ActiveCfg = Release|x86 + {15FC07B7-9FF7-4F14-9BAB-05674E20D839}.Release|Mixed Platforms.ActiveCfg = Release|x86 + {15FC07B7-9FF7-4F14-9BAB-05674E20D839}.Release|Mixed Platforms.Build.0 = Release|x86 + {15FC07B7-9FF7-4F14-9BAB-05674E20D839}.Release|x86.ActiveCfg = Release|x86 + {15FC07B7-9FF7-4F14-9BAB-05674E20D839}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/DD_Clipboard_Searcher/bin/Debug/DD_Clipboard_Searcher.exe.config b/DD_Clipboard_Searcher/bin/Debug/DD_Clipboard_Searcher.exe.config index fedd763..b43e937 100644 --- a/DD_Clipboard_Searcher/bin/Debug/DD_Clipboard_Searcher.exe.config +++ b/DD_Clipboard_Searcher/bin/Debug/DD_Clipboard_Searcher.exe.config @@ -1,23 +1,23 @@ - - - - -
- - - - - - - - - - - - False - - - + + + + +
+ + + + + + + + + + + + False + + + \ No newline at end of file diff --git a/DD_Clipboard_Searcher/bin/Debug/DD_Clipboard_Searcher.vshost.exe.manifest b/DD_Clipboard_Searcher/bin/Debug/DD_Clipboard_Searcher.vshost.exe.manifest index f96b1d6..061c9ca 100644 --- a/DD_Clipboard_Searcher/bin/Debug/DD_Clipboard_Searcher.vshost.exe.manifest +++ b/DD_Clipboard_Searcher/bin/Debug/DD_Clipboard_Searcher.vshost.exe.manifest @@ -1,11 +1,11 @@ - - - - - - - - - - - + + + + + + + + + + + diff --git a/DD_Clipboard_Searcher/bin/Debug/DD_Clipboard_Searcher.xml b/DD_Clipboard_Searcher/bin/Debug/DD_Clipboard_Searcher.xml index 070105e..a8889ea 100644 --- a/DD_Clipboard_Searcher/bin/Debug/DD_Clipboard_Searcher.xml +++ b/DD_Clipboard_Searcher/bin/Debug/DD_Clipboard_Searcher.xml @@ -1,186 +1,186 @@ - - - - -DD_Clipboard_Searcher - - - - - -Represents the strongly named DataTable class. - - - -Represents the strongly named DataTable class. - - - -Represents the strongly named DataTable class. - - - -Represents the strongly named DataTable class. - - - -Represents the strongly named DataTable class. - - - -Represents strongly named DataRow class. - - - -Represents strongly named DataRow class. - - - -Represents strongly named DataRow class. - - - -Represents strongly named DataRow class. - - - -Represents strongly named DataRow class. - - - -Row event argument class - - - -Row event argument class - - - -Row event argument class - - - -Row event argument class - - - -Row event argument class - - - -Represents a strongly typed in-memory cache of data. - - - -Represents the connection and commands used to retrieve and save data. - - - -Represents the connection and commands used to retrieve and save data. - - - -Represents the connection and commands used to retrieve and save data. - - - -Represents the connection and commands used to retrieve and save data. - - - -Update rows in top-down order. - - - -Insert rows in top-down order. - - - -Delete rows in bottom-up order. - - - -Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first - - - -Update all changes to the dataset. - - - -Update Order Option - - - -Used to sort self-referenced table's rows - - - -TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios - - - - Get all top-level window information - - List of window information objects - - - Get all child windows for the specific windows handle (hwnd). - - List of child windows for parent window - - - Callback function that does the work of enumerating top-level windows. - - Discovered Window handle - 1=keep going, 0=stop - - - Callback function that does the work of enumerating child windows. - - Discovered Window handle - 1=keep going, 0=stop - - - Build the ApiWindow object to hold information about the Window object. - - - - Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. - - - - Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle - Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. - - - - Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. - - - - Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. - - - - Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. - - - - Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. - - - - Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. - - - - Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. - - - - Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. - - - + + + + +DD_Clipboard_Searcher + + + + + +Represents the strongly named DataTable class. + + + +Represents the strongly named DataTable class. + + + +Represents the strongly named DataTable class. + + + +Represents the strongly named DataTable class. + + + +Represents the strongly named DataTable class. + + + +Represents strongly named DataRow class. + + + +Represents strongly named DataRow class. + + + +Represents strongly named DataRow class. + + + +Represents strongly named DataRow class. + + + +Represents strongly named DataRow class. + + + +Row event argument class + + + +Row event argument class + + + +Row event argument class + + + +Row event argument class + + + +Row event argument class + + + +Represents a strongly typed in-memory cache of data. + + + +Represents the connection and commands used to retrieve and save data. + + + +Represents the connection and commands used to retrieve and save data. + + + +Represents the connection and commands used to retrieve and save data. + + + +Represents the connection and commands used to retrieve and save data. + + + +Update rows in top-down order. + + + +Insert rows in top-down order. + + + +Delete rows in bottom-up order. + + + +Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first + + + +Update all changes to the dataset. + + + +Update Order Option + + + +Used to sort self-referenced table's rows + + + +TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios + + + + Get all top-level window information + + List of window information objects + + + Get all child windows for the specific windows handle (hwnd). + + List of child windows for parent window + + + Callback function that does the work of enumerating top-level windows. + + Discovered Window handle + 1=keep going, 0=stop + + + Callback function that does the work of enumerating child windows. + + Discovered Window handle + 1=keep going, 0=stop + + + Build the ApiWindow object to hold information about the Window object. + + + + Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + + + + Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + + + \ No newline at end of file diff --git a/DD_Clipboard_Searcher/bin/Debug/DD_LIB_Standards.xml b/DD_Clipboard_Searcher/bin/Debug/DD_LIB_Standards.xml index 555326b..46bb4e5 100644 --- a/DD_Clipboard_Searcher/bin/Debug/DD_LIB_Standards.xml +++ b/DD_Clipboard_Searcher/bin/Debug/DD_LIB_Standards.xml @@ -1,253 +1,253 @@ - - - - -DD_LIB_Standards - - - - - - Konstruktor der Lizenz - - Name des Moduls - Gültigkeitsdatum der Lizenz - - - - Liefert oder setzt den Namen des Moduls für diese Lizenz - - - - - - - Liefert oder setzt das Gültigkeitsdatum der Lizenz für das Modul - - - - - - - Liefert ob die Lizenz schon abgelaufen ist - - - - - - - Liefert den Typend er Lizenz - - - - - - - Liefert die Anzahl der Profile - - - - - - - Returns the cached ResourceManager instance used by this class. - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - Konstruktor für die Lizenzen-Sammlung - - In Array übertragene Lizenzinformationen - - - - Fügt der Lizenz-Sammlung eine Lizenz hinzu - - Name des Moduls, für das eine Lizenz angelegt werden soll - Datum der Gültigkeit der Lizenz - - - - Liefert eine Lizenz an Hand des Modulnamens - - Name des zu suchenden Moduls - liefert ein Lizenzobjekt - - - - liefert eine Sammlung von Lizenzobjekten - - - - - - - liefert eine Lizenz an Hand des Modulnamens - - Name des zu suchenden Moduls - - - - - - Liefert oder setzt den Firmennamen des Lizenzeigentümers - - - - - - - returns all objecttypes as windream-Objects - - all widnream-Objecttypes as objects - - - - Checks wether a file is existing in windream - - full filepath to the file - Returns true when file exists, false if not - - - - Returns a windream-type as Integer. - - Name of indexfield - Returns integer, which describes the type - - - - Returns a windream-type as Integer. - - filepath of windream-file - Username to check - Returns info about filerights - - - - Creates a personified session - - Domainname as string - ServerName as string - UserName as string - Password as string - Returns true when file exists, false if not - - - - Creates a windream session with the actual user - - - - Konstruktor für den Lizenz-Manager - - Passwort zum Entschlüsseln des Lizenzkeys - verschlüsselter Lizenzkey - - - - Konstruktor für den Lizenz-Manager ohne License load - - Passwort zum Entschlüsseln des Lizenzkeys - - - - Lädt alle Lizenzen aus dem Lizenz-Array - - - - - Codiert eine Zeichenkette - - zu verschlüsselnde Zeichenkette - das zur Verschlüsselung verwendete Passwort - liefert eine verschlüsselte Zeichenkette - - - - Decodiert den verschlüsselten Lizenzkey - - verschlüsselter Lizenzkey - - - - - Zerlegt den entschlüsselten Lizenzkey - - entschlüsselter Lizenzkey - - - - - Liefert das Passwort zum Entschlüsseln des Lizenzschlüssels - - - - - - - Liefert eine Sammlung von Lizenzobjekten - - - - - - - Liefert oder setzt den Lizenzschlüssel - - - - - - - Establishes a databaseconnection and returns false or true - - SQL-Server ConnectionString - true if this is a proxy-Conenction - Returns true when file exists, false if not - - - - Creates a new version of the file - - full WD_File to the file - Comment - Returns true when version was created exists, false if not - - - - Deletes a file in windream - - full WD_File to the file - Returns true when file was deleted, false if not - - - - Passes indexvalues to a windream-file - - full WD_File to the file - Indexname of Index - Value for indexing - _objecttype - Returns true when indexing was successfull, false if not - - - - Removes the vektorlink from windream - - full WD_File to the file - Indexname of Vektor-Index - Value which is to be deleted - Returns true when indexing was successfull, false if not - - - + + + + +DD_LIB_Standards + + + + + + Konstruktor der Lizenz + + Name des Moduls + Gültigkeitsdatum der Lizenz + + + + Liefert oder setzt den Namen des Moduls für diese Lizenz + + + + + + + Liefert oder setzt das Gültigkeitsdatum der Lizenz für das Modul + + + + + + + Liefert ob die Lizenz schon abgelaufen ist + + + + + + + Liefert den Typend er Lizenz + + + + + + + Liefert die Anzahl der Profile + + + + + + + Returns the cached ResourceManager instance used by this class. + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + Konstruktor für die Lizenzen-Sammlung + + In Array übertragene Lizenzinformationen + + + + Fügt der Lizenz-Sammlung eine Lizenz hinzu + + Name des Moduls, für das eine Lizenz angelegt werden soll + Datum der Gültigkeit der Lizenz + + + + Liefert eine Lizenz an Hand des Modulnamens + + Name des zu suchenden Moduls + liefert ein Lizenzobjekt + + + + liefert eine Sammlung von Lizenzobjekten + + + + + + + liefert eine Lizenz an Hand des Modulnamens + + Name des zu suchenden Moduls + + + + + + Liefert oder setzt den Firmennamen des Lizenzeigentümers + + + + + + + returns all objecttypes as windream-Objects + + all widnream-Objecttypes as objects + + + + Checks wether a file is existing in windream + + full filepath to the file + Returns true when file exists, false if not + + + + Returns a windream-type as Integer. + + Name of indexfield + Returns integer, which describes the type + + + + Returns a windream-type as Integer. + + filepath of windream-file + Username to check + Returns info about filerights + + + + Creates a personified session + + Domainname as string + ServerName as string + UserName as string + Password as string + Returns true when file exists, false if not + + + + Creates a windream session with the actual user + + + + Konstruktor für den Lizenz-Manager + + Passwort zum Entschlüsseln des Lizenzkeys + verschlüsselter Lizenzkey + + + + Konstruktor für den Lizenz-Manager ohne License load + + Passwort zum Entschlüsseln des Lizenzkeys + + + + Lädt alle Lizenzen aus dem Lizenz-Array + + + + + Codiert eine Zeichenkette + + zu verschlüsselnde Zeichenkette + das zur Verschlüsselung verwendete Passwort + liefert eine verschlüsselte Zeichenkette + + + + Decodiert den verschlüsselten Lizenzkey + + verschlüsselter Lizenzkey + + + + + Zerlegt den entschlüsselten Lizenzkey + + entschlüsselter Lizenzkey + + + + + Liefert das Passwort zum Entschlüsseln des Lizenzschlüssels + + + + + + + Liefert eine Sammlung von Lizenzobjekten + + + + + + + Liefert oder setzt den Lizenzschlüssel + + + + + + + Establishes a databaseconnection and returns false or true + + SQL-Server ConnectionString + true if this is a proxy-Conenction + Returns true when file exists, false if not + + + + Creates a new version of the file + + full WD_File to the file + Comment + Returns true when version was created exists, false if not + + + + Deletes a file in windream + + full WD_File to the file + Returns true when file was deleted, false if not + + + + Passes indexvalues to a windream-file + + full WD_File to the file + Indexname of Index + Value for indexing + _objecttype + Returns true when indexing was successfull, false if not + + + + Removes the vektorlink from windream + + full WD_File to the file + Indexname of Vektor-Index + Value which is to be deleted + Returns true when indexing was successfull, false if not + + + \ No newline at end of file diff --git a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.Resources.resources b/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.Resources.resources deleted file mode 100644 index fad9ba6..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.Resources.resources and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.exe b/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.exe deleted file mode 100644 index 0addd89..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.exe and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmAdministration.resources b/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmAdministration.resources deleted file mode 100644 index 72ffb60..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmAdministration.resources and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmConfig_Basic.resources b/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmConfig_Basic.resources deleted file mode 100644 index f6df16a..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmConfig_Basic.resources and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmLicense.resources b/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmLicense.resources deleted file mode 100644 index 965ce2a..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmLicense.resources and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmMain.resources b/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmMain.resources deleted file mode 100644 index 5bc799e..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmMain.resources and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmSplash.resources b/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmSplash.resources deleted file mode 100644 index a22f53f..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.frmSplash.resources and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.pdb b/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.pdb deleted file mode 100644 index 315b144..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.pdb and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.vbproj.FileListAbsolute.txt b/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.vbproj.FileListAbsolute.txt deleted file mode 100644 index 6035f78..0000000 --- a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.vbproj.FileListAbsolute.txt +++ /dev/null @@ -1,37 +0,0 @@ -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\bin\Debug\DD_Clipboard_Searcher.exe.config -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\bin\Debug\DD_Clipboard_Searcher.exe -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\bin\Debug\DD_Clipboard_Searcher.pdb -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\bin\Debug\DD_Clipboard_Searcher.xml -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.Resources.resources -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.vbproj.GenerateResource.Cache -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.exe -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.xml -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.pdb -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\bin\Debug\DD_LIB_Standards.dll -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\bin\Debug\DD_LIB_Standards.pdb -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\bin\Debug\DD_LIB_Standards.xml -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.vbprojResolveAssemblyReference.cache -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.frmMain.resources -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.frmConfig_Basic.resources -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.frmSplash.resources -E:\SchreiberM\Visual Studio\GIT\DD_Clipboard_Searcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.frmLicense.resources -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\bin\Debug\DD_Clipboard_Searcher.exe.config -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.xml -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.pdb -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\bin\Debug\DD_Clipboard_Searcher.exe -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\bin\Debug\DD_Clipboard_Searcher.pdb -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\bin\Debug\DD_Clipboard_Searcher.xml -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\bin\Debug\DD_LIB_Standards.dll -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\bin\Debug\DD_LIB_Standards.pdb -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\bin\Debug\DD_LIB_Standards.xml -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.vbprojResolveAssemblyReference.cache -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.frmLicense.resources -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.frmMain.resources -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.frmConfig_Basic.resources -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.frmSplash.resources -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.Resources.resources -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.vbproj.GenerateResource.Cache -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.exe -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.frmAdministration.resources -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\obj\Debug\DD_Clipboard_Searcher.exe.licenses -E:\SchreiberM\Visual Studio\GIT\DDClipboardSearcher\DD_Clipboard_Searcher\bin\Debug\Interop.WINDREAMLib.dll diff --git a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.vbproj.GenerateResource.Cache b/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.vbproj.GenerateResource.Cache deleted file mode 100644 index 328db17..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.vbproj.GenerateResource.Cache and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.vbprojResolveAssemblyReference.cache b/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.vbprojResolveAssemblyReference.cache deleted file mode 100644 index d44c3ab..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.vbprojResolveAssemblyReference.cache and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.xml b/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.xml deleted file mode 100644 index 070105e..0000000 --- a/DD_Clipboard_Searcher/obj/Debug/DD_Clipboard_Searcher.xml +++ /dev/null @@ -1,186 +0,0 @@ - - - - -DD_Clipboard_Searcher - - - - - -Represents the strongly named DataTable class. - - - -Represents the strongly named DataTable class. - - - -Represents the strongly named DataTable class. - - - -Represents the strongly named DataTable class. - - - -Represents the strongly named DataTable class. - - - -Represents strongly named DataRow class. - - - -Represents strongly named DataRow class. - - - -Represents strongly named DataRow class. - - - -Represents strongly named DataRow class. - - - -Represents strongly named DataRow class. - - - -Row event argument class - - - -Row event argument class - - - -Row event argument class - - - -Row event argument class - - - -Row event argument class - - - -Represents a strongly typed in-memory cache of data. - - - -Represents the connection and commands used to retrieve and save data. - - - -Represents the connection and commands used to retrieve and save data. - - - -Represents the connection and commands used to retrieve and save data. - - - -Represents the connection and commands used to retrieve and save data. - - - -Update rows in top-down order. - - - -Insert rows in top-down order. - - - -Delete rows in bottom-up order. - - - -Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first - - - -Update all changes to the dataset. - - - -Update Order Option - - - -Used to sort self-referenced table's rows - - - -TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios - - - - Get all top-level window information - - List of window information objects - - - Get all child windows for the specific windows handle (hwnd). - - List of child windows for parent window - - - Callback function that does the work of enumerating top-level windows. - - Discovered Window handle - 1=keep going, 0=stop - - - Callback function that does the work of enumerating child windows. - - Discovered Window handle - 1=keep going, 0=stop - - - Build the ApiWindow object to hold information about the Window object. - - - - Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. - - - - Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle - Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. - - - - Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. - - - - Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. - - - - Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. - - - - Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. - - - - Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. - - - - Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. - - - - Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. - - - - \ No newline at end of file diff --git a/DD_Clipboard_Searcher/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/DD_Clipboard_Searcher/obj/Debug/DesignTimeResolveAssemblyReferences.cache deleted file mode 100644 index 6a3165a..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/DesignTimeResolveAssemblyReferences.cache and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/DD_Clipboard_Searcher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache deleted file mode 100644 index 59cf1b7..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll b/DD_Clipboard_Searcher/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll deleted file mode 100644 index 1400b80..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/TempPE/MyDataset.Designer.vb.dll b/DD_Clipboard_Searcher/obj/Debug/TempPE/MyDataset.Designer.vb.dll deleted file mode 100644 index 9ef18b5..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/TempPE/MyDataset.Designer.vb.dll and /dev/null differ diff --git a/DD_Clipboard_Searcher/obj/Debug/dd_clipboard_searcher.exe.licenses b/DD_Clipboard_Searcher/obj/Debug/dd_clipboard_searcher.exe.licenses deleted file mode 100644 index c381bef..0000000 Binary files a/DD_Clipboard_Searcher/obj/Debug/dd_clipboard_searcher.exe.licenses and /dev/null differ diff --git a/SetupWix/Config.wxi b/SetupWix/Config.wxi new file mode 100644 index 0000000..d824057 --- /dev/null +++ b/SetupWix/Config.wxi @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/SetupWix/Product.wxs b/SetupWix/Product.wxs new file mode 100644 index 0000000..9c7643c --- /dev/null +++ b/SetupWix/Product.wxs @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + + + + \ No newline at end of file diff --git a/SetupWix/SetupWix.wixproj b/SetupWix/SetupWix.wixproj new file mode 100644 index 0000000..b10ea9c --- /dev/null +++ b/SetupWix/SetupWix.wixproj @@ -0,0 +1,67 @@ + + + + Debug + x86 + 3.9 + 15fc07b7-9ff7-4f14-9bab-05674e20d839 + 2.0 + SetupWix + Package + $(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets + $(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets + + + bin\$(Configuration)\ + obj\$(Configuration)\ + Debug + -b "$(SolutionDir)DD_Clipboard_Searcher\bin\$(Configuration)" -cultures:de-DE,en-GB,en-US + + + bin\$(Configuration)\ + obj\$(Configuration)\ + + + + + + + $(WixExtDir)\WixUtilExtension.dll + WixUtilExtension + + + $(WixExtDir)\WixUIExtension.dll + WixUIExtension + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file