├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── CHANGELOG.md ├── FORMATE.md └── LINUX.md ├── img ├── Contact Conversion Wizard v3.0.0.4 - Windows.jpg ├── Contact Conversion Wizard v3.5.0.0 - MacOSX.png ├── Contact Conversion Wizard v3.5.0.0 - OpenSuse 13.1.jpg └── Contact Conversion Wizard v3.5.0.2 - Windows.png └── source ├── CCW-Large.ico ├── CCW-Small.ico ├── CSV_Row_Assigner.Designer.cs ├── CSV_Row_Assigner.cs ├── CSV_Row_Assigner.resx ├── Contact-Conversion-Wizard.csproj ├── Contact-Conversion-Wizard.sln ├── Contact-Conversion-Wizard_ml.xml ├── EditConfiguration.Designer.cs ├── EditConfiguration.cs ├── EditConfiguration.resx ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── ImportGroupsChooser.Designer.cs ├── ImportGroupsChooser.cs ├── ImportGroupsChooser.resx ├── LumenWorks ├── LumenWorks.Framework.IO.XML ├── LumenWorks.Framework.IO.dll ├── license.txt └── webpage.txt ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── SimpleInputDialog.Designer.cs ├── SimpleInputDialog.cs ├── SimpleInputDialog.resx └── packages.config /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.suo 8 | *.user 9 | *.userosscache 10 | *.sln.docstates 11 | 12 | # User-specific files (MonoDevelop/Xamarin Studio) 13 | *.userprefs 14 | 15 | # Build results 16 | [Dd]ebug/ 17 | [Dd]ebugPublic/ 18 | [Rr]elease/ 19 | [Rr]eleases/ 20 | x64/ 21 | x86/ 22 | bld/ 23 | [Bb]in/ 24 | [Oo]bj/ 25 | [Ll]og/ 26 | 27 | # Visual Studio 2015/2017 cache/options directory 28 | .vs/ 29 | # Uncomment if you have tasks that create the project's static files in wwwroot 30 | #wwwroot/ 31 | 32 | # Visual Studio 2017 auto generated files 33 | Generated\ Files/ 34 | 35 | # MSTest test Results 36 | [Tt]est[Rr]esult*/ 37 | [Bb]uild[Ll]og.* 38 | 39 | # NUNIT 40 | *.VisualState.xml 41 | TestResult.xml 42 | 43 | # Build Results of an ATL Project 44 | [Dd]ebugPS/ 45 | [Rr]eleasePS/ 46 | dlldata.c 47 | 48 | # Benchmark Results 49 | BenchmarkDotNet.Artifacts/ 50 | 51 | # .NET Core 52 | project.lock.json 53 | project.fragment.lock.json 54 | artifacts/ 55 | **/Properties/launchSettings.json 56 | 57 | # StyleCop 58 | StyleCopReport.xml 59 | 60 | # Files built by Visual Studio 61 | *_i.c 62 | *_p.c 63 | *_i.h 64 | *.ilk 65 | *.meta 66 | *.obj 67 | *.iobj 68 | *.pch 69 | *.pdb 70 | *.ipdb 71 | *.pgc 72 | *.pgd 73 | *.rsp 74 | *.sbr 75 | *.tlb 76 | *.tli 77 | *.tlh 78 | *.tmp 79 | *.tmp_proj 80 | *.log 81 | *.vspscc 82 | *.vssscc 83 | .builds 84 | *.pidb 85 | *.svclog 86 | *.scc 87 | 88 | # Chutzpah Test files 89 | _Chutzpah* 90 | 91 | # Visual C++ cache files 92 | ipch/ 93 | *.aps 94 | *.ncb 95 | *.opendb 96 | *.opensdf 97 | *.sdf 98 | *.cachefile 99 | *.VC.db 100 | *.VC.VC.opendb 101 | 102 | # Visual Studio profiler 103 | *.psess 104 | *.vsp 105 | *.vspx 106 | *.sap 107 | 108 | # Visual Studio Trace Files 109 | *.e2e 110 | 111 | # TFS 2012 Local Workspace 112 | $tf/ 113 | 114 | # Guidance Automation Toolkit 115 | *.gpState 116 | 117 | # ReSharper is a .NET coding add-in 118 | _ReSharper*/ 119 | *.[Rr]e[Ss]harper 120 | *.DotSettings.user 121 | 122 | # JustCode is a .NET coding add-in 123 | .JustCode 124 | 125 | # TeamCity is a build add-in 126 | _TeamCity* 127 | 128 | # DotCover is a Code Coverage Tool 129 | *.dotCover 130 | 131 | # AxoCover is a Code Coverage Tool 132 | .axoCover/* 133 | !.axoCover/settings.json 134 | 135 | # Visual Studio code coverage results 136 | *.coverage 137 | *.coveragexml 138 | 139 | # NCrunch 140 | _NCrunch_* 141 | .*crunch*.local.xml 142 | nCrunchTemp_* 143 | 144 | # MightyMoose 145 | *.mm.* 146 | AutoTest.Net/ 147 | 148 | # Web workbench (sass) 149 | .sass-cache/ 150 | 151 | # Installshield output folder 152 | [Ee]xpress/ 153 | 154 | # DocProject is a documentation generator add-in 155 | DocProject/buildhelp/ 156 | DocProject/Help/*.HxT 157 | DocProject/Help/*.HxC 158 | DocProject/Help/*.hhc 159 | DocProject/Help/*.hhk 160 | DocProject/Help/*.hhp 161 | DocProject/Help/Html2 162 | DocProject/Help/html 163 | 164 | # Click-Once directory 165 | publish/ 166 | 167 | # Publish Web Output 168 | *.[Pp]ublish.xml 169 | *.azurePubxml 170 | # Note: Comment the next line if you want to checkin your web deploy settings, 171 | # but database connection strings (with potential passwords) will be unencrypted 172 | *.pubxml 173 | *.publishproj 174 | 175 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 176 | # checkin your Azure Web App publish settings, but sensitive information contained 177 | # in these scripts will be unencrypted 178 | PublishScripts/ 179 | 180 | # NuGet Packages 181 | *.nupkg 182 | # The packages folder can be ignored because of Package Restore 183 | **/[Pp]ackages/* 184 | # except build/, which is used as an MSBuild target. 185 | !**/[Pp]ackages/build/ 186 | # Uncomment if necessary however generally it will be regenerated when needed 187 | #!**/[Pp]ackages/repositories.config 188 | # NuGet v3's project.json files produces more ignorable files 189 | *.nuget.props 190 | *.nuget.targets 191 | 192 | # Microsoft Azure Build Output 193 | csx/ 194 | *.build.csdef 195 | 196 | # Microsoft Azure Emulator 197 | ecf/ 198 | rcf/ 199 | 200 | # Windows Store app package directories and files 201 | AppPackages/ 202 | BundleArtifacts/ 203 | Package.StoreAssociation.xml 204 | _pkginfo.txt 205 | *.appx 206 | 207 | # Visual Studio cache files 208 | # files ending in .cache can be ignored 209 | *.[Cc]ache 210 | # but keep track of directories ending in .cache 211 | !*.[Cc]ache/ 212 | 213 | # Others 214 | ClientBin/ 215 | ~$* 216 | *~ 217 | *.dbmdl 218 | *.dbproj.schemaview 219 | *.jfm 220 | *.pfx 221 | *.publishsettings 222 | orleans.codegen.cs 223 | 224 | # Including strong name files can present a security risk 225 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 226 | #*.snk 227 | 228 | # Since there are multiple workflows, uncomment next line to ignore bower_components 229 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 230 | #bower_components/ 231 | 232 | # RIA/Silverlight projects 233 | Generated_Code/ 234 | 235 | # Backup & report files from converting an old project file 236 | # to a newer Visual Studio version. Backup files are not needed, 237 | # because we have git ;-) 238 | _UpgradeReport_Files/ 239 | Backup*/ 240 | UpgradeLog*.XML 241 | UpgradeLog*.htm 242 | ServiceFabricBackup/ 243 | *.rptproj.bak 244 | 245 | # SQL Server files 246 | *.mdf 247 | *.ldf 248 | *.ndf 249 | 250 | # Business Intelligence projects 251 | *.rdl.data 252 | *.bim.layout 253 | *.bim_*.settings 254 | *.rptproj.rsuser 255 | 256 | # Microsoft Fakes 257 | FakesAssemblies/ 258 | 259 | # GhostDoc plugin setting file 260 | *.GhostDoc.xml 261 | 262 | # Node.js Tools for Visual Studio 263 | .ntvs_analysis.dat 264 | node_modules/ 265 | 266 | # Visual Studio 6 build log 267 | *.plg 268 | 269 | # Visual Studio 6 workspace options file 270 | *.opt 271 | 272 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 273 | *.vbw 274 | 275 | # Visual Studio LightSwitch build output 276 | **/*.HTMLClient/GeneratedArtifacts 277 | **/*.DesktopClient/GeneratedArtifacts 278 | **/*.DesktopClient/ModelManifest.xml 279 | **/*.Server/GeneratedArtifacts 280 | **/*.Server/ModelManifest.xml 281 | _Pvt_Extensions 282 | 283 | # Paket dependency manager 284 | .paket/paket.exe 285 | paket-files/ 286 | 287 | # FAKE - F# Make 288 | .fake/ 289 | 290 | # JetBrains Rider 291 | .idea/ 292 | *.sln.iml 293 | 294 | # CodeRush 295 | .cr/ 296 | 297 | # Python Tools for Visual Studio (PTVS) 298 | __pycache__/ 299 | *.pyc 300 | 301 | # Cake - Uncomment if you are using it 302 | # tools/** 303 | # !tools/packages.config 304 | 305 | # Tabs Studio 306 | *.tss 307 | 308 | # Telerik's JustMock configuration file 309 | *.jmconfig 310 | 311 | # BizTalk build output 312 | *.btp.cs 313 | *.btm.cs 314 | *.odx.cs 315 | *.xsd.cs 316 | 317 | # OpenCover UI analysis results 318 | OpenCover/ 319 | 320 | # Azure Stream Analytics local run output 321 | ASALocalRun/ 322 | 323 | # MSBuild Binary and Structured Log 324 | *.binlog 325 | 326 | # NVidia Nsight GPU debugger configuration file 327 | *.nvuser 328 | 329 | # MFractors (Xamarin productivity tool) working folder 330 | .mfractor/ 331 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: csharp 2 | solution: source/Contact-Conversion-Wizard.sln 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Contact-Conversion-Wizard [![Build Status](https://travis-ci.com/Rillke/Contact-Conversion-Wizard.svg?branch=master)](https://travis-ci.com/github/Rillke/Contact-Conversion-Wizard) ![Downloads](https://img.shields.io/github/downloads/Rillke/Contact-Conversion-Wizard/total.svg?style=flat) [![Latest Release](https://img.shields.io/github/v/release/Rillke/Contact-Conversion-Wizard.svg?logo=github)](https://github.com/Rillke/Contact-Conversion-Wizard/releases) 2 | 3 | Programm, welches auf einfache Weise Kontaktlisten zwischen verschiedenen Programmen/Geräten konvertiert. 4 | 5 | Dieses Programm sucht **Mitwirkende**. Auch gelegentliche Patches (Tests, CI, Weiterentwicklung) und Dokumentation sind willkommen. 6 | 7 | ## Einsatzzweck 8 | 9 | Ursprünglich entstand das Programm, da dem Autor die existierenden Methoden das Outlook Telefonbuch in die Fritz!Box zu übernehmen zu umständlich waren. 10 | 11 | Aus dem dem hierfür geschriebenen Programm (ursprünglich ein reines Outlook-zu-Fritz!Box Konvertierprogramm) ist im Laufe der Zeit ein universelles Kontaktlisten-Umwandlungs-Tool geworden, das Kontakte aus einer ganzen Reihe von Quellen importieren kann und eine vielzahl [Formate](/docs/FORMATE.md) exportieren kann. 12 | 13 | ## Quellcode 14 | 15 | Das Programm ist in C# geschrieben (Lizenz GPLv3). Binaries (`.exe`) zum Herunterladen gibt es in den [Releases](https://github.com/Rillke/Contact-Conversion-Wizard/releases). Wie bei C#/.NET Programmen üblich, ist es auch unter [Linux](/docs/LINUX.md) lauffähig, sofern man eine aktuelle Mono Runtime installiert hat (natürlich ohne Outlook Support). 16 | 17 | ## Screenshot 18 | 19 | Windows 8.1 Screenshot, das den Contact Conversion Wizard v3.5.0.2 zeigt: Ein GUI Fenster mit 3 Bereichen: Links: Daten laden; Mitte: Daten ansehen; Rechts: Daten abspeichern 20 | 21 | GUI 22 | 23 | ## Abhängigkeiten 24 | 25 | Windows: [.NET Runtime v4](https://www.microsoft.com/de-de/download/details.aspx?id=17718) 26 | Andere: Siehe [Linux](/docs/LINUX.md) 27 | 28 | ## Autor, Contributing, Mitmachen 29 | 30 | Gerald Hopf entwickelte und stellte das Tool bis Mitte 2016 auf seiner Website zur Verfügung. Im [ip-phone-forum](https://www.ip-phone-forum.de/threads/contact-conversion-wizard.209976/page-44#post-2209489) wurde über einen Fork nachgedacht. Here it is. 31 | 32 | ## Weitere Tools 33 | 34 | | Tool | Programmiersprache / Plattform | Web-Version | Import | Export | Lizenz | 35 | |----------------------------------------------------------------------------------|-------------------------------------------------------------------------|----------------------------------------------|----------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|--------| 36 | | [Contact-Conversion-Wizard](https://github.com/Rillke/Contact-Conversion-Wizard) | C# bevorzugt Windows; MacOS und Linux ggf. möglich | - | Outlook, Fritz!Box XML, vCard, Fritz!Adr, CSV, Google Contacts | Outlook, Fritz!Box XML, vCard, Fritz!Adr, Snom v7, Snom v8, Gigaset Talk&Surf CSV, Asstra, Grandstream, Auerswald, Google Contacts | GPLv3 | 37 | | [fritzXML2vcard](https://github.com/Rillke/fritzXML2vcard) | JavaScript - Node.js Nahezu alle Betriebssysteme | [verfügbar](https://blog.rillke.com/fritzXML2vcard/) | Fritz!Box XML | vCard(s) | MIT | 38 | | [vcard2fritzXML](https://github.com/berkholz/vcard2fritzXML) | Java - Nahezu alle Betriebssysteme | - | vCard | Fritz!Box XML | GPLv2 | 39 | -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Contact Conversion Wizard - Änderungshistorie 2 | 3 | ## Änderungshistorie 4 | 5 | ### v3.5.0.0 [22.11.2013] 6 | 7 | * neu: Compilierungs-Profil geändert auf .NET 4.0 Client 8 | * neu: verbesserter Snom V8 Export wenn mehrere Hauptkontakte die selbe primäre Nummer benutzen, als Master ID wird nun zufällige Nummer benutzt 9 | * neu: Der generische CSV Import erlaubt nun das Speichern und Laden der gewählten Zuweisungen 10 | * neu: Google API DDLs von v2.1 auf v2.2 aktualisiert 11 | * neu: Optionales Kopieren der erstellten JPG Bilder direkt auf die \\FRITZ.NAS Freigabe nach Exportvorgang (nur für Boxen mit internem Speicher) 12 | * neu: Filtermöglichkeit für Import einzelner Gruppen beim von Google Contacts-Import 13 | * bugfix: die Konfigurationsoptionen "Keep space characters" und "Keep [] characters" haben nun auch tatsächlich einen Effekt 14 | * neu: Neue Konfigurationsoption "Keep a-z and A-Z" bei den Optionen für die Rufnummernbereinigung 15 | * bugfix: Konfigurationsfenster nun nicht mehr resizebar und maximierbar 16 | * neu: Option um allen exportierten Rufnummern immer eine "0" vorran zu stellen für Telefonanlagen 17 | * neu: Import der "Main" bzw "Festnetz" Nummer aus Google Contacts in Home/Work Felder (sofern noch leer) 18 | * bugfix: Der SimpleInputDialog der nach einzeiligen Eingaben fragt kann nun auch durch ENTER abgeschlossen werden und nicht nur durch schliessen des Dialogs 19 | * neu: Das Google Kennwort muss nicht mehr zwangsweise fest in der Konfiguration eingetragen (und damit gespeichert) werden, falls leer gelassen wird gefragt bei Import/Export. 20 | * bugfix: vCard Dateien wurden bisher gespeichert als 16bit Unicode und nicht im verbreiteteren UTF8. Das war nie Absicht und hat die Kompatibilität unnötig reduziert. 21 | * neu: Spezieller vCard Export für Gigaset Geräte (getestet mit DX600A), vereinfachtes und an Gigaset angepasstes vCard Format als neue Exportoption 22 | * neu: beim Gigaset vCard Export und Grandstream GXV Export werden die separaten Firstname und Lastname Felder statt einem CombinedName benutzt sofern Company leer ist oder ein Combine Name ohne Company Bestandteil ausgewählt wurde 23 | * neu: Konfigurationsoption "Fritz!XML Export: Work Nr. before Home Nr" abgeschafft, Reihenfolge wird jetzt durch Combobox "if in doubt use/store as" mitbestimmt 24 | * bugfix: < und > Zeichen werden beim Fritz!XML Export nun auch im E-Mail Feld escaped und nicht nur in den Namensfeldern 25 | * neu: Import von Faxnummern aus dem Fritz!XML file 26 | * bugfix: keine Endlosschleife mehr bei neuen unbekannten attributen im Fritz!XML file, stattdessen kurzer report nach dem Einlesen was ignoriert wurde 27 | * neu: Export von Faxnummern in die Fritz!XML Datei möglich (aber optional und nur sofern shift taste gedrückt wurde) 28 | * neu: Autodetect des Zeichensatzes beim Fritz!XML Import anhand der ersten Zeile im Quellfile 29 | 30 | ### v3.4.1.1 [26.08.2012] 31 | 32 | * bugfix: Snom V8 und Panasonic - Crash wenn Telefonnummern des Kontakts nach dem Bereinigen leer waren 33 | * bugfix: vCard: korrektes Escapen von CR/LF & LF & : in Adresszeilen 34 | * bugfix: nur leeres file bei Snom V8 Export 35 | 36 | ### v3.4.0.5 [16.07.2012] 37 | 38 | * aktualisiert: Neue v2.1 vom Google Data API integriert 39 | * neu: Grandstream Export für GXP Telefone geschrieben 40 | * neu: Grandstream Export für GXV Telefone deutlich überarbeitett 41 | * neu: Auerwald Export 42 | * neu: Google Contacts Export 43 | * verbessert: Diverse kleine Code Verbesserungen und Aufräumarbeiten an mehreren Stellen 44 | * bugfix: Crash beim holen von Google Kontaktbildern die lt. Google existieren dann plötzlich doch nicht da sind wird nun ignoriert 45 | 46 | ### v3.3.0.1 [13.08.2011] 47 | 48 | * aktualisiert: integrierte LumenWorks.Framework.IO.dll für CSV Import auf v3.8.0.0 (von v3.7.0.0) 49 | * aktualisiert: integrierte Google GData DLLs auf v1.8.0.0 (von v1.7.0.1) 50 | 51 | ### v3.3.0.0 [11.07.2011] 52 | 53 | * neu: Buttons zum Aufrufen der Homepage und des Support Forums 54 | * neu: automatischer Versionscheck beim Starten (sofern in Optionen aktiviert, Standard ist AUS). Bei verfügbarer neuer Version wird der Button für die Homepage farbig hervorgehoben und ändert seinen Text. 55 | * neu: restriktive Rufnummern-Bereinigung: Alle Zeichen werden nun entfernt die nicht explizit erlaubt sind (0-9, +, *, sowie die im Optionsmenü konfigurierbaren sind erlaubt) 56 | 57 | ### v3.2.0.1 [21.06.2011] 58 | 59 | * nun automatische Erkennung der Outlook Version, früher eingeführte Option "Import/Export Outlook contact pictures" nun wieder entfernt 60 | * Bilderimport aus Outlook geht nun offiziell erst ab Outlook 2007. Ob es vorher jemals mit Outlook 2003 ging ist unklar, vermutlich nicht. Gründe sind dubios und waren auch nach 2 Stunden Fehlersuche nicht klar erkennbar. 61 | 62 | ### v3.2.0.0 [09.06.2011] 63 | 64 | * Möglichkeit (Konfigurationsoption) um Duplikate importieren durch automatisches umbenennen zu erlauben 65 | * Duplikatserkennung neu geschrieben und umstrukturiert 66 | * Neue Möglichkeit über PREFER(HOME), PREFER(WORK), PREFER(MOBILE) im Notizfeld der Kontakte die primäre Nummer festzulegen [beeinflusst unter anderem auch für die Speeddial-Funktion der Fritz!Box] 67 | * vCard Parser deutlich überarbeitet&verbessert. 68 | 69 | ### v3.0.0.4 70 | 71 | * neue Option "Import/Export Outlook contact pictures" (Standardmässig an, evtl. Abschalten für Outlook 2000/2002 Kompatibilität) 72 | 73 | ### v3.0.0.3 74 | 75 | * Funktion "Outlook Import: es kann nun auch das Feld "Other (Weitere Tel Nr)" importiert werden (konfigurierbar, benutzt Zielfelder Home/Work sofern sie leer sind)" geht nun auch tatsächlich [Smile] 76 | 77 | ### v3.0.0.2 78 | 79 | * Probleme beim Laden der gespeicherten Konfiguration unter Mono/MacOS beseitigt (Thx Hachre!) 80 | 81 | ### v3.0.0.1 82 | 83 | * Direkter Import von GoogleMail Konten ohne Umweg über vCard, inclusive Photo Import !!! 84 | * Outlook Import: es kann nun auch das Feld "Other (Weitere Tel Nr)" importiert werden (konfigurierbar, benutzt Zielfelder Home/Work sofern sie leer sind) 85 | * Vorhandene "/" Zeichen können nun auch aus den Telefonnummern entfernt werden (konfigurierbar) 86 | * Grandstream XML Export (Implementiert von bernd.hardung - DANKE!) 87 | * Möglichkeit die Sortierreihenfolge der Telefonbucheinträge im Fritz!Box XML Export zu beeinflussen (optional statt Home/Work jetzt auch Work/Home) 88 | 89 | ### v2.9.0.5 90 | 91 | * Neue Konfigurationsoption um zu beeinflussen ob PREFIX nur die Fritz!Box XML ausgabe betrifft oder alle Ausgabeformate. 92 | * Möglichkeit bei den Notizen eines Kontakts mittels z.B. PREFIX(#31#) allen Rufnummern ein #31# vorranzustellen (wird nur beim Fritz!Box XML Export gemacht) 93 | * kleine Änderung am vCard Parser um aus den von vCardIO (Android) erstellten vCards die Bilder zu importieren 94 | * Vorwahlen, Bindestriche und "x" wird aus Rufnummern grundsätzlich nur noch dann entfernt wenn kein "@" in der Rufnummer vorkommt (Sonderbehandlung eMail Adressen als Rufnummer für HD Telefonie) 95 | * eine Info/Debug Meldung beim Einlesen der Kontakte abgeschaltet 96 | 97 | ### v2.9.0.0 98 | 99 | * Konfigurationsoptionen werden nun in einem .config file dauerhaft gespeichert 100 | * Zusätzliche Konfigurationsoptionen hinzugefügt mittels derer man beeinflussen kann welche Zeichen aus den Telefonnummern entfernt werden 101 | * kleine Buttons hinzugefügt die den Standard-Bilderpfad für 7270 und 7390 ins Textfeld eintragen 102 | 103 | ### v2.8.6.0 104 | 105 | * Outlook Import so geändert das nun auch Kontakte importiert werden die ein Custom Form als Messageclass zugewiesen haben. 106 | * es gibt nun ein Konfigurationsmenü 107 | * Konfigurationsoption: Spaltengröße anpassbar 108 | * Konfigurationsoption: Spalten ausblenden die nichts enthalten 109 | * Neue Output Prefix Option "Keep '+XX' prefixes intact (nicht so sinnvoll bei Export in Fritz!Box, aber vielleicht bei anderen Exportzielen!) 110 | * Probleme beim Fritz!XML Export behoben wenn im Namen "<" oder ">" vorkamen 111 | * Berücksichtigung von eMail Addressen beim Fritz!XML Export 112 | * Character Encoding geändert beim Export für die Telefone SnomV7, SnomV8, Aastra von UTF8 auf UTF8-without-BOM (Byte-Order-Mark) 113 | * Möglichkeit nach Kategorien zu filtern beim Outlook Import (CTRL-Taste gedrückt halten) 114 | * Deutlich verbessert: Generic CSV Import Feature 115 | * Export CSV für AAstra Telefone 116 | 117 | ### v2.7.0.0 118 | 119 | * Neu: Generic CSV Import Feature 120 | 121 | ### v2.6.0.0 122 | 123 | * Neu: vCard export nun implementiert 124 | * kleine Verbesserungen beim vCard Import 125 | 126 | ### v2.5.5.1 127 | 128 | * Entfernt nun auch "-" aus Rufnummern vor dem Exportieren 129 | * Exportfunktion für Gigaset Talk & Surf CSV Dateien 130 | * Vanity Nummer Unterstützung, Achtung: neuer Syntax für SPEEDDIAL Keyword 131 | * Bug nun endgültig behoben der weiterhin manchmal die Ländervorwahl durch 0 ersetzt hat wenn sie mitten in der Rufnummer vorkam 132 | 133 | ### v2.4.0.5 134 | 135 | * '*' Zeichen werden nicht mehr aus der Rufnummer entfernt, da diese ja für Interne Teilnehmer an der Fritz!Box verwendet werden 136 | * Abstürze beim Import mancher Kontakte aus Outlook behoben 137 | * Neue Exportfunktion für Snom v8 mit voller Unterstützung für Subcontacts und VIP flags 138 | * vCard Import nun noch toleranter - akzeptiert nun auch mit jFritz v0.7.3.10 erstellte Dateien (ich hatte es bisher nur mit der jFritz Beta getestet, die aber anders formatierte vCard Dateien erstellt) 139 | * Potentielle Probleme behoben bei mehrfachem Export der Daten 140 | 141 | ### v2.3.0.1 142 | 143 | * Datenexport nach Outlook, incl. evtl. vorhandener Kontaktbilder 144 | * Import von BASE64 codierten Bildern aus vCards (Apple Adressbook) 145 | * Import von Kontaktbildern aus Outlook 146 | * Speichern von Kontaktbildern in Unterordner beim Fritz!XML Export, Fritz!Box Bilder Pfad konfigurierbar über Textfeld im Hauptdialog 147 | 148 | ### v2.1.0.3 149 | 150 | * Unterstützung für "MIME Unfolding" zur Verarbeitung von auf mehreren Zeilen verteilten vCard Einträgen 151 | * Speeddial & VIP Funktionalität 152 | * Neues Keyword "CCW-IGNORE", dessen Vorhandensein im Kommentar/Notiz-Feld bei Import aus Outlook, vCard und Fritz!Adr Daten geprüft wird. Wird es gefunden, wird der gesamte Kontakt ignoriert und nicht importiert 153 | 154 | 155 | ### v2.0.0.x im Vergleich zu v1.x 156 | 157 | * Namensänderung von Fritz!XML Wizard zu Contact Conversion Wizard 158 | * Import Fritz!Box XML Dateien, vCard Import nun deutlich toleranter, akzeptiert auch jFritz vCard Dateien 159 | * Einlesen nicht nur von Telefonnummern sondern auch von Adressen und eMail 160 | * Mehr Möglichkeiten den Ausgabenamen zu gestalten (Vorname vorne) 161 | * Fritz!Adr Adressbuch Import ist implementiert (über Fritz!Adr Text mit Tabstopp-Export Datei) sowie auch Export mit allen Feldern 162 | * Großes Vorschaufenster (readonly), Tooltips für die Buttons die erklären was sie machen 163 | * Erweiterte Importoptionen 164 | 165 | 166 | -------------------------------------------------------------------------------- /docs/FORMATE.md: -------------------------------------------------------------------------------- 1 | # Contact Conversion Wizard - Export/Import Formate 2 | 3 | ## Unterstützte Import-Formate 4 | 5 | * Outlook: Versionen 2003, 2007, 2010 offiziell unterstützt 6 | * Fritz!Box XML: Dateien des Fritz!Box Telefonbuchs 7 | * vCard: (getestet mit vCard Export Dateien von "MacOS 10.6 Adressbuch" / "Google Mail/Contacts" / "jFritz Adressbuch" 8 | * Fritz!Adr Adressbuche-Exportdateien (Erstellen bitte über Datei => Exportieren => in Datei exportieren => Text-Tabstopp-getrennt) 9 | * CSV Dateien aller Art über den Generic CSV Import (z.B. für das Addressbuch von Windows Live Mail oder Export-CSV Dateien von Webmail Diensten wie GMX) 10 | * Google Contacts: Direkter Import von GMail Konten (direkt über Google API v3) 11 | 12 | ## Unterstützte Export-Formate 13 | 14 | * Outlook 15 | * Fritz!Box XML: XML Dateien des Fritz!Box Telefonbuchs (generierte Datei im Fritz!Box WebIF dann als Telefonbuch "wiederherstellen") 16 | * vCard 17 | * vCard - Spezialversion für Gigaset Telefone (getestet mit DX600A) 18 | * Fritz!Adr - Fritz!Adressbuch von Fritz!Fax & Fritz!Fon (über Text mit Tabstopp Datei - generierte Datei dort dann manuell importieren) 19 | * Snom v7: CSV Dateien für Snom Telefone mit Firmware v7.x 20 | * Snom v8: CSV Dateien für Snom Telefone mit Firmware v8.x (mit mehreren Nummern pro Kontakt) 21 | * Gigaset Talk&Surf: CSV Dateien für die Gigaset Talk&Surf Software 22 | * Aastra: CSV Dateien für Aastra Telefone 23 | * Grandstream: XML Dateien für Grandstream Telefone (in 2 Varianten: 1 Telefonnummer pro Kontakteintrag für GXP Telefone, mehrere Telefonnummern pro Kontakteintrag für GXV Telefone) 24 | * Auerswald: CSV Dateien für Auerswald Telefonanlagen 25 | * Google Contacts Export, exportiert direkt per Google API in die Kontaktdatenbank 26 | 27 | ## Hinweise 28 | 29 | Namensgenerierung: Beim Export in Zielformate (Fritz!Box XML, Fritz!Adr, Snom v7) die keine getrennten Felder für Vor und Nachnahmen vorsehen, stehen viele Möglichkeiten zur Auswahl auf welche Weise der nötige Gesamtname aus den vorhanden Einzelteilen (Vorname, Nachname, Firma) zusammengesetzt werden soll. 30 | 31 | Spezialoptionen: Desweiteren gibt es Spezialoptionen für Outlook (Feld "Speichern Unter" nutzen für den Gesamtnamen) sowie Möglichkeiten Kontake in den Quelldaten als VIP zu definieren und Kurzwahlnummern festzulegen. 32 | 33 | -------------------------------------------------------------------------------- /docs/LINUX.md: -------------------------------------------------------------------------------- 1 | # Contact Conversion Wizard - Linux/MacOS X 2 | 3 | Wie bei C#/.NET Programmen üblich ist der Contact Conversion Wizard auch unter Linux & MacOS lauffähig, sofern man eine aktuelle Mono Runtime installiert hat (Unter diesen Betriebssystemen gibt es natürlich keinen Outlook Support). 4 | 5 | ## Linux am Beispiel von openSUSE 13.1 6 | 7 | Anleitung Stand 11/2013: 8 | 9 | * Pakete "mono-core" und "mono-winforms" nachinstallieren über Suse Software-Verwaltung 10 | * Im Terminal: Mit "mozroots --import --ask-remove" SSL-Zertifikate für Mono holen und installieren (nur nötig für direkten Google Mail Import, sonst kann dieser Schritt übergangen werden) 11 | * Im Terminal: exe file im Terminal starten mit "mono /path/to/ccw.exe" 12 | 13 | Das WinForms Fenster ohne ordentliches Theme ist zwar nicht unbedingt schön anzusehen, aber volle Funktionalität scheint mir gegeben zu sein. "&" Zeichen in der Tabelle wird nicht korrekt dargestellt (stattdessen "_"), im XML Ausgabefile war es allerdings ok. Sollte also eigentlich alles gehen. Outlook Import natürlich nicht mangels Outlook unter Linux. 14 | 15 | ![OpenSuse Screenshot, das den Contact Conversion Wizard v3.5.0.0 zeigt: Ein GUI Fenster mit 3 Bereichen: Links: Daten laden; Mitte: Daten ansehen; Rechts: Daten abspeichern](../img/Contact%20Conversion%20Wizard%20v3.5.0.0%20-%20OpenSuse%2013.1.jpg) 16 | 17 | ## MacOS X 18 | 19 | Anleitung Stand 06/2014: 20 | 21 | * Er geht wieder! Man braucht: 22 | * CCW 3.5.0.0 OS X 23 | * XQuartz 2.7.6 (http://xquartz.macosforge.org/trac/wiki) - muss man vor Mono installieren! 24 | * Mono MRE von http://www.go-mono.com/mono-downloads/download.html 25 | * Der erste Start vom CCW dauert ewig (>1 min) und er meint ständig er würde hängen im Activity Monitor. Irgendwann kommt er dann und ab dann geht er schnell auch über Beenden und wieder Starten hinweg. 26 | 27 | ![MacOS Screenshot, das den Contact Conversion Wizard v3.5.0.0 zeigt: Ein GUI Fenster mit 3 Bereichen: Links: Daten laden; Mitte: Daten ansehen; Rechts: Daten abspeichern](../img/Contact%20Conversion%20Wizard%20v3.5.0.0%20-%20MacOSX.png) 28 | 29 | -------------------------------------------------------------------------------- /img/Contact Conversion Wizard v3.0.0.4 - Windows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rillke/Contact-Conversion-Wizard/c46ac125af17ca40d5d373edcb662140a7d32d1a/img/Contact Conversion Wizard v3.0.0.4 - Windows.jpg -------------------------------------------------------------------------------- /img/Contact Conversion Wizard v3.5.0.0 - MacOSX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rillke/Contact-Conversion-Wizard/c46ac125af17ca40d5d373edcb662140a7d32d1a/img/Contact Conversion Wizard v3.5.0.0 - MacOSX.png -------------------------------------------------------------------------------- /img/Contact Conversion Wizard v3.5.0.0 - OpenSuse 13.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rillke/Contact-Conversion-Wizard/c46ac125af17ca40d5d373edcb662140a7d32d1a/img/Contact Conversion Wizard v3.5.0.0 - OpenSuse 13.1.jpg -------------------------------------------------------------------------------- /img/Contact Conversion Wizard v3.5.0.2 - Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rillke/Contact-Conversion-Wizard/c46ac125af17ca40d5d373edcb662140a7d32d1a/img/Contact Conversion Wizard v3.5.0.2 - Windows.png -------------------------------------------------------------------------------- /source/CCW-Large.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rillke/Contact-Conversion-Wizard/c46ac125af17ca40d5d373edcb662140a7d32d1a/source/CCW-Large.ico -------------------------------------------------------------------------------- /source/CCW-Small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rillke/Contact-Conversion-Wizard/c46ac125af17ca40d5d373edcb662140a7d32d1a/source/CCW-Small.ico -------------------------------------------------------------------------------- /source/CSV_Row_Assigner.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Contact_Conversion_Wizard 2 | { 3 | partial class CSV_Row_Assigner 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CSV_Row_Assigner)); 32 | this.label1 = new System.Windows.Forms.Label(); 33 | this.combo_Encoding = new System.Windows.Forms.ComboBox(); 34 | this.label2 = new System.Windows.Forms.Label(); 35 | this.combo_Separator = new System.Windows.Forms.ComboBox(); 36 | this.label3 = new System.Windows.Forms.Label(); 37 | this.combo_Headers = new System.Windows.Forms.ComboBox(); 38 | this.label4 = new System.Windows.Forms.Label(); 39 | this.label5 = new System.Windows.Forms.Label(); 40 | this.label_error = new System.Windows.Forms.Label(); 41 | this.button_regsave = new System.Windows.Forms.Button(); 42 | this.button_regload = new System.Windows.Forms.Button(); 43 | this.label_assign = new System.Windows.Forms.Label(); 44 | this.SuspendLayout(); 45 | // 46 | // label1 47 | // 48 | this.label1.AutoSize = true; 49 | this.label1.Location = new System.Drawing.Point(136, 14); 50 | this.label1.Name = "label1"; 51 | this.label1.Size = new System.Drawing.Size(55, 13); 52 | this.label1.TabIndex = 0; 53 | this.label1.Text = "Encoding:"; 54 | // 55 | // combo_Encoding 56 | // 57 | this.combo_Encoding.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 58 | this.combo_Encoding.FormattingEnabled = true; 59 | this.combo_Encoding.Items.AddRange(new object[] { 60 | "Unicode", 61 | "ISO-8859-1"}); 62 | this.combo_Encoding.Location = new System.Drawing.Point(194, 10); 63 | this.combo_Encoding.Name = "combo_Encoding"; 64 | this.combo_Encoding.Size = new System.Drawing.Size(121, 21); 65 | this.combo_Encoding.TabIndex = 1; 66 | // 67 | // label2 68 | // 69 | this.label2.AutoSize = true; 70 | this.label2.Location = new System.Drawing.Point(329, 14); 71 | this.label2.Name = "label2"; 72 | this.label2.Size = new System.Drawing.Size(56, 13); 73 | this.label2.TabIndex = 2; 74 | this.label2.Text = "Separator:"; 75 | // 76 | // combo_Separator 77 | // 78 | this.combo_Separator.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 79 | this.combo_Separator.FormattingEnabled = true; 80 | this.combo_Separator.Items.AddRange(new object[] { 81 | ",", 82 | ";", 83 | "TAB"}); 84 | this.combo_Separator.Location = new System.Drawing.Point(389, 10); 85 | this.combo_Separator.Name = "combo_Separator"; 86 | this.combo_Separator.Size = new System.Drawing.Size(63, 21); 87 | this.combo_Separator.TabIndex = 3; 88 | // 89 | // label3 90 | // 91 | this.label3.AutoSize = true; 92 | this.label3.Location = new System.Drawing.Point(470, 14); 93 | this.label3.Name = "label3"; 94 | this.label3.Size = new System.Drawing.Size(50, 13); 95 | this.label3.TabIndex = 4; 96 | this.label3.Text = "Headers:"; 97 | // 98 | // combo_Headers 99 | // 100 | this.combo_Headers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 101 | this.combo_Headers.FormattingEnabled = true; 102 | this.combo_Headers.Items.AddRange(new object[] { 103 | "Yes", 104 | "No"}); 105 | this.combo_Headers.Location = new System.Drawing.Point(522, 10); 106 | this.combo_Headers.Name = "combo_Headers"; 107 | this.combo_Headers.Size = new System.Drawing.Size(96, 21); 108 | this.combo_Headers.TabIndex = 5; 109 | // 110 | // label4 111 | // 112 | this.label4.AutoSize = true; 113 | this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 114 | this.label4.Location = new System.Drawing.Point(22, 13); 115 | this.label4.Name = "label4"; 116 | this.label4.Size = new System.Drawing.Size(110, 13); 117 | this.label4.TabIndex = 6; 118 | this.label4.Text = "Import Settings =>"; 119 | // 120 | // label5 121 | // 122 | this.label5.AutoSize = true; 123 | this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 124 | this.label5.Location = new System.Drawing.Point(19, 40); 125 | this.label5.Name = "label5"; 126 | this.label5.Size = new System.Drawing.Size(878, 25); 127 | this.label5.TabIndex = 7; 128 | this.label5.Text = "Please assign the CSV columns to the correct data fields, then close the window!" + 129 | ""; 130 | // 131 | // label_error 132 | // 133 | this.label_error.AutoSize = true; 134 | this.label_error.Location = new System.Drawing.Point(22, 107); 135 | this.label_error.Name = "label_error"; 136 | this.label_error.Size = new System.Drawing.Size(226, 13); 137 | this.label_error.TabIndex = 8; 138 | this.label_error.Text = "Loading the CSV failed with the following error:"; 139 | // 140 | // button_regsave 141 | // 142 | this.button_regsave.Location = new System.Drawing.Point(907, 10); 143 | this.button_regsave.Name = "button_regsave"; 144 | this.button_regsave.Size = new System.Drawing.Size(95, 23); 145 | this.button_regsave.TabIndex = 9; 146 | this.button_regsave.Text = "Save To File"; 147 | this.button_regsave.UseVisualStyleBackColor = true; 148 | this.button_regsave.Click += new System.EventHandler(this.button_regsave_Click); 149 | // 150 | // button_regload 151 | // 152 | this.button_regload.Location = new System.Drawing.Point(808, 10); 153 | this.button_regload.Name = "button_regload"; 154 | this.button_regload.Size = new System.Drawing.Size(95, 23); 155 | this.button_regload.TabIndex = 10; 156 | this.button_regload.Text = "Load From File"; 157 | this.button_regload.UseVisualStyleBackColor = true; 158 | this.button_regload.Click += new System.EventHandler(this.button_regload_Click); 159 | // 160 | // label_assign 161 | // 162 | this.label_assign.AutoSize = true; 163 | this.label_assign.Location = new System.Drawing.Point(733, 14); 164 | this.label_assign.Name = "label_assign"; 165 | this.label_assign.Size = new System.Drawing.Size(69, 13); 166 | this.label_assign.TabIndex = 11; 167 | this.label_assign.Text = "Assignments:"; 168 | // 169 | // CSV_Row_Assigner 170 | // 171 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 172 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 173 | this.ClientSize = new System.Drawing.Size(1014, 629); 174 | this.Controls.Add(this.label_assign); 175 | this.Controls.Add(this.button_regload); 176 | this.Controls.Add(this.button_regsave); 177 | this.Controls.Add(this.label_error); 178 | this.Controls.Add(this.label5); 179 | this.Controls.Add(this.label4); 180 | this.Controls.Add(this.combo_Headers); 181 | this.Controls.Add(this.label3); 182 | this.Controls.Add(this.combo_Separator); 183 | this.Controls.Add(this.label2); 184 | this.Controls.Add(this.combo_Encoding); 185 | this.Controls.Add(this.label1); 186 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; 187 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 188 | this.MaximizeBox = false; 189 | this.Name = "CSV_Row_Assigner"; 190 | this.Text = "CSV Row Assigner"; 191 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CSV_Row_Assigner_FormClosing); 192 | this.ResumeLayout(false); 193 | this.PerformLayout(); 194 | 195 | } 196 | 197 | #endregion 198 | 199 | private System.Windows.Forms.Label label1; 200 | private System.Windows.Forms.ComboBox combo_Encoding; 201 | private System.Windows.Forms.Label label2; 202 | private System.Windows.Forms.ComboBox combo_Separator; 203 | private System.Windows.Forms.Label label3; 204 | private System.Windows.Forms.ComboBox combo_Headers; 205 | private System.Windows.Forms.Label label4; 206 | private System.Windows.Forms.Label label5; 207 | private System.Windows.Forms.Label label_error; 208 | private System.Windows.Forms.Button button_regsave; 209 | private System.Windows.Forms.Button button_regload; 210 | private System.Windows.Forms.Label label_assign; 211 | 212 | 213 | } 214 | } 215 | -------------------------------------------------------------------------------- /source/CSV_Row_Assigner.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Text; 7 | using System.Windows.Forms; 8 | using LumenWorks.Framework.IO.Csv; 9 | 10 | 11 | namespace Contact_Conversion_Wizard 12 | { 13 | public partial class CSV_Row_Assigner : Form 14 | { 15 | ComboBox[] combo_array; 16 | Label[,] label_array; 17 | Label[] label_header_array; 18 | string[] combo_options = new string[] { "(ignore)", "Lastname", "Firstname", "Company", "Home", "Work", "Mobile", "HomeFax", "WorkFax", "Street", "ZIP Code", "City", "eMail", "Notes" }; 19 | const int row_distance = 24; 20 | const int top_free = 60; 21 | string[] headers; 22 | string my_filename; 23 | List my_LineList; 24 | int[] my_assist_helper; 25 | bool already_drawn = false; 26 | 27 | public CSV_Row_Assigner(string the_filename, ref List the_LineList, ref int[] the_assist_helper) 28 | { 29 | my_LineList = the_LineList; 30 | my_filename = the_filename; 31 | my_assist_helper = the_assist_helper; 32 | 33 | InitializeComponent(); 34 | combo_Separator.SelectedIndex = 0; 35 | combo_Headers.SelectedIndex = 0; 36 | combo_Encoding.SelectedIndex = 0; 37 | 38 | combo_Encoding.SelectedIndexChanged += new System.EventHandler(this.someCombo_SelectedIndexChanged); 39 | combo_Separator.SelectedIndexChanged += new System.EventHandler(this.someCombo_SelectedIndexChanged); 40 | combo_Headers.SelectedIndexChanged += new System.EventHandler(this.someCombo_SelectedIndexChanged); 41 | 42 | CSV_SettingsChanged(); 43 | } 44 | 45 | private void CSV_SettingsChanged() 46 | { 47 | bool has_headers = false; 48 | if (combo_Headers.SelectedIndex == 0) { has_headers = true; } 49 | 50 | bool has_unicode = false; 51 | if (combo_Encoding.SelectedIndex == 0) { has_unicode = true; } 52 | 53 | char char_sep = ','; 54 | if (combo_Separator.SelectedIndex == 1) { char_sep = ';'; } 55 | if (combo_Separator.SelectedIndex == 2) { char_sep = '\t'; } 56 | 57 | string reload_success = CSV_ReloadData(my_filename, has_headers, has_unicode, char_sep, ref my_LineList, ref headers); 58 | CSV_ReDrawMain(reload_success); 59 | } 60 | 61 | private string CSV_ReloadData(string my_filename, bool is_headers, bool is_unicode, char char_separator, ref List LineList, ref string[] headers) 62 | { 63 | LineList.Clear(); 64 | 65 | // uses CSVreader Library from http://www.codeproject.com/KB/database/CsvReader.aspx under MIT License 66 | int fieldCount; 67 | 68 | System.IO.StreamReader myReader; 69 | if (is_unicode == true) 70 | { myReader = new System.IO.StreamReader(my_filename, Encoding.UTF8); } 71 | else 72 | { myReader = new System.IO.StreamReader(my_filename, Encoding.GetEncoding("ISO-8859-1")); } 73 | 74 | // open the file, which is a CSV file with or without headers 75 | 76 | try 77 | { 78 | using (CsvReader csv = new CsvReader(myReader, is_headers, char_separator)) 79 | { 80 | fieldCount = csv.FieldCount; 81 | if (is_headers == true) { headers = csv.GetFieldHeaders(); } 82 | else { headers = null; } 83 | 84 | while (csv.ReadNextRecord()) 85 | { 86 | string[] temparray = new string[fieldCount]; 87 | csv.CopyCurrentRecordTo(temparray); 88 | LineList.Add(temparray); 89 | } 90 | } 91 | } 92 | catch (Exception e) 93 | { 94 | myReader.Close(); 95 | return (e.ToString()); 96 | } 97 | 98 | myReader.Close(); 99 | return ("success"); 100 | } 101 | 102 | private void CSV_ReDrawMain(string reader_success) 103 | { 104 | // first remove everything already in the arrays! 105 | if (already_drawn == true) 106 | { 107 | foreach (Label x in label_header_array) 108 | { x.Dispose(); } 109 | 110 | foreach (Label y in label_array) 111 | { y.Dispose(); } 112 | 113 | foreach (ComboBox z in combo_array) 114 | { z.Dispose(); } 115 | 116 | } 117 | 118 | if (reader_success != "success") 119 | { 120 | // draw the content of reader_success somewhere in the middle of the screen 121 | label_error.Text = "Loading the CSV failed with the following error:" + Environment.NewLine + reader_success; 122 | label_error.Visible = true; 123 | return; 124 | } 125 | else 126 | { 127 | label_error.Visible = false; 128 | } 129 | 130 | 131 | // from some place else 132 | // read first line and place it in header 133 | 134 | // 13 fields can be used for: 135 | // (3) lastname / firstname / company 136 | // (3) home / work / mobile 137 | // (2) homefax / workfax 138 | // (5) street / zip / city / email / comments 139 | 140 | // then reset the arrays 141 | int coloumns = my_LineList[0].GetLength(0); 142 | this.Text = "CSV Row Assigner" + " (" + my_LineList.Count + " x " + coloumns + ")"; 143 | 144 | combo_array = new ComboBox[coloumns]; 145 | label_array = new Label[5, coloumns]; 146 | label_header_array = new Label[5]; 147 | 148 | // and then draw stuff again 149 | for (int i = 0; i < coloumns; i++) 150 | { 151 | combo_array[i] = new ComboBox(); 152 | combo_array[i].DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 153 | combo_array[i].FormattingEnabled = true; 154 | combo_array[i].Items.AddRange(combo_options); 155 | combo_array[i].Location = new System.Drawing.Point(9, 43 + top_free + (row_distance * i)); 156 | combo_array[i].Name = "combo_sel" + i; 157 | combo_array[i].Size = new System.Drawing.Size(118, 21); 158 | this.Controls.Add(combo_array[i]); 159 | 160 | for (int j = 0; j < 5; j++) 161 | { 162 | if (i == 0) 163 | { 164 | // draw the header 165 | label_header_array[j] = new Label(); 166 | // 167 | // label2 168 | // 169 | label_header_array[j].AutoSize = true; 170 | label_header_array[j].Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 171 | label_header_array[j].Location = new System.Drawing.Point(166 + (170 * j), 16 + top_free); 172 | label_header_array[j].Name = "label_h" + j.ToString(); 173 | label_header_array[j].Size = new System.Drawing.Size(68, 20); 174 | label_header_array[j].TabIndex = 79; 175 | if (headers != null && j == 0) 176 | { label_header_array[j].Text = "Header"; } 177 | else 178 | { 179 | if (headers != null) 180 | { label_header_array[j].Text = "Row #" + (j-1); } 181 | else 182 | { label_header_array[j].Text = "Row #" + j; } 183 | } 184 | this.Controls.Add(label_header_array[j]); 185 | 186 | 187 | } 188 | 189 | label_array[j, i] = new Label(); 190 | label_array[j, i].AutoSize = true; 191 | label_array[j, i].Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 192 | label_array[j, i].Location = new System.Drawing.Point(167 + (j * 170), 46 + top_free + (row_distance * i)); 193 | label_array[j, i].Name = "label_r" + j.ToString() + "c" + i.ToString("00"); 194 | label_array[j, i].Size = new System.Drawing.Size(73, 13); 195 | label_array[j, i].Text = "label_r" + j.ToString() + "c" + i.ToString("00"); 196 | this.Controls.Add(label_array[j, i]); 197 | } 198 | 199 | 200 | } 201 | 202 | already_drawn = true; 203 | 204 | this.Size = new System.Drawing.Size(this.Size.Width, (110 + row_distance * coloumns) + top_free); 205 | 206 | foreach (ComboBox my_cb in combo_array) 207 | { my_cb.SelectedIndex = 0; } 208 | 209 | int still_to_fill = 5; 210 | int adder = 0; 211 | 212 | if (headers != null) 213 | { 214 | adder = 1; 215 | still_to_fill = 4; 216 | } 217 | 218 | 219 | for (int i = 0; i < coloumns; i++) 220 | { 221 | if (headers != null) 222 | { 223 | label_array[0, i].Text = "H:" + headers[i]; 224 | } 225 | 226 | 227 | for (int j = 0; j < still_to_fill; j++) 228 | { 229 | 230 | if (j < my_LineList.Count) 231 | { 232 | label_array[j + adder, i].Text = my_LineList[j][i]; 233 | } 234 | else 235 | { 236 | label_array[j + adder, i].Text = ""; 237 | } 238 | } 239 | } 240 | 241 | // auto assign selected-text if header matches an option available in the combobox 242 | if (headers != null) 243 | { 244 | for (int i = 0; i < coloumns; i++) 245 | { 246 | for (int j = 0; j < combo_options.GetLength(0); j++) 247 | { 248 | if (headers[i] == combo_options[j]) 249 | { 250 | combo_array[i].SelectedIndex = j; 251 | } 252 | } 253 | } 254 | } 255 | 256 | } 257 | 258 | private void CSV_Row_Assigner_FormClosing(object sender, FormClosingEventArgs e) 259 | { 260 | // save data from comboboxes to assist_helper int[], which will then hopefully be available to the main form 261 | for (int i = 0; i < my_LineList[0].GetLength(0); i++) 262 | { my_assist_helper[i] = combo_array[i].SelectedIndex - 1; } 263 | } 264 | 265 | private void someCombo_SelectedIndexChanged(object sender, EventArgs e) 266 | { 267 | // re run everything 268 | CSV_SettingsChanged(); 269 | } 270 | 271 | private void combo_set(ComboBox cb_to_set, string value_to_set) 272 | { 273 | if (cb_to_set.Items.Count > 0) 274 | { 275 | for (int i = 0; i < cb_to_set.Items.Count; i++) 276 | { 277 | if (cb_to_set.Items[i].ToString() == value_to_set) 278 | { 279 | cb_to_set.SelectedIndex = i; 280 | return; 281 | } 282 | } 283 | } 284 | } 285 | 286 | private void button_regsave_Click(object sender, EventArgs e) 287 | { 288 | string FullCFGfilePath = Form1.MySaveFolder + System.IO.Path.DirectorySeparatorChar + "CCW-CSV-Assigner.config"; 289 | StringBuilder sb = new StringBuilder(); 290 | 291 | sb.AppendLine("cfg_csv_encoding" + "\t" + combo_Encoding.SelectedItem.ToString()); 292 | sb.AppendLine("cfg_csv_separator" + "\t" + combo_Separator.SelectedItem.ToString()); 293 | sb.AppendLine("cfg_csv_headers" + "\t" + combo_Headers.SelectedItem.ToString()); 294 | 295 | 296 | for (int i = 0; i < combo_array.Length; i++) 297 | { 298 | 299 | sb.AppendLine("cfg_csv_combo_" + i.ToString() + "\t" + combo_array[i].SelectedItem.ToString()); 300 | 301 | // for (int j = 0; j < combo_options.GetLength(0); j++) 302 | // { 303 | // if (headers[i] == combo_options[j]) 304 | // { 305 | // combo_array[i].SelectedIndex = j; 306 | //} 307 | // } 308 | } 309 | 310 | 311 | System.IO.File.WriteAllText(FullCFGfilePath, sb.ToString(), Encoding.UTF8); 312 | 313 | 314 | } 315 | 316 | private void button_regload_Click(object sender, EventArgs e) 317 | { 318 | 319 | string FullCFGfilePath = Form1.MySaveFolder + System.IO.Path.DirectorySeparatorChar + "CCW-CSV-Assigner.config"; 320 | 321 | if (System.IO.File.Exists(FullCFGfilePath)) 322 | { 323 | System.IO.StreamReader file_cleartext_read; 324 | file_cleartext_read = new System.IO.StreamReader(FullCFGfilePath, Encoding.UTF8); 325 | string curline; 326 | StringBuilder builder = new StringBuilder(); 327 | while ((curline = file_cleartext_read.ReadLine()) != null) 328 | { 329 | // hachre CCW Bugfix: 3.0.0.2 (ComboBox loading Problem in Mono) - previously: builder.Append(curline + "\r\n"); 330 | builder.Append(curline + Environment.NewLine); 331 | } 332 | file_cleartext_read.Close(); 333 | 334 | // then regEx Split by NewLine into array of lines 335 | string[] allParseLines = System.Text.RegularExpressions.Regex.Split(builder.ToString(), Environment.NewLine); 336 | 337 | foreach (string ParseLine in allParseLines) 338 | { 339 | if (ParseLine == string.Empty) { continue; } // skip empty lines 340 | if (ParseLine.IndexOf("\t") == -1) { continue; } // skip lines without TAB 341 | if (ParseLine.Substring(0, ParseLine.IndexOf("\t")) == "cfg_csv_separator") { combo_set(combo_Separator, ParseLine.Substring(ParseLine.IndexOf("\t") + 1)); continue; } 342 | if (ParseLine.Substring(0, ParseLine.IndexOf("\t")) == "cfg_csv_headers") { combo_set(combo_Headers, ParseLine.Substring(ParseLine.IndexOf("\t") + 1)); continue; } 343 | if (ParseLine.Substring(0, ParseLine.IndexOf("\t")) == "cfg_csv_encoding") { combo_set(combo_Encoding, ParseLine.Substring(ParseLine.IndexOf("\t") + 1)); continue; } 344 | 345 | if (ParseLine.Substring(0, ParseLine.IndexOf("\t")).StartsWith("cfg_csv_combo_") == true) 346 | { 347 | // value to set to: 348 | string set_value = ParseLine.Substring(ParseLine.IndexOf("\t") + 1); 349 | 350 | // combobox we are setting this to 351 | string count_value = ParseLine.Substring(ParseLine.IndexOf("cfg_csv_combo_") + "cfg_csv_combo_".Length); 352 | int count_box = Convert.ToInt32(count_value.Substring(0, count_value.IndexOf("\t"))); 353 | 354 | if ((combo_array.Length-1) >= count_box) 355 | { 356 | for (int j = 0; j < combo_options.GetLength(0); j++) 357 | { 358 | if (combo_options[j] == set_value) 359 | { 360 | combo_array[count_box].SelectedIndex = j; 361 | } 362 | } 363 | } 364 | // ; 365 | continue; 366 | } 367 | 368 | 369 | } 370 | 371 | } 372 | } 373 | 374 | 375 | } 376 | } 377 | -------------------------------------------------------------------------------- /source/Contact-Conversion-Wizard.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | Debug 7 | AnyCPU 8 | {FED6E532-82B7-4A96-A9FB-8914230651C4} 9 | WinExe 10 | Contact_Conversion_Wizard 11 | Contact-Conversion-Wizard 12 | v4.0 13 | 512 14 | true 15 | false 16 | 17 | 18 | publish\ 19 | true 20 | Disk 21 | false 22 | Foreground 23 | 7 24 | Days 25 | false 26 | false 27 | true 28 | https://github.com/Rillke/Contact-Conversion-Wizard 29 | Contact Conversion Wizard 30 | 1 31 | 3.5.0.%2a 32 | false 33 | true 34 | 35 | 36 | AnyCPU 37 | true 38 | full 39 | false 40 | bin\Debug\ 41 | DEBUG;TRACE 42 | prompt 43 | 4 44 | 45 | 46 | AnyCPU 47 | pdbonly 48 | true 49 | bin\Release\ 50 | TRACE 51 | prompt 52 | 4 53 | 54 | 55 | CCW-Large.ico 56 | 57 | 58 | 59 | packages\Google.GData.Client.2.2.0.0\lib\Google.GData.Client.dll 60 | 61 | 62 | packages\Google.GData.Contacts.2.2.0.0\lib\Google.GData.Contacts.dll 63 | 64 | 65 | packages\Google.GData.Extensions.2.2.0.0\lib\Google.GData.Extensions.dll 66 | 67 | 68 | LumenWorks\LumenWorks.Framework.IO.dll 69 | 70 | 71 | packages\Microsoft.Office.Interop.Outlook.15.0.4797.1003\lib\net20\Microsoft.Office.Interop.Outlook.dll 72 | True 73 | 74 | 75 | packages\Newtonsoft.Json.4.0.5\lib\net40\Newtonsoft.Json.dll 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | Form 91 | 92 | 93 | CSV_Row_Assigner.cs 94 | 95 | 96 | Form 97 | 98 | 99 | EditConfiguration.cs 100 | 101 | 102 | Form 103 | 104 | 105 | Form1.cs 106 | 107 | 108 | Form 109 | 110 | 111 | ImportGroupsChooser.cs 112 | 113 | 114 | 115 | 116 | True 117 | True 118 | Resources.resx 119 | 120 | 121 | Form 122 | 123 | 124 | SimpleInputDialog.cs 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | CSV_Row_Assigner.cs 134 | 135 | 136 | EditConfiguration.cs 137 | 138 | 139 | Form1.cs 140 | 141 | 142 | ImportGroupsChooser.cs 143 | 144 | 145 | PublicResXFileCodeGenerator 146 | Resources.Designer.cs 147 | 148 | 149 | SimpleInputDialog.cs 150 | 151 | 152 | 153 | 154 | False 155 | .NET Framework 3.5 SP1 156 | false 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 167 | 168 | 169 | 170 | 171 | del Contact Conversion Wizard.exe 172 | ..\..\packages\ILRepack.2.0.18\tools\ILRepack.exe /out:"Contact Conversion Wizard.exe" Contact-Conversion-Wizard.exe Google.GData.Client.dll Google.GData.Contacts.dll Google.GData.Extensions.dll LumenWorks.Framework.IO.dll Newtonsoft.Json.dll 173 | 174 | -------------------------------------------------------------------------------- /source/Contact-Conversion-Wizard.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.852 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Contact-Conversion-Wizard", "Contact-Conversion-Wizard.csproj", "{FED6E532-82B7-4A96-A9FB-8914230651C4}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {FED6E532-82B7-4A96-A9FB-8914230651C4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {FED6E532-82B7-4A96-A9FB-8914230651C4}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {FED6E532-82B7-4A96-A9FB-8914230651C4}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {FED6E532-82B7-4A96-A9FB-8914230651C4}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | RESX_NeutralResourcesLanguage = de-DE 24 | SolutionGuid = {B5D2E9A0-B3D7-4595-81AC-3A05AD60F51A} 25 | EndGlobalSection 26 | EndGlobal 27 | -------------------------------------------------------------------------------- /source/Contact-Conversion-Wizard_ml.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/EditConfiguration.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Contact_Conversion_Wizard 2 | { 3 | partial class EditConfiguration 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditConfiguration)); 32 | this.lbl_configtitle = new System.Windows.Forms.Label(); 33 | this.OPT_adjustcol = new System.Windows.Forms.CheckBox(); 34 | this.OPT_hidecol = new System.Windows.Forms.CheckBox(); 35 | this.checkBox_cleanXchar = new System.Windows.Forms.CheckBox(); 36 | this.checkBox_cleanHyphen = new System.Windows.Forms.CheckBox(); 37 | this.checkBox_cleanHashKey = new System.Windows.Forms.CheckBox(); 38 | this.checkBox_cleanBrackets = new System.Windows.Forms.CheckBox(); 39 | this.label_cleanheader = new System.Windows.Forms.Label(); 40 | this.OPT_prefixNONFB = new System.Windows.Forms.CheckBox(); 41 | this.checkBox_cleanSlash = new System.Windows.Forms.CheckBox(); 42 | this.OPT_importOther = new System.Windows.Forms.CheckBox(); 43 | this.label1 = new System.Windows.Forms.Label(); 44 | this.lbl_gMail_login = new System.Windows.Forms.Label(); 45 | this.lbl_gMail_pass = new System.Windows.Forms.Label(); 46 | this.textBox_gLogin = new System.Windows.Forms.TextBox(); 47 | this.textBox_gPass = new System.Windows.Forms.TextBox(); 48 | this.OPT_DUPren = new System.Windows.Forms.CheckBox(); 49 | this.checkBox_checkVersion = new System.Windows.Forms.CheckBox(); 50 | this.checkBox_cleanSpace = new System.Windows.Forms.CheckBox(); 51 | this.checkBox_cleanSquareBrackets = new System.Windows.Forms.CheckBox(); 52 | this.checkBox_cleanLetters = new System.Windows.Forms.CheckBox(); 53 | this.label_google_hint = new System.Windows.Forms.Label(); 54 | this.checkBox_cleanaddzeroprefix = new System.Windows.Forms.CheckBox(); 55 | this.label_Outlook = new System.Windows.Forms.Label(); 56 | this.checkBox_OutlookEmptyNumber = new System.Windows.Forms.CheckBox(); 57 | this.checkBox_OutlookEmptyName = new System.Windows.Forms.CheckBox(); 58 | this.label_Nextcloud = new System.Windows.Forms.Label(); 59 | this.checkBox_nextcloud_vfc_fix = new System.Windows.Forms.CheckBox(); 60 | this.SuspendLayout(); 61 | // 62 | // lbl_configtitle 63 | // 64 | this.lbl_configtitle.AutoSize = true; 65 | this.lbl_configtitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 66 | this.lbl_configtitle.Location = new System.Drawing.Point(12, 9); 67 | this.lbl_configtitle.Name = "lbl_configtitle"; 68 | this.lbl_configtitle.Size = new System.Drawing.Size(252, 20); 69 | this.lbl_configtitle.TabIndex = 6; 70 | this.lbl_configtitle.Text = "General configuration settings"; 71 | // 72 | // OPT_adjustcol 73 | // 74 | this.OPT_adjustcol.AutoSize = true; 75 | this.OPT_adjustcol.Location = new System.Drawing.Point(16, 68); 76 | this.OPT_adjustcol.Name = "OPT_adjustcol"; 77 | this.OPT_adjustcol.Size = new System.Drawing.Size(196, 17); 78 | this.OPT_adjustcol.TabIndex = 5; 79 | this.OPT_adjustcol.Text = "Allow adjusting the width of columns"; 80 | this.OPT_adjustcol.UseVisualStyleBackColor = true; 81 | // 82 | // OPT_hidecol 83 | // 84 | this.OPT_hidecol.AutoSize = true; 85 | this.OPT_hidecol.Location = new System.Drawing.Point(16, 45); 86 | this.OPT_hidecol.Name = "OPT_hidecol"; 87 | this.OPT_hidecol.Size = new System.Drawing.Size(188, 17); 88 | this.OPT_hidecol.TabIndex = 4; 89 | this.OPT_hidecol.Text = "Hide columns that contain no data"; 90 | this.OPT_hidecol.UseVisualStyleBackColor = true; 91 | // 92 | // checkBox_cleanXchar 93 | // 94 | this.checkBox_cleanXchar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 95 | this.checkBox_cleanXchar.AutoSize = true; 96 | this.checkBox_cleanXchar.Location = new System.Drawing.Point(16, 404); 97 | this.checkBox_cleanXchar.Name = "checkBox_cleanXchar"; 98 | this.checkBox_cleanXchar.Size = new System.Drawing.Size(69, 17); 99 | this.checkBox_cleanXchar.TabIndex = 8; 100 | this.checkBox_cleanXchar.Text = "Keep \"x\""; 101 | this.checkBox_cleanXchar.UseVisualStyleBackColor = true; 102 | // 103 | // checkBox_cleanHyphen 104 | // 105 | this.checkBox_cleanHyphen.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 106 | this.checkBox_cleanHyphen.AutoSize = true; 107 | this.checkBox_cleanHyphen.Location = new System.Drawing.Point(16, 381); 108 | this.checkBox_cleanHyphen.Name = "checkBox_cleanHyphen"; 109 | this.checkBox_cleanHyphen.Size = new System.Drawing.Size(67, 17); 110 | this.checkBox_cleanHyphen.TabIndex = 7; 111 | this.checkBox_cleanHyphen.Text = "Keep \"-\""; 112 | this.checkBox_cleanHyphen.UseVisualStyleBackColor = true; 113 | // 114 | // checkBox_cleanHashKey 115 | // 116 | this.checkBox_cleanHashKey.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 117 | this.checkBox_cleanHashKey.AutoSize = true; 118 | this.checkBox_cleanHashKey.Location = new System.Drawing.Point(16, 358); 119 | this.checkBox_cleanHashKey.Name = "checkBox_cleanHashKey"; 120 | this.checkBox_cleanHashKey.Size = new System.Drawing.Size(71, 17); 121 | this.checkBox_cleanHashKey.TabIndex = 10; 122 | this.checkBox_cleanHashKey.Text = "Keep \"#\""; 123 | this.checkBox_cleanHashKey.UseVisualStyleBackColor = true; 124 | // 125 | // checkBox_cleanBrackets 126 | // 127 | this.checkBox_cleanBrackets.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 128 | this.checkBox_cleanBrackets.AutoSize = true; 129 | this.checkBox_cleanBrackets.Location = new System.Drawing.Point(16, 335); 130 | this.checkBox_cleanBrackets.Name = "checkBox_cleanBrackets"; 131 | this.checkBox_cleanBrackets.Size = new System.Drawing.Size(104, 17); 132 | this.checkBox_cleanBrackets.TabIndex = 9; 133 | this.checkBox_cleanBrackets.Text = "Keep \"(\" and \")\""; 134 | this.checkBox_cleanBrackets.UseVisualStyleBackColor = true; 135 | // 136 | // label_cleanheader 137 | // 138 | this.label_cleanheader.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 139 | this.label_cleanheader.AutoSize = true; 140 | this.label_cleanheader.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 141 | this.label_cleanheader.Location = new System.Drawing.Point(12, 312); 142 | this.label_cleanheader.Name = "label_cleanheader"; 143 | this.label_cleanheader.Size = new System.Drawing.Size(289, 20); 144 | this.label_cleanheader.TabIndex = 11; 145 | this.label_cleanheader.Text = "Cleanup phone numbers on export:"; 146 | // 147 | // OPT_prefixNONFB 148 | // 149 | this.OPT_prefixNONFB.AutoSize = true; 150 | this.OPT_prefixNONFB.Location = new System.Drawing.Point(16, 91); 151 | this.OPT_prefixNONFB.Name = "OPT_prefixNONFB"; 152 | this.OPT_prefixNONFB.Size = new System.Drawing.Size(175, 17); 153 | this.OPT_prefixNONFB.TabIndex = 12; 154 | this.OPT_prefixNONFB.Text = "Export Prefixes for non-Fritz!Box"; 155 | this.OPT_prefixNONFB.UseVisualStyleBackColor = true; 156 | // 157 | // checkBox_cleanSlash 158 | // 159 | this.checkBox_cleanSlash.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 160 | this.checkBox_cleanSlash.AutoSize = true; 161 | this.checkBox_cleanSlash.Location = new System.Drawing.Point(16, 427); 162 | this.checkBox_cleanSlash.Name = "checkBox_cleanSlash"; 163 | this.checkBox_cleanSlash.Size = new System.Drawing.Size(69, 17); 164 | this.checkBox_cleanSlash.TabIndex = 13; 165 | this.checkBox_cleanSlash.Text = "Keep \"/\""; 166 | this.checkBox_cleanSlash.UseVisualStyleBackColor = true; 167 | // 168 | // OPT_importOther 169 | // 170 | this.OPT_importOther.AutoSize = true; 171 | this.OPT_importOther.Location = new System.Drawing.Point(16, 109); 172 | this.OPT_importOther.Name = "OPT_importOther"; 173 | this.OPT_importOther.Size = new System.Drawing.Size(301, 30); 174 | this.OPT_importOther.TabIndex = 14; 175 | this.OPT_importOther.Text = "Import additional phone numbers if a home or work number\r\nfield remains empty. So" + 176 | "urce: Outlook:Other / Google:Main.\r\n"; 177 | this.OPT_importOther.UseVisualStyleBackColor = true; 178 | // 179 | // label1 180 | // 181 | this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 182 | this.label1.AutoSize = true; 183 | this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 184 | this.label1.Location = new System.Drawing.Point(12, 539); 185 | this.label1.Name = "label1"; 186 | this.label1.Size = new System.Drawing.Size(323, 20); 187 | this.label1.TabIndex = 17; 188 | this.label1.Text = "Google account for direct import/export"; 189 | // 190 | // lbl_gMail_login 191 | // 192 | this.lbl_gMail_login.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 193 | this.lbl_gMail_login.AutoSize = true; 194 | this.lbl_gMail_login.Location = new System.Drawing.Point(17, 573); 195 | this.lbl_gMail_login.Name = "lbl_gMail_login"; 196 | this.lbl_gMail_login.Size = new System.Drawing.Size(73, 13); 197 | this.lbl_gMail_login.TabIndex = 18; 198 | this.lbl_gMail_login.Text = "Google Login:"; 199 | // 200 | // lbl_gMail_pass 201 | // 202 | this.lbl_gMail_pass.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 203 | this.lbl_gMail_pass.AutoSize = true; 204 | this.lbl_gMail_pass.Location = new System.Drawing.Point(17, 599); 205 | this.lbl_gMail_pass.Name = "lbl_gMail_pass"; 206 | this.lbl_gMail_pass.Size = new System.Drawing.Size(93, 13); 207 | this.lbl_gMail_pass.TabIndex = 19; 208 | this.lbl_gMail_pass.Text = "Google Password:"; 209 | // 210 | // textBox_gLogin 211 | // 212 | this.textBox_gLogin.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 213 | this.textBox_gLogin.Location = new System.Drawing.Point(125, 570); 214 | this.textBox_gLogin.Name = "textBox_gLogin"; 215 | this.textBox_gLogin.Size = new System.Drawing.Size(180, 20); 216 | this.textBox_gLogin.TabIndex = 20; 217 | // 218 | // textBox_gPass 219 | // 220 | this.textBox_gPass.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 221 | this.textBox_gPass.Location = new System.Drawing.Point(125, 597); 222 | this.textBox_gPass.Name = "textBox_gPass"; 223 | this.textBox_gPass.Size = new System.Drawing.Size(180, 20); 224 | this.textBox_gPass.TabIndex = 21; 225 | this.textBox_gPass.UseSystemPasswordChar = true; 226 | // 227 | // OPT_DUPren 228 | // 229 | this.OPT_DUPren.AutoSize = true; 230 | this.OPT_DUPren.Location = new System.Drawing.Point(16, 144); 231 | this.OPT_DUPren.Name = "OPT_DUPren"; 232 | this.OPT_DUPren.Size = new System.Drawing.Size(296, 17); 233 | this.OPT_DUPren.TabIndex = 24; 234 | this.OPT_DUPren.Text = "Allow import of duplicate names by numbering them 00-99"; 235 | this.OPT_DUPren.UseVisualStyleBackColor = true; 236 | // 237 | // checkBox_checkVersion 238 | // 239 | this.checkBox_checkVersion.AutoSize = true; 240 | this.checkBox_checkVersion.Location = new System.Drawing.Point(16, 167); 241 | this.checkBox_checkVersion.Name = "checkBox_checkVersion"; 242 | this.checkBox_checkVersion.Size = new System.Drawing.Size(182, 17); 243 | this.checkBox_checkVersion.TabIndex = 25; 244 | this.checkBox_checkVersion.Text = "Check for new version on startup"; 245 | this.checkBox_checkVersion.UseVisualStyleBackColor = true; 246 | // 247 | // checkBox_cleanSpace 248 | // 249 | this.checkBox_cleanSpace.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 250 | this.checkBox_cleanSpace.AutoSize = true; 251 | this.checkBox_cleanSpace.Location = new System.Drawing.Point(16, 450); 252 | this.checkBox_cleanSpace.Name = "checkBox_cleanSpace"; 253 | this.checkBox_cleanSpace.Size = new System.Drawing.Size(158, 17); 254 | this.checkBox_cleanSpace.TabIndex = 26; 255 | this.checkBox_cleanSpace.Text = "Keep \" \" (space characters)"; 256 | this.checkBox_cleanSpace.UseVisualStyleBackColor = true; 257 | // 258 | // checkBox_cleanSquareBrackets 259 | // 260 | this.checkBox_cleanSquareBrackets.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 261 | this.checkBox_cleanSquareBrackets.AutoSize = true; 262 | this.checkBox_cleanSquareBrackets.Location = new System.Drawing.Point(16, 473); 263 | this.checkBox_cleanSquareBrackets.Name = "checkBox_cleanSquareBrackets"; 264 | this.checkBox_cleanSquareBrackets.Size = new System.Drawing.Size(104, 17); 265 | this.checkBox_cleanSquareBrackets.TabIndex = 27; 266 | this.checkBox_cleanSquareBrackets.Text = "Keep \"[\" and \"]\""; 267 | this.checkBox_cleanSquareBrackets.UseVisualStyleBackColor = true; 268 | // 269 | // checkBox_cleanLetters 270 | // 271 | this.checkBox_cleanLetters.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 272 | this.checkBox_cleanLetters.AutoSize = true; 273 | this.checkBox_cleanLetters.Location = new System.Drawing.Point(16, 496); 274 | this.checkBox_cleanLetters.Name = "checkBox_cleanLetters"; 275 | this.checkBox_cleanLetters.Size = new System.Drawing.Size(129, 17); 276 | this.checkBox_cleanLetters.TabIndex = 28; 277 | this.checkBox_cleanLetters.Text = "Keep \"a-z\" and \"A-Z\""; 278 | this.checkBox_cleanLetters.UseVisualStyleBackColor = true; 279 | // 280 | // label_google_hint 281 | // 282 | this.label_google_hint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 283 | this.label_google_hint.AutoSize = true; 284 | this.label_google_hint.Location = new System.Drawing.Point(17, 620); 285 | this.label_google_hint.Name = "label_google_hint"; 286 | this.label_google_hint.Size = new System.Drawing.Size(320, 13); 287 | this.label_google_hint.TabIndex = 29; 288 | this.label_google_hint.Text = "If you leave the password field empty, you will be asked each time."; 289 | // 290 | // checkBox_cleanaddzeroprefix 291 | // 292 | this.checkBox_cleanaddzeroprefix.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 293 | this.checkBox_cleanaddzeroprefix.AutoSize = true; 294 | this.checkBox_cleanaddzeroprefix.Location = new System.Drawing.Point(16, 519); 295 | this.checkBox_cleanaddzeroprefix.Name = "checkBox_cleanaddzeroprefix"; 296 | this.checkBox_cleanaddzeroprefix.Size = new System.Drawing.Size(232, 17); 297 | this.checkBox_cleanaddzeroprefix.TabIndex = 30; 298 | this.checkBox_cleanaddzeroprefix.Text = "Alway add \"0\" prefix to access outside lines"; 299 | this.checkBox_cleanaddzeroprefix.UseVisualStyleBackColor = true; 300 | // 301 | // label_Outlook 302 | // 303 | this.label_Outlook.Anchor = System.Windows.Forms.AnchorStyles.Top; 304 | this.label_Outlook.AutoSize = true; 305 | this.label_Outlook.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 306 | this.label_Outlook.Location = new System.Drawing.Point(12, 192); 307 | this.label_Outlook.Name = "label_Outlook"; 308 | this.label_Outlook.Size = new System.Drawing.Size(242, 20); 309 | this.label_Outlook.TabIndex = 31; 310 | this.label_Outlook.Text = "Outlook related configuration"; 311 | // 312 | // checkBox_OutlookEmptyNumber 313 | // 314 | this.checkBox_OutlookEmptyNumber.AutoSize = true; 315 | this.checkBox_OutlookEmptyNumber.Location = new System.Drawing.Point(16, 215); 316 | this.checkBox_OutlookEmptyNumber.Name = "checkBox_OutlookEmptyNumber"; 317 | this.checkBox_OutlookEmptyNumber.Size = new System.Drawing.Size(213, 17); 318 | this.checkBox_OutlookEmptyNumber.TabIndex = 32; 319 | this.checkBox_OutlookEmptyNumber.Text = "Allow contact export with empty number"; 320 | this.checkBox_OutlookEmptyNumber.UseVisualStyleBackColor = true; 321 | // 322 | // checkBox_OutlookEmptyName 323 | // 324 | this.checkBox_OutlookEmptyName.AutoSize = true; 325 | this.checkBox_OutlookEmptyName.Location = new System.Drawing.Point(16, 238); 326 | this.checkBox_OutlookEmptyName.Name = "checkBox_OutlookEmptyName"; 327 | this.checkBox_OutlookEmptyName.Size = new System.Drawing.Size(204, 17); 328 | this.checkBox_OutlookEmptyName.TabIndex = 33; 329 | this.checkBox_OutlookEmptyName.Text = "Allow contact export with empty name"; 330 | this.checkBox_OutlookEmptyName.UseVisualStyleBackColor = true; 331 | // 332 | // label_Nextcloud 333 | // 334 | this.label_Nextcloud.Anchor = System.Windows.Forms.AnchorStyles.Top; 335 | this.label_Nextcloud.AutoSize = true; 336 | this.label_Nextcloud.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 337 | this.label_Nextcloud.Location = new System.Drawing.Point(12, 263); 338 | this.label_Nextcloud.Name = "label_Nextcloud"; 339 | this.label_Nextcloud.Size = new System.Drawing.Size(259, 20); 340 | this.label_Nextcloud.TabIndex = 34; 341 | this.label_Nextcloud.Text = "Nextcloud related configuration"; 342 | // 343 | // checkBox_nextcloud_vfc_fix 344 | // 345 | this.checkBox_nextcloud_vfc_fix.AutoSize = true; 346 | this.checkBox_nextcloud_vfc_fix.Location = new System.Drawing.Point(16, 286); 347 | this.checkBox_nextcloud_vfc_fix.Name = "checkBox_nextcloud_vfc_fix"; 348 | this.checkBox_nextcloud_vfc_fix.Size = new System.Drawing.Size(208, 17); 349 | this.checkBox_nextcloud_vfc_fix.TabIndex = 35; 350 | this.checkBox_nextcloud_vfc_fix.Text = "Apply fix for malformatted .vcf contacts"; 351 | this.checkBox_nextcloud_vfc_fix.UseVisualStyleBackColor = true; 352 | // 353 | // EditConfiguration 354 | // 355 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 356 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 357 | this.ClientSize = new System.Drawing.Size(362, 643); 358 | this.Controls.Add(this.checkBox_nextcloud_vfc_fix); 359 | this.Controls.Add(this.label_Nextcloud); 360 | this.Controls.Add(this.checkBox_OutlookEmptyName); 361 | this.Controls.Add(this.checkBox_OutlookEmptyNumber); 362 | this.Controls.Add(this.label_Outlook); 363 | this.Controls.Add(this.checkBox_cleanaddzeroprefix); 364 | this.Controls.Add(this.label_google_hint); 365 | this.Controls.Add(this.checkBox_cleanLetters); 366 | this.Controls.Add(this.checkBox_cleanSquareBrackets); 367 | this.Controls.Add(this.checkBox_cleanSpace); 368 | this.Controls.Add(this.checkBox_checkVersion); 369 | this.Controls.Add(this.OPT_DUPren); 370 | this.Controls.Add(this.textBox_gPass); 371 | this.Controls.Add(this.textBox_gLogin); 372 | this.Controls.Add(this.lbl_gMail_pass); 373 | this.Controls.Add(this.lbl_gMail_login); 374 | this.Controls.Add(this.label1); 375 | this.Controls.Add(this.OPT_importOther); 376 | this.Controls.Add(this.checkBox_cleanSlash); 377 | this.Controls.Add(this.OPT_prefixNONFB); 378 | this.Controls.Add(this.label_cleanheader); 379 | this.Controls.Add(this.checkBox_cleanHashKey); 380 | this.Controls.Add(this.checkBox_cleanBrackets); 381 | this.Controls.Add(this.checkBox_cleanXchar); 382 | this.Controls.Add(this.checkBox_cleanHyphen); 383 | this.Controls.Add(this.lbl_configtitle); 384 | this.Controls.Add(this.OPT_adjustcol); 385 | this.Controls.Add(this.OPT_hidecol); 386 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; 387 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 388 | this.MaximizeBox = false; 389 | this.Name = "EditConfiguration"; 390 | this.Text = "EditConfiguration"; 391 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.EditConfiguration_FormClosing); 392 | this.ResumeLayout(false); 393 | this.PerformLayout(); 394 | 395 | } 396 | 397 | #endregion 398 | 399 | private System.Windows.Forms.Label lbl_configtitle; 400 | private System.Windows.Forms.CheckBox OPT_adjustcol; 401 | private System.Windows.Forms.CheckBox OPT_hidecol; 402 | private System.Windows.Forms.CheckBox checkBox_cleanXchar; 403 | private System.Windows.Forms.CheckBox checkBox_cleanHyphen; 404 | private System.Windows.Forms.CheckBox checkBox_cleanHashKey; 405 | private System.Windows.Forms.CheckBox checkBox_cleanBrackets; 406 | private System.Windows.Forms.Label label_cleanheader; 407 | private System.Windows.Forms.CheckBox OPT_prefixNONFB; 408 | private System.Windows.Forms.CheckBox checkBox_cleanSlash; 409 | private System.Windows.Forms.CheckBox OPT_importOther; 410 | private System.Windows.Forms.Label label1; 411 | private System.Windows.Forms.Label lbl_gMail_login; 412 | private System.Windows.Forms.Label lbl_gMail_pass; 413 | private System.Windows.Forms.TextBox textBox_gLogin; 414 | private System.Windows.Forms.TextBox textBox_gPass; 415 | private System.Windows.Forms.CheckBox OPT_DUPren; 416 | private System.Windows.Forms.CheckBox checkBox_checkVersion; 417 | private System.Windows.Forms.CheckBox checkBox_cleanSpace; 418 | private System.Windows.Forms.CheckBox checkBox_cleanSquareBrackets; 419 | private System.Windows.Forms.CheckBox checkBox_cleanLetters; 420 | private System.Windows.Forms.Label label_google_hint; 421 | private System.Windows.Forms.CheckBox checkBox_cleanaddzeroprefix; 422 | private System.Windows.Forms.Label label_Outlook; 423 | private System.Windows.Forms.CheckBox checkBox_OutlookEmptyNumber; 424 | private System.Windows.Forms.CheckBox checkBox_OutlookEmptyName; 425 | private System.Windows.Forms.Label label_Nextcloud; 426 | private System.Windows.Forms.CheckBox checkBox_nextcloud_vfc_fix; 427 | } 428 | } -------------------------------------------------------------------------------- /source/EditConfiguration.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Drawing; 5 | using System.Text; 6 | using System.Windows.Forms; 7 | 8 | namespace Contact_Conversion_Wizard 9 | { 10 | public partial class EditConfiguration : Form 11 | { 12 | public EditConfiguration() 13 | { 14 | InitializeComponent(); 15 | OPT_hidecol.Checked = Form1.cfg_hideemptycols; 16 | OPT_adjustcol.Checked = Form1.cfg_adjustablecols; 17 | OPT_prefixNONFB.Checked = Form1.cfg_prefixNONFB; 18 | OPT_importOther.Checked = Form1.cfg_importOther; 19 | OPT_DUPren.Checked = Form1.cfg_DUPren; 20 | 21 | checkBox_OutlookEmptyNumber.Checked = Form1.outlook_empty_number; 22 | checkBox_OutlookEmptyName.Checked = Form1.outlook_empty_name; 23 | 24 | checkBox_cleanBrackets.Checked = !Form1.clean_brackets; 25 | checkBox_cleanHashKey.Checked = !Form1.clean_hashkey; 26 | checkBox_cleanSlash.Checked = !Form1.clean_slash; 27 | checkBox_cleanHyphen.Checked = !Form1.clean_hyphen; 28 | checkBox_cleanXchar.Checked = !Form1.clean_xchar; 29 | checkBox_cleanSpace.Checked = !Form1.clean_space; 30 | checkBox_cleanSquareBrackets.Checked = !Form1.clean_squarebrackets; 31 | checkBox_cleanLetters.Checked = !Form1.clean_letters; 32 | checkBox_cleanaddzeroprefix.Checked = Form1.clean_addzeroprefix; 33 | 34 | 35 | textBox_gLogin.Text = Form1.g_login; 36 | textBox_gPass.Text = Form1.g_pass; 37 | 38 | checkBox_checkVersion.Checked = Form1.cfg_checkVersion; 39 | 40 | 41 | } 42 | 43 | private void EditConfiguration_FormClosing(object sender, FormClosingEventArgs e) 44 | { 45 | Form1.cfg_hideemptycols = OPT_hidecol.Checked; 46 | Form1.cfg_adjustablecols = OPT_adjustcol.Checked; 47 | Form1.cfg_prefixNONFB = OPT_prefixNONFB.Checked; 48 | Form1.cfg_importOther = OPT_importOther.Checked; 49 | Form1.cfg_DUPren = OPT_DUPren.Checked; 50 | 51 | Form1.outlook_empty_number = checkBox_OutlookEmptyNumber.Checked; 52 | Form1.outlook_empty_name= checkBox_OutlookEmptyName.Checked; 53 | 54 | Form1.nextcloud_vcf_fix = checkBox_nextcloud_vfc_fix.Checked; 55 | 56 | Form1.clean_brackets = !checkBox_cleanBrackets.Checked; 57 | Form1.clean_hashkey = !checkBox_cleanHashKey.Checked; 58 | Form1.clean_slash = !checkBox_cleanSlash.Checked; 59 | Form1.clean_hyphen = !checkBox_cleanHyphen.Checked; 60 | Form1.clean_xchar = !checkBox_cleanXchar.Checked; 61 | Form1.clean_space = !checkBox_cleanSpace.Checked; 62 | Form1.clean_squarebrackets = !checkBox_cleanSquareBrackets.Checked; 63 | Form1.clean_letters = !checkBox_cleanLetters.Checked; 64 | Form1.clean_addzeroprefix = checkBox_cleanaddzeroprefix.Checked; 65 | 66 | 67 | Form1.g_login = textBox_gLogin.Text; 68 | Form1.g_pass = textBox_gPass.Text; 69 | 70 | Form1.cfg_checkVersion = checkBox_checkVersion.Checked; 71 | 72 | } 73 | 74 | } 75 | 76 | } -------------------------------------------------------------------------------- /source/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Contact_Conversion_Wizard 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 33 | this.btn_read_Outlook = new System.Windows.Forms.Button(); 34 | this.btn_read_vCard = new System.Windows.Forms.Button(); 35 | this.btn_save_FritzXML = new System.Windows.Forms.Button(); 36 | this.btn_save_FritzAdress = new System.Windows.Forms.Button(); 37 | this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); 38 | this.button_clear = new System.Windows.Forms.Button(); 39 | this.panel_right = new System.Windows.Forms.Panel(); 40 | this.button_7270 = new System.Windows.Forms.Button(); 41 | this.button_7390 = new System.Windows.Forms.Button(); 42 | this.label10 = new System.Windows.Forms.Label(); 43 | this.textBox_PicPath = new System.Windows.Forms.TextBox(); 44 | this.label9 = new System.Windows.Forms.Label(); 45 | this.combo_picexport = new System.Windows.Forms.ComboBox(); 46 | this.label2 = new System.Windows.Forms.Label(); 47 | this.combo_prefix = new System.Windows.Forms.ComboBox(); 48 | this.label5 = new System.Windows.Forms.Label(); 49 | this.combo_VIP = new System.Windows.Forms.ComboBox(); 50 | this.btn_save_SnomCSV7 = new System.Windows.Forms.Button(); 51 | this.btn_read_FritzAdress = new System.Windows.Forms.Button(); 52 | this.btn_read_FritzXML = new System.Windows.Forms.Button(); 53 | this.btn_save_vCard = new System.Windows.Forms.Button(); 54 | this.btn_save_Outlook = new System.Windows.Forms.Button(); 55 | this.MyDataGridView = new System.Windows.Forms.DataGridView(); 56 | this.Fullname = new System.Windows.Forms.DataGridViewTextBoxColumn(); 57 | this.MyColLastname = new System.Windows.Forms.DataGridViewTextBoxColumn(); 58 | this.MyColFirstname = new System.Windows.Forms.DataGridViewTextBoxColumn(); 59 | this.MyColCompany = new System.Windows.Forms.DataGridViewTextBoxColumn(); 60 | this.MyColHome = new System.Windows.Forms.DataGridViewTextBoxColumn(); 61 | this.MyColWork = new System.Windows.Forms.DataGridViewTextBoxColumn(); 62 | this.MyColMobile = new System.Windows.Forms.DataGridViewTextBoxColumn(); 63 | this.MyColPreferred = new System.Windows.Forms.DataGridViewTextBoxColumn(); 64 | this.MyColHomeFax = new System.Windows.Forms.DataGridViewTextBoxColumn(); 65 | this.MyColWorkFax = new System.Windows.Forms.DataGridViewTextBoxColumn(); 66 | this.Street = new System.Windows.Forms.DataGridViewTextBoxColumn(); 67 | this.ZIP = new System.Windows.Forms.DataGridViewTextBoxColumn(); 68 | this.City = new System.Windows.Forms.DataGridViewTextBoxColumn(); 69 | this.eMail = new System.Windows.Forms.DataGridViewTextBoxColumn(); 70 | this.VIP = new System.Windows.Forms.DataGridViewTextBoxColumn(); 71 | this.Speeddial = new System.Windows.Forms.DataGridViewTextBoxColumn(); 72 | this.Photo = new System.Windows.Forms.DataGridViewTextBoxColumn(); 73 | this.label6 = new System.Windows.Forms.Label(); 74 | this.label_save = new System.Windows.Forms.Label(); 75 | this.btn_save_SnomCSV8 = new System.Windows.Forms.Button(); 76 | this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); 77 | this.btn_save_TalkSurfCSV = new System.Windows.Forms.Button(); 78 | this.btn_read_genericCSV = new System.Windows.Forms.Button(); 79 | this.btn_save_AastraCSV = new System.Windows.Forms.Button(); 80 | this.btn_save_GrandstreamGXV = new System.Windows.Forms.Button(); 81 | this.btn_read_googleContacts = new System.Windows.Forms.Button(); 82 | this.btn_save_GrandstreamGXP = new System.Windows.Forms.Button(); 83 | this.btn_save_Auerswald = new System.Windows.Forms.Button(); 84 | this.btn_save_googleContacts = new System.Windows.Forms.Button(); 85 | this.btn_save_panasonicCSV = new System.Windows.Forms.Button(); 86 | this.btn_save_vCard_Gigaset = new System.Windows.Forms.Button(); 87 | this.combo_typeprefer = new System.Windows.Forms.ComboBox(); 88 | this.combo_namestyle = new System.Windows.Forms.ComboBox(); 89 | this.combo_outlookimport = new System.Windows.Forms.ComboBox(); 90 | this.panel_left = new System.Windows.Forms.Panel(); 91 | this.label4 = new System.Windows.Forms.Label(); 92 | this.label3 = new System.Windows.Forms.Label(); 93 | this.label1 = new System.Windows.Forms.Label(); 94 | this.label7 = new System.Windows.Forms.Label(); 95 | this.label8 = new System.Windows.Forms.Label(); 96 | this.button_config = new System.Windows.Forms.Button(); 97 | this.button_website = new System.Windows.Forms.Button(); 98 | this.button_forum = new System.Windows.Forms.Button(); 99 | this.backgroundWorker_updateCheck = new System.ComponentModel.BackgroundWorker(); 100 | this.panel_right.SuspendLayout(); 101 | ((System.ComponentModel.ISupportInitialize)(this.MyDataGridView)).BeginInit(); 102 | this.panel_left.SuspendLayout(); 103 | this.SuspendLayout(); 104 | // 105 | // btn_read_Outlook 106 | // 107 | this.btn_read_Outlook.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 108 | this.btn_read_Outlook.Location = new System.Drawing.Point(4, 32); 109 | this.btn_read_Outlook.Name = "btn_read_Outlook"; 110 | this.btn_read_Outlook.Size = new System.Drawing.Size(167, 35); 111 | this.btn_read_Outlook.TabIndex = 0; 112 | this.btn_read_Outlook.Text = "Outlook"; 113 | this.toolTip1.SetToolTip(this.btn_read_Outlook, "Import Contacts from Outlook.\r\n\r\nHold SHIFT to select custom folder!\r\nHold CTRL t" + 114 | "o import only Contacts matching a category!\r\n"); 115 | this.btn_read_Outlook.UseVisualStyleBackColor = true; 116 | this.btn_read_Outlook.Click += new System.EventHandler(this.btn_read_Outlook_Click); 117 | // 118 | // btn_read_vCard 119 | // 120 | this.btn_read_vCard.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 121 | this.btn_read_vCard.Location = new System.Drawing.Point(4, 108); 122 | this.btn_read_vCard.Name = "btn_read_vCard"; 123 | this.btn_read_vCard.Size = new System.Drawing.Size(167, 35); 124 | this.btn_read_vCard.TabIndex = 1; 125 | this.btn_read_vCard.Text = "vCard"; 126 | this.toolTip1.SetToolTip(this.btn_read_vCard, resources.GetString("btn_read_vCard.ToolTip")); 127 | this.btn_read_vCard.UseVisualStyleBackColor = true; 128 | this.btn_read_vCard.Click += new System.EventHandler(this.btn_read_VC_Click); 129 | // 130 | // btn_save_FritzXML 131 | // 132 | this.btn_save_FritzXML.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 133 | this.btn_save_FritzXML.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 134 | this.btn_save_FritzXML.Location = new System.Drawing.Point(836, 70); 135 | this.btn_save_FritzXML.Name = "btn_save_FritzXML"; 136 | this.btn_save_FritzXML.Size = new System.Drawing.Size(167, 35); 137 | this.btn_save_FritzXML.TabIndex = 2; 138 | this.btn_save_FritzXML.Text = "Fritz!Box XML"; 139 | this.toolTip1.SetToolTip(this.btn_save_FritzXML, "Exports contacts to the XML file the Fritz!Box needs when restoring the phonebook" + 140 | ".\r\n\r\nIf shift is pressed when clicking this button, the fax numbers will also be" + 141 | " exported to the XML file."); 142 | this.btn_save_FritzXML.UseVisualStyleBackColor = true; 143 | this.btn_save_FritzXML.Click += new System.EventHandler(this.btn_save_FritzXML_Click); 144 | // 145 | // btn_save_FritzAdress 146 | // 147 | this.btn_save_FritzAdress.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 148 | this.btn_save_FritzAdress.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 149 | this.btn_save_FritzAdress.Location = new System.Drawing.Point(836, 146); 150 | this.btn_save_FritzAdress.Name = "btn_save_FritzAdress"; 151 | this.btn_save_FritzAdress.Size = new System.Drawing.Size(167, 35); 152 | this.btn_save_FritzAdress.TabIndex = 3; 153 | this.btn_save_FritzAdress.Text = "Fritz!adr"; 154 | this.toolTip1.SetToolTip(this.btn_save_FritzAdress, "Export contacts for use in AVM\'s Fritz!Fax & Co programs.\r\nKeep SHIFT pressed to " + 155 | "export only contacts that have a fax number."); 156 | this.btn_save_FritzAdress.UseVisualStyleBackColor = true; 157 | this.btn_save_FritzAdress.Click += new System.EventHandler(this.btn_save_FritzAdr_Click); 158 | // 159 | // openFileDialog1 160 | // 161 | this.openFileDialog1.FileName = "openFileDialog1"; 162 | // 163 | // button_clear 164 | // 165 | this.button_clear.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 166 | | System.Windows.Forms.AnchorStyles.Right))); 167 | this.button_clear.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 168 | this.button_clear.Location = new System.Drawing.Point(378, 476); 169 | this.button_clear.Name = "button_clear"; 170 | this.button_clear.Size = new System.Drawing.Size(249, 49); 171 | this.button_clear.TabIndex = 6; 172 | this.button_clear.Text = "Clear List (0)"; 173 | this.button_clear.UseVisualStyleBackColor = true; 174 | this.button_clear.Click += new System.EventHandler(this.btn_clear_Click); 175 | // 176 | // panel_right 177 | // 178 | this.panel_right.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 179 | this.panel_right.Controls.Add(this.button_7270); 180 | this.panel_right.Controls.Add(this.button_7390); 181 | this.panel_right.Controls.Add(this.label10); 182 | this.panel_right.Controls.Add(this.textBox_PicPath); 183 | this.panel_right.Controls.Add(this.label9); 184 | this.panel_right.Controls.Add(this.combo_picexport); 185 | this.panel_right.Controls.Add(this.label2); 186 | this.panel_right.Controls.Add(this.combo_prefix); 187 | this.panel_right.Location = new System.Drawing.Point(633, 476); 188 | this.panel_right.Name = "panel_right"; 189 | this.panel_right.Size = new System.Drawing.Size(367, 104); 190 | this.panel_right.TabIndex = 7; 191 | // 192 | // button_7270 193 | // 194 | this.button_7270.Location = new System.Drawing.Point(198, 54); 195 | this.button_7270.Name = "button_7270"; 196 | this.button_7270.Size = new System.Drawing.Size(66, 19); 197 | this.button_7270.TabIndex = 8; 198 | this.button_7270.Text = "USB Stick"; 199 | this.button_7270.UseVisualStyleBackColor = true; 200 | this.button_7270.Click += new System.EventHandler(this.button_7270_Click); 201 | // 202 | // button_7390 203 | // 204 | this.button_7390.Location = new System.Drawing.Point(267, 54); 205 | this.button_7390.Name = "button_7390"; 206 | this.button_7390.Size = new System.Drawing.Size(93, 19); 207 | this.button_7390.TabIndex = 7; 208 | this.button_7390.Text = "Internal Memory"; 209 | this.button_7390.UseVisualStyleBackColor = true; 210 | this.button_7390.Click += new System.EventHandler(this.button_7390_Click); 211 | // 212 | // label10 213 | // 214 | this.label10.AutoSize = true; 215 | this.label10.Location = new System.Drawing.Point(14, 56); 216 | this.label10.Name = "label10"; 217 | this.label10.Size = new System.Drawing.Size(175, 13); 218 | this.label10.TabIndex = 6; 219 | this.label10.Text = "Fritz!Box path to embedded images:"; 220 | // 221 | // textBox_PicPath 222 | // 223 | this.textBox_PicPath.Location = new System.Drawing.Point(15, 73); 224 | this.textBox_PicPath.Name = "textBox_PicPath"; 225 | this.textBox_PicPath.Size = new System.Drawing.Size(344, 20); 226 | this.textBox_PicPath.TabIndex = 5; 227 | this.textBox_PicPath.Text = "file:///var/InternerSpeicher/FRITZ/fonpix-custom/"; 228 | // 229 | // label9 230 | // 231 | this.label9.AutoSize = true; 232 | this.label9.Location = new System.Drawing.Point(12, 31); 233 | this.label9.Name = "label9"; 234 | this.label9.Size = new System.Drawing.Size(118, 13); 235 | this.label9.TabIndex = 4; 236 | this.label9.Text = "Export Contact Pictures"; 237 | // 238 | // combo_picexport 239 | // 240 | this.combo_picexport.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 241 | this.combo_picexport.FormattingEnabled = true; 242 | this.combo_picexport.Items.AddRange(new object[] { 243 | "No", 244 | "Yes"}); 245 | this.combo_picexport.Location = new System.Drawing.Point(138, 27); 246 | this.combo_picexport.Name = "combo_picexport"; 247 | this.combo_picexport.Size = new System.Drawing.Size(221, 21); 248 | this.combo_picexport.TabIndex = 3; 249 | this.toolTip1.SetToolTip(this.combo_picexport, "Please select whether you want to export contact pictures or ignore them\r\n"); 250 | // 251 | // label2 252 | // 253 | this.label2.AutoSize = true; 254 | this.label2.Location = new System.Drawing.Point(12, 6); 255 | this.label2.Name = "label2"; 256 | this.label2.Size = new System.Drawing.Size(113, 13); 257 | this.label2.TabIndex = 2; 258 | this.label2.Text = "Output Prefix Removal"; 259 | // 260 | // combo_prefix 261 | // 262 | this.combo_prefix.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 263 | this.combo_prefix.FormattingEnabled = true; 264 | this.combo_prefix.Items.AddRange(new object[] { 265 | "0049 (DE - Germany)", 266 | "0043 (AT - Austria)", 267 | "0041 (CH - Switzerland)", 268 | "0044 (UK - United Kingdom)", 269 | "0039 (IT - Italy)", 270 | "0031 (NL - Netherlands)", 271 | "0032 (BE - Belgium)", 272 | "001 (US - United States)", 273 | "Custom prefix code", 274 | "Keep \'+XX\' prefixes intact"}); 275 | this.combo_prefix.Location = new System.Drawing.Point(138, 2); 276 | this.combo_prefix.Name = "combo_prefix"; 277 | this.combo_prefix.Size = new System.Drawing.Size(221, 21); 278 | this.combo_prefix.TabIndex = 0; 279 | this.toolTip1.SetToolTip(this.combo_prefix, resources.GetString("combo_prefix.ToolTip")); 280 | // 281 | // label5 282 | // 283 | this.label5.AutoSize = true; 284 | this.label5.Location = new System.Drawing.Point(6, 81); 285 | this.label5.Name = "label5"; 286 | this.label5.Size = new System.Drawing.Size(110, 13); 287 | this.label5.TabIndex = 4; 288 | this.label5.Text = "Treat contacts as VIP"; 289 | // 290 | // combo_VIP 291 | // 292 | this.combo_VIP.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 293 | this.combo_VIP.FormattingEnabled = true; 294 | this.combo_VIP.Items.AddRange(new object[] { 295 | "never", 296 | "if contact has a nickname", 297 | "if text VIP is in the Comment/Notes"}); 298 | this.combo_VIP.Location = new System.Drawing.Point(132, 78); 299 | this.combo_VIP.Name = "combo_VIP"; 300 | this.combo_VIP.Size = new System.Drawing.Size(221, 21); 301 | this.combo_VIP.TabIndex = 3; 302 | this.toolTip1.SetToolTip(this.combo_VIP, "Allows you to select how the missing VIP functionality in the address \r\nbooks can" + 303 | " be mapped to the VIP setting in AVM/Snom Phones\r\n"); 304 | // 305 | // btn_save_SnomCSV7 306 | // 307 | this.btn_save_SnomCSV7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 308 | this.btn_save_SnomCSV7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); 309 | this.btn_save_SnomCSV7.Location = new System.Drawing.Point(836, 184); 310 | this.btn_save_SnomCSV7.Name = "btn_save_SnomCSV7"; 311 | this.btn_save_SnomCSV7.Size = new System.Drawing.Size(83, 35); 312 | this.btn_save_SnomCSV7.TabIndex = 8; 313 | this.btn_save_SnomCSV7.Text = "Snom\r\nCSV v7"; 314 | this.toolTip1.SetToolTip(this.btn_save_SnomCSV7, "Simple CSV Export for Snom v7 Firmware, containing just 2 columns (Name / Number)" + 315 | "\r\n\r\nFile Format is UTF8 without BOM.\r\n"); 316 | this.btn_save_SnomCSV7.UseVisualStyleBackColor = true; 317 | this.btn_save_SnomCSV7.Click += new System.EventHandler(this.btn_save_SnomXMLv7_Click); 318 | // 319 | // btn_read_FritzAdress 320 | // 321 | this.btn_read_FritzAdress.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 322 | this.btn_read_FritzAdress.Location = new System.Drawing.Point(4, 146); 323 | this.btn_read_FritzAdress.Name = "btn_read_FritzAdress"; 324 | this.btn_read_FritzAdress.Size = new System.Drawing.Size(167, 35); 325 | this.btn_read_FritzAdress.TabIndex = 9; 326 | this.btn_read_FritzAdress.Text = "Fritz!adr"; 327 | this.toolTip1.SetToolTip(this.btn_read_FritzAdress, resources.GetString("btn_read_FritzAdress.ToolTip")); 328 | this.btn_read_FritzAdress.UseVisualStyleBackColor = true; 329 | this.btn_read_FritzAdress.Click += new System.EventHandler(this.btn_read_FritzAdr_Click); 330 | // 331 | // btn_read_FritzXML 332 | // 333 | this.btn_read_FritzXML.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 334 | this.btn_read_FritzXML.Location = new System.Drawing.Point(4, 70); 335 | this.btn_read_FritzXML.Name = "btn_read_FritzXML"; 336 | this.btn_read_FritzXML.Size = new System.Drawing.Size(167, 35); 337 | this.btn_read_FritzXML.TabIndex = 11; 338 | this.btn_read_FritzXML.Text = "Fritz!Box XML"; 339 | this.toolTip1.SetToolTip(this.btn_read_FritzXML, "Import contacts from the XML file the Fritz!Box creates when backing up the phone" + 340 | "book."); 341 | this.btn_read_FritzXML.UseVisualStyleBackColor = true; 342 | this.btn_read_FritzXML.Click += new System.EventHandler(this.btn_read_FritzXML_Click); 343 | // 344 | // btn_save_vCard 345 | // 346 | this.btn_save_vCard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 347 | this.btn_save_vCard.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 348 | this.btn_save_vCard.Location = new System.Drawing.Point(836, 108); 349 | this.btn_save_vCard.Name = "btn_save_vCard"; 350 | this.btn_save_vCard.Size = new System.Drawing.Size(83, 35); 351 | this.btn_save_vCard.TabIndex = 14; 352 | this.btn_save_vCard.Text = "vCard"; 353 | this.toolTip1.SetToolTip(this.btn_save_vCard, resources.GetString("btn_save_vCard.ToolTip")); 354 | this.btn_save_vCard.UseVisualStyleBackColor = true; 355 | this.btn_save_vCard.Click += new System.EventHandler(this.btn_save_vCard_Click); 356 | // 357 | // btn_save_Outlook 358 | // 359 | this.btn_save_Outlook.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 360 | this.btn_save_Outlook.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 361 | this.btn_save_Outlook.Location = new System.Drawing.Point(836, 32); 362 | this.btn_save_Outlook.Name = "btn_save_Outlook"; 363 | this.btn_save_Outlook.Size = new System.Drawing.Size(167, 35); 364 | this.btn_save_Outlook.TabIndex = 15; 365 | this.btn_save_Outlook.Text = "Outlook"; 366 | this.toolTip1.SetToolTip(this.btn_save_Outlook, "Save contacts to an Outlook folder of your choice!"); 367 | this.btn_save_Outlook.UseVisualStyleBackColor = true; 368 | this.btn_save_Outlook.Click += new System.EventHandler(this.btn_save_Outlook_Click); 369 | // 370 | // MyDataGridView 371 | // 372 | this.MyDataGridView.AllowUserToAddRows = false; 373 | this.MyDataGridView.AllowUserToDeleteRows = false; 374 | this.MyDataGridView.AllowUserToResizeRows = false; 375 | this.MyDataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 376 | | System.Windows.Forms.AnchorStyles.Left) 377 | | System.Windows.Forms.AnchorStyles.Right))); 378 | this.MyDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; 379 | this.MyDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { 380 | this.Fullname, 381 | this.MyColLastname, 382 | this.MyColFirstname, 383 | this.MyColCompany, 384 | this.MyColHome, 385 | this.MyColWork, 386 | this.MyColMobile, 387 | this.MyColPreferred, 388 | this.MyColHomeFax, 389 | this.MyColWorkFax, 390 | this.Street, 391 | this.ZIP, 392 | this.City, 393 | this.eMail, 394 | this.VIP, 395 | this.Speeddial, 396 | this.Photo}); 397 | this.MyDataGridView.Location = new System.Drawing.Point(177, 32); 398 | this.MyDataGridView.MultiSelect = false; 399 | this.MyDataGridView.Name = "MyDataGridView"; 400 | this.MyDataGridView.RowHeadersVisible = false; 401 | this.MyDataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; 402 | this.MyDataGridView.Size = new System.Drawing.Size(653, 438); 403 | this.MyDataGridView.TabIndex = 17; 404 | // 405 | // Fullname 406 | // 407 | this.Fullname.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 408 | this.Fullname.HeaderText = "Combined Name"; 409 | this.Fullname.Name = "Fullname"; 410 | this.Fullname.ReadOnly = true; 411 | this.Fullname.Width = 101; 412 | // 413 | // MyColLastname 414 | // 415 | this.MyColLastname.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 416 | this.MyColLastname.HeaderText = "Lastname"; 417 | this.MyColLastname.Name = "MyColLastname"; 418 | this.MyColLastname.ReadOnly = true; 419 | this.MyColLastname.Width = 78; 420 | // 421 | // MyColFirstname 422 | // 423 | this.MyColFirstname.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 424 | this.MyColFirstname.HeaderText = "Firstname"; 425 | this.MyColFirstname.Name = "MyColFirstname"; 426 | this.MyColFirstname.ReadOnly = true; 427 | this.MyColFirstname.Width = 77; 428 | // 429 | // MyColCompany 430 | // 431 | this.MyColCompany.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 432 | this.MyColCompany.HeaderText = "Company"; 433 | this.MyColCompany.Name = "MyColCompany"; 434 | this.MyColCompany.ReadOnly = true; 435 | this.MyColCompany.Width = 76; 436 | // 437 | // MyColHome 438 | // 439 | this.MyColHome.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 440 | this.MyColHome.HeaderText = "Home"; 441 | this.MyColHome.Name = "MyColHome"; 442 | this.MyColHome.ReadOnly = true; 443 | this.MyColHome.Width = 60; 444 | // 445 | // MyColWork 446 | // 447 | this.MyColWork.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 448 | this.MyColWork.HeaderText = "Work"; 449 | this.MyColWork.Name = "MyColWork"; 450 | this.MyColWork.ReadOnly = true; 451 | this.MyColWork.Width = 58; 452 | // 453 | // MyColMobile 454 | // 455 | this.MyColMobile.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 456 | this.MyColMobile.HeaderText = "Mobile"; 457 | this.MyColMobile.Name = "MyColMobile"; 458 | this.MyColMobile.ReadOnly = true; 459 | this.MyColMobile.Width = 63; 460 | // 461 | // MyColPreferred 462 | // 463 | this.MyColPreferred.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 464 | this.MyColPreferred.HeaderText = "Preferred"; 465 | this.MyColPreferred.Name = "MyColPreferred"; 466 | this.MyColPreferred.ReadOnly = true; 467 | this.MyColPreferred.Width = 75; 468 | // 469 | // MyColHomeFax 470 | // 471 | this.MyColHomeFax.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 472 | this.MyColHomeFax.HeaderText = "HomeFax"; 473 | this.MyColHomeFax.Name = "MyColHomeFax"; 474 | this.MyColHomeFax.ReadOnly = true; 475 | this.MyColHomeFax.Width = 77; 476 | // 477 | // MyColWorkFax 478 | // 479 | this.MyColWorkFax.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 480 | this.MyColWorkFax.HeaderText = "WorkFax"; 481 | this.MyColWorkFax.Name = "MyColWorkFax"; 482 | this.MyColWorkFax.ReadOnly = true; 483 | this.MyColWorkFax.Width = 75; 484 | // 485 | // Street 486 | // 487 | this.Street.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 488 | this.Street.HeaderText = "Street"; 489 | this.Street.Name = "Street"; 490 | this.Street.ReadOnly = true; 491 | this.Street.Width = 60; 492 | // 493 | // ZIP 494 | // 495 | this.ZIP.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 496 | this.ZIP.HeaderText = "ZIP Code"; 497 | this.ZIP.Name = "ZIP"; 498 | this.ZIP.ReadOnly = true; 499 | this.ZIP.Width = 71; 500 | // 501 | // City 502 | // 503 | this.City.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 504 | this.City.HeaderText = "City"; 505 | this.City.Name = "City"; 506 | this.City.ReadOnly = true; 507 | this.City.Width = 49; 508 | // 509 | // eMail 510 | // 511 | this.eMail.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 512 | this.eMail.HeaderText = "eMail"; 513 | this.eMail.Name = "eMail"; 514 | this.eMail.ReadOnly = true; 515 | this.eMail.Width = 57; 516 | // 517 | // VIP 518 | // 519 | this.VIP.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 520 | this.VIP.HeaderText = "VIP"; 521 | this.VIP.Name = "VIP"; 522 | this.VIP.ReadOnly = true; 523 | this.VIP.Width = 49; 524 | // 525 | // Speeddial 526 | // 527 | this.Speeddial.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 528 | this.Speeddial.HeaderText = "Speeddial"; 529 | this.Speeddial.Name = "Speeddial"; 530 | this.Speeddial.ReadOnly = true; 531 | this.Speeddial.Width = 79; 532 | // 533 | // Photo 534 | // 535 | this.Photo.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells; 536 | this.Photo.HeaderText = "Photo"; 537 | this.Photo.Name = "Photo"; 538 | this.Photo.ReadOnly = true; 539 | this.Photo.Width = 60; 540 | // 541 | // label6 542 | // 543 | this.label6.AutoSize = true; 544 | this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 545 | this.label6.Location = new System.Drawing.Point(21, 10); 546 | this.label6.Name = "label6"; 547 | this.label6.Size = new System.Drawing.Size(136, 20); 548 | this.label6.TabIndex = 18; 549 | this.label6.Text = "Load data from:"; 550 | // 551 | // label_save 552 | // 553 | this.label_save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 554 | this.label_save.AutoSize = true; 555 | this.label_save.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 556 | this.label_save.Location = new System.Drawing.Point(856, 10); 557 | this.label_save.Name = "label_save"; 558 | this.label_save.Size = new System.Drawing.Size(116, 20); 559 | this.label_save.TabIndex = 19; 560 | this.label_save.Text = "Save data to:"; 561 | // 562 | // btn_save_SnomCSV8 563 | // 564 | this.btn_save_SnomCSV8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 565 | this.btn_save_SnomCSV8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); 566 | this.btn_save_SnomCSV8.Location = new System.Drawing.Point(920, 184); 567 | this.btn_save_SnomCSV8.Name = "btn_save_SnomCSV8"; 568 | this.btn_save_SnomCSV8.Size = new System.Drawing.Size(83, 35); 569 | this.btn_save_SnomCSV8.TabIndex = 21; 570 | this.btn_save_SnomCSV8.Text = "Snom\r\nCSV v8"; 571 | this.toolTip1.SetToolTip(this.btn_save_SnomCSV8, resources.GetString("btn_save_SnomCSV8.ToolTip")); 572 | this.btn_save_SnomCSV8.UseVisualStyleBackColor = true; 573 | this.btn_save_SnomCSV8.Click += new System.EventHandler(this.btn_save_SnomXMLv8_Click); 574 | // 575 | // btn_save_TalkSurfCSV 576 | // 577 | this.btn_save_TalkSurfCSV.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 578 | this.btn_save_TalkSurfCSV.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 579 | this.btn_save_TalkSurfCSV.Location = new System.Drawing.Point(836, 222); 580 | this.btn_save_TalkSurfCSV.Name = "btn_save_TalkSurfCSV"; 581 | this.btn_save_TalkSurfCSV.Size = new System.Drawing.Size(167, 35); 582 | this.btn_save_TalkSurfCSV.TabIndex = 24; 583 | this.btn_save_TalkSurfCSV.Text = "Talk+Surf CSV"; 584 | this.toolTip1.SetToolTip(this.btn_save_TalkSurfCSV, "CSV Export (Non-Unicode) for Gigasets old Talk & Surf 6.0 Software.\r\nExports a sh" + 585 | "ortened name and the phone numbers.\r\n"); 586 | this.btn_save_TalkSurfCSV.UseVisualStyleBackColor = true; 587 | this.btn_save_TalkSurfCSV.Click += new System.EventHandler(this.btn_save_TalkSurfCSV_Click); 588 | // 589 | // btn_read_genericCSV 590 | // 591 | this.btn_read_genericCSV.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 592 | this.btn_read_genericCSV.Location = new System.Drawing.Point(4, 184); 593 | this.btn_read_genericCSV.Name = "btn_read_genericCSV"; 594 | this.btn_read_genericCSV.Size = new System.Drawing.Size(167, 35); 595 | this.btn_read_genericCSV.TabIndex = 25; 596 | this.btn_read_genericCSV.Text = "Generic CSV"; 597 | this.toolTip1.SetToolTip(this.btn_read_genericCSV, "Imports contacts from a generic CSV file with comma separated values.\r\n"); 598 | this.btn_read_genericCSV.UseVisualStyleBackColor = true; 599 | this.btn_read_genericCSV.Click += new System.EventHandler(this.btn_read_genericCSV_Click); 600 | // 601 | // btn_save_AastraCSV 602 | // 603 | this.btn_save_AastraCSV.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 604 | this.btn_save_AastraCSV.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 605 | this.btn_save_AastraCSV.Location = new System.Drawing.Point(836, 260); 606 | this.btn_save_AastraCSV.Name = "btn_save_AastraCSV"; 607 | this.btn_save_AastraCSV.Size = new System.Drawing.Size(167, 35); 608 | this.btn_save_AastraCSV.TabIndex = 26; 609 | this.btn_save_AastraCSV.Text = "Aastra CSV"; 610 | this.toolTip1.SetToolTip(this.btn_save_AastraCSV, "CSV Export for Aastra Phones\r\n\r\nFile Format is UTF8 without BOM and with Unix Lin" + 611 | "efeeds.\r\n"); 612 | this.btn_save_AastraCSV.UseVisualStyleBackColor = true; 613 | this.btn_save_AastraCSV.Click += new System.EventHandler(this.btn_save_AastraCSV_Click); 614 | // 615 | // btn_save_GrandstreamGXV 616 | // 617 | this.btn_save_GrandstreamGXV.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 618 | this.btn_save_GrandstreamGXV.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 619 | this.btn_save_GrandstreamGXV.Location = new System.Drawing.Point(920, 298); 620 | this.btn_save_GrandstreamGXV.Name = "btn_save_GrandstreamGXV"; 621 | this.btn_save_GrandstreamGXV.Size = new System.Drawing.Size(83, 35); 622 | this.btn_save_GrandstreamGXV.TabIndex = 28; 623 | this.btn_save_GrandstreamGXV.Text = "Grandstream\r\nGXV Series"; 624 | this.toolTip1.SetToolTip(this.btn_save_GrandstreamGXV, "XML Export for Grandstream Phones\r\n\r\nFile Format is UTF8 without BOM and with Uni" + 625 | "x Linefeeds.\r\n"); 626 | this.btn_save_GrandstreamGXV.UseVisualStyleBackColor = true; 627 | this.btn_save_GrandstreamGXV.Click += new System.EventHandler(this.btn_save_GrandstreamGXV_Click); 628 | // 629 | // btn_read_googleContacts 630 | // 631 | this.btn_read_googleContacts.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 632 | this.btn_read_googleContacts.Location = new System.Drawing.Point(4, 222); 633 | this.btn_read_googleContacts.Name = "btn_read_googleContacts"; 634 | this.btn_read_googleContacts.Size = new System.Drawing.Size(167, 35); 635 | this.btn_read_googleContacts.TabIndex = 29; 636 | this.btn_read_googleContacts.Text = "Google Contacts"; 637 | this.toolTip1.SetToolTip(this.btn_read_googleContacts, "Directly imports contacts from a Google Mail Account\r\n\r\nHold SHIFT to select the " + 638 | "groups you want to import from!\r\n"); 639 | this.btn_read_googleContacts.UseVisualStyleBackColor = true; 640 | this.btn_read_googleContacts.Click += new System.EventHandler(this.btn_read_googleContacts_Click); 641 | // 642 | // btn_save_GrandstreamGXP 643 | // 644 | this.btn_save_GrandstreamGXP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 645 | this.btn_save_GrandstreamGXP.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 646 | this.btn_save_GrandstreamGXP.Location = new System.Drawing.Point(836, 298); 647 | this.btn_save_GrandstreamGXP.Name = "btn_save_GrandstreamGXP"; 648 | this.btn_save_GrandstreamGXP.Size = new System.Drawing.Size(83, 35); 649 | this.btn_save_GrandstreamGXP.TabIndex = 32; 650 | this.btn_save_GrandstreamGXP.Text = "Grandstream\r\nGXP Series"; 651 | this.toolTip1.SetToolTip(this.btn_save_GrandstreamGXP, "XML Export for Grandstream Phones\r\n\r\nFile Format is ISO-8859-1 and with Unix Line" + 652 | "feeds.\r\n"); 653 | this.btn_save_GrandstreamGXP.UseVisualStyleBackColor = true; 654 | this.btn_save_GrandstreamGXP.Click += new System.EventHandler(this.btn_save_GrandstreamGXP_Click); 655 | // 656 | // btn_save_Auerswald 657 | // 658 | this.btn_save_Auerswald.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 659 | this.btn_save_Auerswald.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 660 | this.btn_save_Auerswald.Location = new System.Drawing.Point(836, 336); 661 | this.btn_save_Auerswald.Name = "btn_save_Auerswald"; 662 | this.btn_save_Auerswald.Size = new System.Drawing.Size(167, 35); 663 | this.btn_save_Auerswald.TabIndex = 33; 664 | this.btn_save_Auerswald.Text = "Auerswald CSV"; 665 | this.toolTip1.SetToolTip(this.btn_save_Auerswald, "CSV Export for Auerswald\r\n\r\nFile Format is Non-Unicode with Unix Linefeeds.\r\n"); 666 | this.btn_save_Auerswald.UseVisualStyleBackColor = true; 667 | this.btn_save_Auerswald.Click += new System.EventHandler(this.btn_save_Auerswald_Click); 668 | // 669 | // btn_save_googleContacts 670 | // 671 | this.btn_save_googleContacts.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 672 | this.btn_save_googleContacts.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 673 | this.btn_save_googleContacts.Location = new System.Drawing.Point(836, 374); 674 | this.btn_save_googleContacts.Name = "btn_save_googleContacts"; 675 | this.btn_save_googleContacts.Size = new System.Drawing.Size(167, 35); 676 | this.btn_save_googleContacts.TabIndex = 34; 677 | this.btn_save_googleContacts.Text = "Google Contacts"; 678 | this.toolTip1.SetToolTip(this.btn_save_googleContacts, "Export for Google Contacts"); 679 | this.btn_save_googleContacts.UseVisualStyleBackColor = true; 680 | this.btn_save_googleContacts.Click += new System.EventHandler(this.btn_save_googleContacts_Click); 681 | // 682 | // btn_save_panasonicCSV 683 | // 684 | this.btn_save_panasonicCSV.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 685 | this.btn_save_panasonicCSV.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 686 | this.btn_save_panasonicCSV.Location = new System.Drawing.Point(836, 412); 687 | this.btn_save_panasonicCSV.Name = "btn_save_panasonicCSV"; 688 | this.btn_save_panasonicCSV.Size = new System.Drawing.Size(167, 35); 689 | this.btn_save_panasonicCSV.TabIndex = 35; 690 | this.btn_save_panasonicCSV.Text = "Panasonic"; 691 | this.toolTip1.SetToolTip(this.btn_save_panasonicCSV, resources.GetString("btn_save_panasonicCSV.ToolTip")); 692 | this.btn_save_panasonicCSV.UseVisualStyleBackColor = true; 693 | this.btn_save_panasonicCSV.Click += new System.EventHandler(this.btn_save_panasonicCSV_Click); 694 | // 695 | // btn_save_vCard_Gigaset 696 | // 697 | this.btn_save_vCard_Gigaset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 698 | this.btn_save_vCard_Gigaset.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 699 | this.btn_save_vCard_Gigaset.Location = new System.Drawing.Point(920, 108); 700 | this.btn_save_vCard_Gigaset.Name = "btn_save_vCard_Gigaset"; 701 | this.btn_save_vCard_Gigaset.Size = new System.Drawing.Size(83, 35); 702 | this.btn_save_vCard_Gigaset.TabIndex = 36; 703 | this.btn_save_vCard_Gigaset.Text = "Simple vCard\r\nfor Gigaset"; 704 | this.toolTip1.SetToolTip(this.btn_save_vCard_Gigaset, resources.GetString("btn_save_vCard_Gigaset.ToolTip")); 705 | this.btn_save_vCard_Gigaset.UseVisualStyleBackColor = true; 706 | this.btn_save_vCard_Gigaset.Click += new System.EventHandler(this.btn_save_vCard_Gigaset_Click); 707 | // 708 | // combo_typeprefer 709 | // 710 | this.combo_typeprefer.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 711 | this.combo_typeprefer.FormattingEnabled = true; 712 | this.combo_typeprefer.Items.AddRange(new object[] { 713 | "Home Phone / Home Fax / Home Adr.", 714 | "Work Phone / Work Fax / Work Adr."}); 715 | this.combo_typeprefer.Location = new System.Drawing.Point(132, 28); 716 | this.combo_typeprefer.Name = "combo_typeprefer"; 717 | this.combo_typeprefer.Size = new System.Drawing.Size(221, 21); 718 | this.combo_typeprefer.TabIndex = 4; 719 | this.toolTip1.SetToolTip(this.combo_typeprefer, resources.GetString("combo_typeprefer.ToolTip")); 720 | // 721 | // combo_namestyle 722 | // 723 | this.combo_namestyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 724 | this.combo_namestyle.FormattingEnabled = true; 725 | this.combo_namestyle.Items.AddRange(new object[] { 726 | "Lastname Firstname [Company]", 727 | "Lastname, Firstname [Company]", 728 | "Lastname, Firstname, Company", 729 | "Company [Lastname Firstname]", 730 | "Company [Lastname, Firstname]", 731 | "Company, Lastname, Firstname", 732 | "Firstname Lastname [Company]", 733 | "Firstname, Lastname [Company]", 734 | "Firstname, Lastname, Company", 735 | "Company [Firstname Lastname]", 736 | "Company [Firstname, Lastname]", 737 | "Company, Firstname, Lastname", 738 | "Lastname Firstname", 739 | "Lastname, Firstname", 740 | "Firstname Lastname", 741 | "Firstname, Lastname"}); 742 | this.combo_namestyle.Location = new System.Drawing.Point(132, 2); 743 | this.combo_namestyle.Name = "combo_namestyle"; 744 | this.combo_namestyle.Size = new System.Drawing.Size(221, 21); 745 | this.combo_namestyle.TabIndex = 1; 746 | this.toolTip1.SetToolTip(this.combo_namestyle, resources.GetString("combo_namestyle.ToolTip")); 747 | // 748 | // combo_outlookimport 749 | // 750 | this.combo_outlookimport.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 751 | this.combo_outlookimport.FormattingEnabled = true; 752 | this.combo_outlookimport.Items.AddRange(new object[] { 753 | "use generated Combined Name field", 754 | "use Outlooks SaveAs field instead"}); 755 | this.combo_outlookimport.Location = new System.Drawing.Point(132, 53); 756 | this.combo_outlookimport.Name = "combo_outlookimport"; 757 | this.combo_outlookimport.Size = new System.Drawing.Size(221, 21); 758 | this.combo_outlookimport.TabIndex = 6; 759 | this.toolTip1.SetToolTip(this.combo_outlookimport, resources.GetString("combo_outlookimport.ToolTip")); 760 | // 761 | // panel_left 762 | // 763 | this.panel_left.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 764 | this.panel_left.Controls.Add(this.label5); 765 | this.panel_left.Controls.Add(this.label4); 766 | this.panel_left.Controls.Add(this.combo_VIP); 767 | this.panel_left.Controls.Add(this.combo_outlookimport); 768 | this.panel_left.Controls.Add(this.label3); 769 | this.panel_left.Controls.Add(this.combo_typeprefer); 770 | this.panel_left.Controls.Add(this.label1); 771 | this.panel_left.Controls.Add(this.combo_namestyle); 772 | this.panel_left.Location = new System.Drawing.Point(5, 476); 773 | this.panel_left.Name = "panel_left"; 774 | this.panel_left.Size = new System.Drawing.Size(367, 104); 775 | this.panel_left.TabIndex = 8; 776 | // 777 | // label4 778 | // 779 | this.label4.AutoSize = true; 780 | this.label4.Location = new System.Drawing.Point(7, 56); 781 | this.label4.Name = "label4"; 782 | this.label4.Size = new System.Drawing.Size(92, 13); 783 | this.label4.TabIndex = 7; 784 | this.label4.Text = "On Outlook import"; 785 | // 786 | // label3 787 | // 788 | this.label3.AutoSize = true; 789 | this.label3.Location = new System.Drawing.Point(7, 31); 790 | this.label3.Name = "label3"; 791 | this.label3.Size = new System.Drawing.Size(116, 13); 792 | this.label3.TabIndex = 5; 793 | this.label3.Text = "If in doubt use/store as"; 794 | // 795 | // label1 796 | // 797 | this.label1.AutoSize = true; 798 | this.label1.Location = new System.Drawing.Point(6, 6); 799 | this.label1.Name = "label1"; 800 | this.label1.Size = new System.Drawing.Size(111, 13); 801 | this.label1.TabIndex = 3; 802 | this.label1.Text = "Combined Name Style"; 803 | // 804 | // label7 805 | // 806 | this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 807 | this.label7.AutoSize = true; 808 | this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 809 | this.label7.Location = new System.Drawing.Point(5, 456); 810 | this.label7.Name = "label7"; 811 | this.label7.Size = new System.Drawing.Size(146, 15); 812 | this.label7.TabIndex = 22; 813 | this.label7.Text = "Options Import/Export"; 814 | // 815 | // label8 816 | // 817 | this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 818 | this.label8.AutoSize = true; 819 | this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 820 | this.label8.Location = new System.Drawing.Point(837, 456); 821 | this.label8.Name = "label8"; 822 | this.label8.Size = new System.Drawing.Size(160, 15); 823 | this.label8.TabIndex = 23; 824 | this.label8.Text = "Options affecting Export"; 825 | // 826 | // button_config 827 | // 828 | this.button_config.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 829 | | System.Windows.Forms.AnchorStyles.Right))); 830 | this.button_config.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 831 | this.button_config.Location = new System.Drawing.Point(378, 529); 832 | this.button_config.Name = "button_config"; 833 | this.button_config.Size = new System.Drawing.Size(135, 49); 834 | this.button_config.TabIndex = 27; 835 | this.button_config.Text = "Configuration"; 836 | this.button_config.UseVisualStyleBackColor = true; 837 | this.button_config.Click += new System.EventHandler(this.button_config_Click); 838 | // 839 | // button_website 840 | // 841 | this.button_website.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 842 | this.button_website.Location = new System.Drawing.Point(519, 530); 843 | this.button_website.Name = "button_website"; 844 | this.button_website.Size = new System.Drawing.Size(108, 23); 845 | this.button_website.TabIndex = 30; 846 | this.button_website.Text = "CCW Homepage"; 847 | this.button_website.UseVisualStyleBackColor = true; 848 | this.button_website.Click += new System.EventHandler(this.button_website_Click); 849 | // 850 | // button_forum 851 | // 852 | this.button_forum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 853 | this.button_forum.Location = new System.Drawing.Point(519, 555); 854 | this.button_forum.Name = "button_forum"; 855 | this.button_forum.Size = new System.Drawing.Size(108, 23); 856 | this.button_forum.TabIndex = 31; 857 | this.button_forum.Text = "Report issue"; 858 | this.button_forum.UseVisualStyleBackColor = true; 859 | this.button_forum.Click += new System.EventHandler(this.button_forum_Click); 860 | // 861 | // backgroundWorker_updateCheck 862 | // 863 | this.backgroundWorker_updateCheck.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker_updateCheck_DoWork); 864 | this.backgroundWorker_updateCheck.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker_updateCheck_RunWorkerCompleted); 865 | // 866 | // Form1 867 | // 868 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 869 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 870 | this.ClientSize = new System.Drawing.Size(1004, 582); 871 | this.Controls.Add(this.btn_save_vCard_Gigaset); 872 | this.Controls.Add(this.btn_save_panasonicCSV); 873 | this.Controls.Add(this.btn_save_googleContacts); 874 | this.Controls.Add(this.btn_save_Auerswald); 875 | this.Controls.Add(this.btn_save_GrandstreamGXP); 876 | this.Controls.Add(this.button_forum); 877 | this.Controls.Add(this.button_website); 878 | this.Controls.Add(this.btn_read_googleContacts); 879 | this.Controls.Add(this.btn_save_GrandstreamGXV); 880 | this.Controls.Add(this.button_config); 881 | this.Controls.Add(this.btn_save_AastraCSV); 882 | this.Controls.Add(this.btn_read_genericCSV); 883 | this.Controls.Add(this.btn_save_TalkSurfCSV); 884 | this.Controls.Add(this.label8); 885 | this.Controls.Add(this.label7); 886 | this.Controls.Add(this.panel_left); 887 | this.Controls.Add(this.btn_save_SnomCSV8); 888 | this.Controls.Add(this.label_save); 889 | this.Controls.Add(this.label6); 890 | this.Controls.Add(this.MyDataGridView); 891 | this.Controls.Add(this.btn_save_Outlook); 892 | this.Controls.Add(this.btn_save_vCard); 893 | this.Controls.Add(this.btn_read_FritzXML); 894 | this.Controls.Add(this.btn_read_FritzAdress); 895 | this.Controls.Add(this.btn_save_SnomCSV7); 896 | this.Controls.Add(this.panel_right); 897 | this.Controls.Add(this.button_clear); 898 | this.Controls.Add(this.btn_save_FritzAdress); 899 | this.Controls.Add(this.btn_save_FritzXML); 900 | this.Controls.Add(this.btn_read_vCard); 901 | this.Controls.Add(this.btn_read_Outlook); 902 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 903 | this.MinimumSize = new System.Drawing.Size(1020, 620); 904 | this.Name = "Form1"; 905 | this.Text = "Contact Conversion Wizard"; 906 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing); 907 | this.panel_right.ResumeLayout(false); 908 | this.panel_right.PerformLayout(); 909 | ((System.ComponentModel.ISupportInitialize)(this.MyDataGridView)).EndInit(); 910 | this.panel_left.ResumeLayout(false); 911 | this.panel_left.PerformLayout(); 912 | this.ResumeLayout(false); 913 | this.PerformLayout(); 914 | 915 | } 916 | 917 | #endregion 918 | 919 | private System.Windows.Forms.Button btn_read_Outlook; 920 | private System.Windows.Forms.Button btn_read_vCard; 921 | private System.Windows.Forms.Button btn_save_FritzXML; 922 | private System.Windows.Forms.Button btn_save_FritzAdress; 923 | private System.Windows.Forms.OpenFileDialog openFileDialog1; 924 | private System.Windows.Forms.Button button_clear; 925 | private System.Windows.Forms.Panel panel_right; 926 | private System.Windows.Forms.Label label2; 927 | private System.Windows.Forms.ComboBox combo_prefix; 928 | private System.Windows.Forms.Button btn_save_SnomCSV7; 929 | private System.Windows.Forms.Button btn_read_FritzAdress; 930 | private System.Windows.Forms.Button btn_read_FritzXML; 931 | private System.Windows.Forms.Button btn_save_vCard; 932 | private System.Windows.Forms.Button btn_save_Outlook; 933 | private System.Windows.Forms.DataGridView MyDataGridView; 934 | private System.Windows.Forms.Label label6; 935 | private System.Windows.Forms.Label label_save; 936 | private System.Windows.Forms.Button btn_save_SnomCSV8; 937 | private System.Windows.Forms.ToolTip toolTip1; 938 | private System.Windows.Forms.Panel panel_left; 939 | private System.Windows.Forms.Label label1; 940 | private System.Windows.Forms.ComboBox combo_namestyle; 941 | private System.Windows.Forms.Label label3; 942 | private System.Windows.Forms.ComboBox combo_typeprefer; 943 | private System.Windows.Forms.Label label4; 944 | private System.Windows.Forms.ComboBox combo_outlookimport; 945 | private System.Windows.Forms.Label label5; 946 | private System.Windows.Forms.ComboBox combo_VIP; 947 | private System.Windows.Forms.Label label7; 948 | private System.Windows.Forms.Label label8; 949 | private System.Windows.Forms.Label label9; 950 | private System.Windows.Forms.ComboBox combo_picexport; 951 | private System.Windows.Forms.Label label10; 952 | private System.Windows.Forms.TextBox textBox_PicPath; 953 | private System.Windows.Forms.Button btn_save_TalkSurfCSV; 954 | private System.Windows.Forms.Button btn_read_genericCSV; 955 | private System.Windows.Forms.Button btn_save_AastraCSV; 956 | private System.Windows.Forms.Button button_config; 957 | private System.Windows.Forms.Button button_7270; 958 | private System.Windows.Forms.Button button_7390; 959 | private System.Windows.Forms.Button btn_save_GrandstreamGXV; 960 | private System.Windows.Forms.Button btn_read_googleContacts; 961 | private System.Windows.Forms.DataGridViewTextBoxColumn Fullname; 962 | private System.Windows.Forms.DataGridViewTextBoxColumn MyColLastname; 963 | private System.Windows.Forms.DataGridViewTextBoxColumn MyColFirstname; 964 | private System.Windows.Forms.DataGridViewTextBoxColumn MyColCompany; 965 | private System.Windows.Forms.DataGridViewTextBoxColumn MyColHome; 966 | private System.Windows.Forms.DataGridViewTextBoxColumn MyColWork; 967 | private System.Windows.Forms.DataGridViewTextBoxColumn MyColMobile; 968 | private System.Windows.Forms.DataGridViewTextBoxColumn MyColPreferred; 969 | private System.Windows.Forms.DataGridViewTextBoxColumn MyColHomeFax; 970 | private System.Windows.Forms.DataGridViewTextBoxColumn MyColWorkFax; 971 | private System.Windows.Forms.DataGridViewTextBoxColumn Street; 972 | private System.Windows.Forms.DataGridViewTextBoxColumn ZIP; 973 | private System.Windows.Forms.DataGridViewTextBoxColumn City; 974 | private System.Windows.Forms.DataGridViewTextBoxColumn eMail; 975 | private System.Windows.Forms.DataGridViewTextBoxColumn VIP; 976 | private System.Windows.Forms.DataGridViewTextBoxColumn Speeddial; 977 | private System.Windows.Forms.DataGridViewTextBoxColumn Photo; 978 | private System.Windows.Forms.Button button_website; 979 | private System.Windows.Forms.Button button_forum; 980 | private System.ComponentModel.BackgroundWorker backgroundWorker_updateCheck; 981 | private System.Windows.Forms.Button btn_save_GrandstreamGXP; 982 | private System.Windows.Forms.Button btn_save_Auerswald; 983 | private System.Windows.Forms.Button btn_save_googleContacts; 984 | private System.Windows.Forms.Button btn_save_panasonicCSV; 985 | private System.Windows.Forms.Button btn_save_vCard_Gigaset; 986 | } 987 | } 988 | 989 | -------------------------------------------------------------------------------- /source/ImportGroupsChooser.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Contact_Conversion_Wizard 2 | { 3 | partial class ImportGroupsChooser 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ImportGroupsChooser)); 32 | this.listBox1 = new System.Windows.Forms.ListBox(); 33 | this.label1 = new System.Windows.Forms.Label(); 34 | this.SuspendLayout(); 35 | // 36 | // listBox1 37 | // 38 | this.listBox1.FormattingEnabled = true; 39 | this.listBox1.Location = new System.Drawing.Point(12, 57); 40 | this.listBox1.Name = "listBox1"; 41 | this.listBox1.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended; 42 | this.listBox1.Size = new System.Drawing.Size(419, 355); 43 | this.listBox1.TabIndex = 0; 44 | // 45 | // label1 46 | // 47 | this.label1.AutoSize = true; 48 | this.label1.Location = new System.Drawing.Point(12, 20); 49 | this.label1.Name = "label1"; 50 | this.label1.Size = new System.Drawing.Size(35, 13); 51 | this.label1.TabIndex = 1; 52 | this.label1.Text = "label1"; 53 | // 54 | // ImportGroupsChooser 55 | // 56 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 57 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 58 | this.ClientSize = new System.Drawing.Size(444, 424); 59 | this.Controls.Add(this.label1); 60 | this.Controls.Add(this.listBox1); 61 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; 62 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 63 | this.MaximizeBox = false; 64 | this.Name = "ImportGroupsChooser"; 65 | this.Text = "GoogleImportGroupsChooser"; 66 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ImportGroupsChooser_FormClosing); 67 | this.ResumeLayout(false); 68 | this.PerformLayout(); 69 | 70 | } 71 | 72 | #endregion 73 | 74 | private System.Windows.Forms.ListBox listBox1; 75 | private System.Windows.Forms.Label label1; 76 | } 77 | } -------------------------------------------------------------------------------- /source/ImportGroupsChooser.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Windows.Forms; 9 | 10 | namespace Contact_Conversion_Wizard 11 | { 12 | public partial class ImportGroupsChooser : Form 13 | { 14 | private List intList; 15 | public List resultList; 16 | 17 | 18 | public ImportGroupsChooser(string question, string windowtitle, List myList) 19 | { 20 | InitializeComponent(); 21 | 22 | intList = myList; 23 | 24 | label1.Text = question; 25 | this.Text = windowtitle; 26 | 27 | foreach (string[] x in myList) 28 | { 29 | listBox1.Items.Add(x[0]); 30 | } 31 | 32 | 33 | } 34 | 35 | private void ImportGroupsChooser_FormClosing(object sender, FormClosingEventArgs e) 36 | { 37 | resultList = new List(); 38 | 39 | for (int i = 0; i < listBox1.Items.Count; i++) 40 | { // Determine if the item is selected. 41 | if (listBox1.GetSelected(i) == true) { resultList.Add(this.intList[i]); } 42 | } 43 | 44 | 45 | } 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /source/LumenWorks/LumenWorks.Framework.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rillke/Contact-Conversion-Wizard/c46ac125af17ca40d5d373edcb662140a7d32d1a/source/LumenWorks/LumenWorks.Framework.IO.dll -------------------------------------------------------------------------------- /source/LumenWorks/license.txt: -------------------------------------------------------------------------------- 1 | Open Source Initiative OSI - The MIT License:Licensing 2 | [OSI Approved License] 3 | 4 | The MIT License 5 | 6 | Copyright (c) 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | -------------------------------------------------------------------------------- /source/LumenWorks/webpage.txt: -------------------------------------------------------------------------------- 1 | Version 3.81 (retrieved 2012-07-30) 2 | 3 | from: http://www.codeproject.com/KB/database/CsvReader.aspx 4 | -------------------------------------------------------------------------------- /source/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace Contact_Conversion_Wizard 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | Application.Run(new Form1()); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Contact Conversion Wizard")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("NV-Systems")] 12 | [assembly: AssemblyProduct("Contact Conversion Wizard")] 13 | [assembly: AssemblyCopyright("Copyright © NV-Systems 2013")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("9d9eecc3-5fdc-4107-ae28-9447f61df1fd")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("3.5.0.2")] 36 | [assembly: AssemblyFileVersion("3.5.0.2")] 37 | -------------------------------------------------------------------------------- /source/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Contact_Conversion_Wizard.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | public class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | public static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Contact_Conversion_Wizard.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | public static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /source/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /source/SimpleInputDialog.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Contact_Conversion_Wizard 2 | { 3 | partial class SimpleInputDialog 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SimpleInputDialog)); 32 | this.label1 = new System.Windows.Forms.Label(); 33 | this.textBox1 = new System.Windows.Forms.TextBox(); 34 | this.SuspendLayout(); 35 | // 36 | // label1 37 | // 38 | this.label1.AutoSize = true; 39 | this.label1.Location = new System.Drawing.Point(12, 24); 40 | this.label1.Name = "label1"; 41 | this.label1.Size = new System.Drawing.Size(35, 13); 42 | this.label1.TabIndex = 0; 43 | this.label1.Text = "label1"; 44 | // 45 | // textBox1 46 | // 47 | this.textBox1.Location = new System.Drawing.Point(15, 54); 48 | this.textBox1.Name = "textBox1"; 49 | this.textBox1.Size = new System.Drawing.Size(327, 20); 50 | this.textBox1.TabIndex = 1; 51 | this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress); 52 | // 53 | // SimpleInputDialog 54 | // 55 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 56 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 57 | this.ClientSize = new System.Drawing.Size(360, 100); 58 | this.Controls.Add(this.textBox1); 59 | this.Controls.Add(this.label1); 60 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; 61 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 62 | this.MaximizeBox = false; 63 | this.Name = "SimpleInputDialog"; 64 | this.Text = "SimpleInputDialog"; 65 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SimpleInputDialog_FormClosing); 66 | this.ResumeLayout(false); 67 | this.PerformLayout(); 68 | 69 | } 70 | 71 | #endregion 72 | 73 | private System.Windows.Forms.Label label1; 74 | private System.Windows.Forms.TextBox textBox1; 75 | } 76 | } -------------------------------------------------------------------------------- /source/SimpleInputDialog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Drawing; 5 | using System.Text; 6 | using System.Windows.Forms; 7 | 8 | namespace Contact_Conversion_Wizard 9 | { 10 | public partial class SimpleInputDialog : Form 11 | { 12 | public string resultstring; 13 | bool my_onlynumeric; 14 | 15 | public SimpleInputDialog(string question, string windowtitle, bool onlynumeric, bool hide_password) 16 | { 17 | InitializeComponent(); 18 | 19 | label1.Text = question; 20 | this.Text = windowtitle; 21 | textBox1.UseSystemPasswordChar = hide_password; 22 | 23 | my_onlynumeric = onlynumeric; 24 | 25 | textBox1.AcceptsReturn = true; 26 | } 27 | 28 | private void SimpleInputDialog_FormClosing(object sender, FormClosingEventArgs e) 29 | { 30 | if (textBox1.Text == "") 31 | { 32 | e.Cancel = true; 33 | } 34 | else 35 | { 36 | resultstring = textBox1.Text; 37 | } 38 | 39 | } 40 | 41 | private void textBox1_KeyPress(object sender, KeyPressEventArgs e) 42 | { 43 | if (e.KeyChar == (char)Keys.Return) 44 | { 45 | // if enter is pressed and we have valid input in the textbox, quit this form and return result to caller 46 | if (textBox1.Text != "") 47 | { 48 | e.Handled = true; // prevents bling sound 49 | this.Close(); 50 | return; 51 | } 52 | } 53 | 54 | if (my_onlynumeric == true) 55 | { 56 | if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar)) 57 | { 58 | e.Handled = true; 59 | return; 60 | } 61 | } 62 | else 63 | { 64 | e.Handled = false; 65 | return; 66 | } 67 | 68 | 69 | 70 | } 71 | 72 | private void button_OK_Click(object sender, EventArgs e) 73 | { 74 | this.Close(); 75 | } 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /source/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | --------------------------------------------------------------------------------