From f262cffff65ff7655c13daf72382193284247497 Mon Sep 17 00:00:00 2001 From: Javier Castillo Date: Tue, 8 Feb 2011 15:49:42 +0100 Subject: Version: 0.5.0 Fix: Negative Beträge werde durch 0 ersetzt. Update: setup.msi ,setup.exe --- AccountValue.suo | Bin 49664 -> 51200 bytes AccountValue/Form1.cs | 8 ++++++++ AccountValue/Form2.cs | 6 +++--- AccountValue/bin/Debug/AccountValue.exe | Bin 339968 -> 331264 bytes AccountValue/bin/Debug/AccountValue.pdb | Bin 60928 -> 85504 bytes .../bin/Debug/Interop.IWshRuntimeLibrary.dll | Bin 49152 -> 49152 bytes AccountValue/bin/Debug/Interop.SHDocVw.dll | Bin 126976 -> 139264 bytes AccountValue/bin/Release/AccountValue.exe | Bin 329216 -> 329728 bytes AccountValue/bin/Release/AccountValue.pdb | Bin 58880 -> 79360 bytes AccountValue/bin/Release/Interop.SHDocVw.dll | Bin 139264 -> 139264 bytes .../AccountValue.Properties.Resources.resources | Bin 2791 -> 2745 bytes .../AccountValue.csproj.GenerateResource.Cache | Bin 1049 -> 1054 bytes .../AccountValue.csproj.ResolveComReference.cache | Bin 588 -> 593 bytes AccountValue/obj/Debug/AccountValue.exe | Bin 339968 -> 331264 bytes AccountValue/obj/Debug/AccountValue.pdb | Bin 60928 -> 85504 bytes .../obj/Debug/Interop.IWshRuntimeLibrary.dll | Bin 49152 -> 49152 bytes AccountValue/obj/Debug/Interop.SHDocVw.dll | Bin 126976 -> 139264 bytes .../AccountValue.Properties.Resources.resources | Bin 2745 -> 2745 bytes .../AccountValue.csproj.GenerateResource.Cache | Bin 1054 -> 1054 bytes .../AccountValue.csproj.ResolveComReference.cache | Bin 593 -> 593 bytes AccountValue/obj/Release/AccountValue.exe | Bin 329216 -> 329728 bytes AccountValue/obj/Release/AccountValue.pdb | Bin 58880 -> 79360 bytes AccountValue/obj/Release/Interop.SHDocVw.dll | Bin 139264 -> 139264 bytes README.txt | 1 + Setup/Debug/Setup.msi | Bin 450560 -> 427520 bytes Setup/Debug/setup.exe | Bin 344064 -> 370176 bytes Setup/Release/Setup.msi | Bin 455168 -> 427520 bytes Setup/Release/setup.exe | Bin 344064 -> 370176 bytes 28 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 README.txt diff --git a/AccountValue.suo b/AccountValue.suo index 832105d..0275adb 100644 Binary files a/AccountValue.suo and b/AccountValue.suo differ diff --git a/AccountValue/Form1.cs b/AccountValue/Form1.cs index 81998dd..5d5170c 100644 --- a/AccountValue/Form1.cs +++ b/AccountValue/Form1.cs @@ -21,6 +21,7 @@ using System.Diagnostics; // (C) 2005 - 2006 Randolph Welte randy@uni-freiburg.de################################# // // Bearbeitung Bohdan Dulya d_bohdan@gmx.de 2006 - 2009 ################################ +// Javier Castillo mail@javiercastillogt.com 2011 ###################################### // & Marco Haustein 2008 ############################################################### @@ -617,6 +618,13 @@ namespace AccountValue } else { + // Prüfe ob value negativ ist + if (value.StartsWith("-")) + { + // falls ja, setze value auf 0 + value = "0"; + } + value += "€"; last_stand = value; } diff --git a/AccountValue/Form2.cs b/AccountValue/Form2.cs index b06476a..24c4bf8 100644 --- a/AccountValue/Form2.cs +++ b/AccountValue/Form2.cs @@ -17,7 +17,7 @@ using System.Xml; // ##################################################################################### // (C) 2005 - 2006 Randolph Welte randy@uni-freiburg.de################################# // -// Bearbeitung Bohdan Dulya & Marco Haustein 2006 - 2009 ############################### +// Bearbeitung Bohdan Dulya, Javier Castillo & Marco Haustein 2006 - 2011 ############################### @@ -29,7 +29,7 @@ namespace AccountValue public partial class Form2 : Form { private DragExtender dragExtender1; - private String version = "1.0.0"; + private String version = "0.5.0"; /* * */ @@ -80,7 +80,7 @@ namespace AccountValue private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { - MessageBox.Show("© 2006 Randolph Welte \n 2007-2009 Bohdan Dulya & Marco Haustein", "About...", MessageBoxButtons.OK, MessageBoxIcon.Information); + MessageBox.Show("© 2006 Randolph Welte \n 2007-2011 Bohdan Dulya, Javier Castillo & Marco Haustein", "About...", MessageBoxButtons.OK, MessageBoxIcon.Information); } private void versionToolStripMenuItem_Click(object sender, EventArgs e) diff --git a/AccountValue/bin/Debug/AccountValue.exe b/AccountValue/bin/Debug/AccountValue.exe index cf0742e..6c4cee9 100644 Binary files a/AccountValue/bin/Debug/AccountValue.exe and b/AccountValue/bin/Debug/AccountValue.exe differ diff --git a/AccountValue/bin/Debug/AccountValue.pdb b/AccountValue/bin/Debug/AccountValue.pdb index edda044..b9998cc 100644 Binary files a/AccountValue/bin/Debug/AccountValue.pdb and b/AccountValue/bin/Debug/AccountValue.pdb differ diff --git a/AccountValue/bin/Debug/Interop.IWshRuntimeLibrary.dll b/AccountValue/bin/Debug/Interop.IWshRuntimeLibrary.dll index 0d6084c..1e1e958 100644 Binary files a/AccountValue/bin/Debug/Interop.IWshRuntimeLibrary.dll and b/AccountValue/bin/Debug/Interop.IWshRuntimeLibrary.dll differ diff --git a/AccountValue/bin/Debug/Interop.SHDocVw.dll b/AccountValue/bin/Debug/Interop.SHDocVw.dll index 3134612..bb552fb 100644 Binary files a/AccountValue/bin/Debug/Interop.SHDocVw.dll and b/AccountValue/bin/Debug/Interop.SHDocVw.dll differ diff --git a/AccountValue/bin/Release/AccountValue.exe b/AccountValue/bin/Release/AccountValue.exe index 9c76af7..a27fc8f 100644 Binary files a/AccountValue/bin/Release/AccountValue.exe and b/AccountValue/bin/Release/AccountValue.exe differ diff --git a/AccountValue/bin/Release/AccountValue.pdb b/AccountValue/bin/Release/AccountValue.pdb index 0c665be..1b001a1 100644 Binary files a/AccountValue/bin/Release/AccountValue.pdb and b/AccountValue/bin/Release/AccountValue.pdb differ diff --git a/AccountValue/bin/Release/Interop.SHDocVw.dll b/AccountValue/bin/Release/Interop.SHDocVw.dll index 39f98d8..51c27d4 100644 Binary files a/AccountValue/bin/Release/Interop.SHDocVw.dll and b/AccountValue/bin/Release/Interop.SHDocVw.dll differ diff --git a/AccountValue/obj/Debug/AccountValue.Properties.Resources.resources b/AccountValue/obj/Debug/AccountValue.Properties.Resources.resources index 822be91..259ee4a 100644 Binary files a/AccountValue/obj/Debug/AccountValue.Properties.Resources.resources and b/AccountValue/obj/Debug/AccountValue.Properties.Resources.resources differ diff --git a/AccountValue/obj/Debug/AccountValue.csproj.GenerateResource.Cache b/AccountValue/obj/Debug/AccountValue.csproj.GenerateResource.Cache index d40f90b..98354a4 100644 Binary files a/AccountValue/obj/Debug/AccountValue.csproj.GenerateResource.Cache and b/AccountValue/obj/Debug/AccountValue.csproj.GenerateResource.Cache differ diff --git a/AccountValue/obj/Debug/AccountValue.csproj.ResolveComReference.cache b/AccountValue/obj/Debug/AccountValue.csproj.ResolveComReference.cache index 5b22654..8330db4 100644 Binary files a/AccountValue/obj/Debug/AccountValue.csproj.ResolveComReference.cache and b/AccountValue/obj/Debug/AccountValue.csproj.ResolveComReference.cache differ diff --git a/AccountValue/obj/Debug/AccountValue.exe b/AccountValue/obj/Debug/AccountValue.exe index cf0742e..6c4cee9 100644 Binary files a/AccountValue/obj/Debug/AccountValue.exe and b/AccountValue/obj/Debug/AccountValue.exe differ diff --git a/AccountValue/obj/Debug/AccountValue.pdb b/AccountValue/obj/Debug/AccountValue.pdb index edda044..b9998cc 100644 Binary files a/AccountValue/obj/Debug/AccountValue.pdb and b/AccountValue/obj/Debug/AccountValue.pdb differ diff --git a/AccountValue/obj/Debug/Interop.IWshRuntimeLibrary.dll b/AccountValue/obj/Debug/Interop.IWshRuntimeLibrary.dll index 0d6084c..1e1e958 100644 Binary files a/AccountValue/obj/Debug/Interop.IWshRuntimeLibrary.dll and b/AccountValue/obj/Debug/Interop.IWshRuntimeLibrary.dll differ diff --git a/AccountValue/obj/Debug/Interop.SHDocVw.dll b/AccountValue/obj/Debug/Interop.SHDocVw.dll index 3134612..bb552fb 100644 Binary files a/AccountValue/obj/Debug/Interop.SHDocVw.dll and b/AccountValue/obj/Debug/Interop.SHDocVw.dll differ diff --git a/AccountValue/obj/Release/AccountValue.Properties.Resources.resources b/AccountValue/obj/Release/AccountValue.Properties.Resources.resources index 94a8370..259ee4a 100644 Binary files a/AccountValue/obj/Release/AccountValue.Properties.Resources.resources and b/AccountValue/obj/Release/AccountValue.Properties.Resources.resources differ diff --git a/AccountValue/obj/Release/AccountValue.csproj.GenerateResource.Cache b/AccountValue/obj/Release/AccountValue.csproj.GenerateResource.Cache index f2aeec6..ba0c099 100644 Binary files a/AccountValue/obj/Release/AccountValue.csproj.GenerateResource.Cache and b/AccountValue/obj/Release/AccountValue.csproj.GenerateResource.Cache differ diff --git a/AccountValue/obj/Release/AccountValue.csproj.ResolveComReference.cache b/AccountValue/obj/Release/AccountValue.csproj.ResolveComReference.cache index 7344775..8651e3d 100644 Binary files a/AccountValue/obj/Release/AccountValue.csproj.ResolveComReference.cache and b/AccountValue/obj/Release/AccountValue.csproj.ResolveComReference.cache differ diff --git a/AccountValue/obj/Release/AccountValue.exe b/AccountValue/obj/Release/AccountValue.exe index 9c76af7..a27fc8f 100644 Binary files a/AccountValue/obj/Release/AccountValue.exe and b/AccountValue/obj/Release/AccountValue.exe differ diff --git a/AccountValue/obj/Release/AccountValue.pdb b/AccountValue/obj/Release/AccountValue.pdb index 0c665be..1b001a1 100644 Binary files a/AccountValue/obj/Release/AccountValue.pdb and b/AccountValue/obj/Release/AccountValue.pdb differ diff --git a/AccountValue/obj/Release/Interop.SHDocVw.dll b/AccountValue/obj/Release/Interop.SHDocVw.dll index 39f98d8..51c27d4 100644 Binary files a/AccountValue/obj/Release/Interop.SHDocVw.dll and b/AccountValue/obj/Release/Interop.SHDocVw.dll differ diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..5eb7757 --- /dev/null +++ b/README.txt @@ -0,0 +1 @@ +Entwicklung unter "Microsoft Visual Studio Professional 2008" \ No newline at end of file diff --git a/Setup/Debug/Setup.msi b/Setup/Debug/Setup.msi index dceab99..7253931 100644 Binary files a/Setup/Debug/Setup.msi and b/Setup/Debug/Setup.msi differ diff --git a/Setup/Debug/setup.exe b/Setup/Debug/setup.exe index cebb0a3..3e1b74c 100644 Binary files a/Setup/Debug/setup.exe and b/Setup/Debug/setup.exe differ diff --git a/Setup/Release/Setup.msi b/Setup/Release/Setup.msi index 2a7d413..9bd08cc 100644 Binary files a/Setup/Release/Setup.msi and b/Setup/Release/Setup.msi differ diff --git a/Setup/Release/setup.exe b/Setup/Release/setup.exe index cebb0a3..3e1b74c 100644 Binary files a/Setup/Release/setup.exe and b/Setup/Release/setup.exe differ -- cgit v1.2.3-55-g7522