diff options
author | Javier Castillo | 2011-02-08 15:49:42 +0100 |
---|---|---|
committer | Javier Castillo | 2011-02-08 15:49:42 +0100 |
commit | f262cffff65ff7655c13daf72382193284247497 (patch) | |
tree | 10716c9adc6a9b6c472f2bd96f1ce4112b245847 | |
parent | add readme (diff) | |
download | logintool-f262cffff65ff7655c13daf72382193284247497.tar.gz logintool-f262cffff65ff7655c13daf72382193284247497.tar.xz logintool-f262cffff65ff7655c13daf72382193284247497.zip |
Version: 0.5.0
Fix: Negative Beträge werde durch 0 ersetzt.
Update: setup.msi ,setup.exe
28 files changed, 12 insertions, 3 deletions
diff --git a/AccountValue.suo b/AccountValue.suo Binary files differindex 832105d..0275adb 100644 --- a/AccountValue.suo +++ b/AccountValue.suo 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 Binary files differindex cf0742e..6c4cee9 100644 --- a/AccountValue/bin/Debug/AccountValue.exe +++ b/AccountValue/bin/Debug/AccountValue.exe diff --git a/AccountValue/bin/Debug/AccountValue.pdb b/AccountValue/bin/Debug/AccountValue.pdb Binary files differindex edda044..b9998cc 100644 --- a/AccountValue/bin/Debug/AccountValue.pdb +++ b/AccountValue/bin/Debug/AccountValue.pdb diff --git a/AccountValue/bin/Debug/Interop.IWshRuntimeLibrary.dll b/AccountValue/bin/Debug/Interop.IWshRuntimeLibrary.dll Binary files differindex 0d6084c..1e1e958 100644 --- a/AccountValue/bin/Debug/Interop.IWshRuntimeLibrary.dll +++ b/AccountValue/bin/Debug/Interop.IWshRuntimeLibrary.dll diff --git a/AccountValue/bin/Debug/Interop.SHDocVw.dll b/AccountValue/bin/Debug/Interop.SHDocVw.dll Binary files differindex 3134612..bb552fb 100644 --- a/AccountValue/bin/Debug/Interop.SHDocVw.dll +++ b/AccountValue/bin/Debug/Interop.SHDocVw.dll diff --git a/AccountValue/bin/Release/AccountValue.exe b/AccountValue/bin/Release/AccountValue.exe Binary files differindex 9c76af7..a27fc8f 100644 --- a/AccountValue/bin/Release/AccountValue.exe +++ b/AccountValue/bin/Release/AccountValue.exe diff --git a/AccountValue/bin/Release/AccountValue.pdb b/AccountValue/bin/Release/AccountValue.pdb Binary files differindex 0c665be..1b001a1 100644 --- a/AccountValue/bin/Release/AccountValue.pdb +++ b/AccountValue/bin/Release/AccountValue.pdb diff --git a/AccountValue/bin/Release/Interop.SHDocVw.dll b/AccountValue/bin/Release/Interop.SHDocVw.dll Binary files differindex 39f98d8..51c27d4 100644 --- a/AccountValue/bin/Release/Interop.SHDocVw.dll +++ b/AccountValue/bin/Release/Interop.SHDocVw.dll diff --git a/AccountValue/obj/Debug/AccountValue.Properties.Resources.resources b/AccountValue/obj/Debug/AccountValue.Properties.Resources.resources Binary files differindex 822be91..259ee4a 100644 --- a/AccountValue/obj/Debug/AccountValue.Properties.Resources.resources +++ b/AccountValue/obj/Debug/AccountValue.Properties.Resources.resources diff --git a/AccountValue/obj/Debug/AccountValue.csproj.GenerateResource.Cache b/AccountValue/obj/Debug/AccountValue.csproj.GenerateResource.Cache Binary files differindex d40f90b..98354a4 100644 --- a/AccountValue/obj/Debug/AccountValue.csproj.GenerateResource.Cache +++ b/AccountValue/obj/Debug/AccountValue.csproj.GenerateResource.Cache diff --git a/AccountValue/obj/Debug/AccountValue.csproj.ResolveComReference.cache b/AccountValue/obj/Debug/AccountValue.csproj.ResolveComReference.cache Binary files differindex 5b22654..8330db4 100644 --- a/AccountValue/obj/Debug/AccountValue.csproj.ResolveComReference.cache +++ b/AccountValue/obj/Debug/AccountValue.csproj.ResolveComReference.cache diff --git a/AccountValue/obj/Debug/AccountValue.exe b/AccountValue/obj/Debug/AccountValue.exe Binary files differindex cf0742e..6c4cee9 100644 --- a/AccountValue/obj/Debug/AccountValue.exe +++ b/AccountValue/obj/Debug/AccountValue.exe diff --git a/AccountValue/obj/Debug/AccountValue.pdb b/AccountValue/obj/Debug/AccountValue.pdb Binary files differindex edda044..b9998cc 100644 --- a/AccountValue/obj/Debug/AccountValue.pdb +++ b/AccountValue/obj/Debug/AccountValue.pdb diff --git a/AccountValue/obj/Debug/Interop.IWshRuntimeLibrary.dll b/AccountValue/obj/Debug/Interop.IWshRuntimeLibrary.dll Binary files differindex 0d6084c..1e1e958 100644 --- a/AccountValue/obj/Debug/Interop.IWshRuntimeLibrary.dll +++ b/AccountValue/obj/Debug/Interop.IWshRuntimeLibrary.dll diff --git a/AccountValue/obj/Debug/Interop.SHDocVw.dll b/AccountValue/obj/Debug/Interop.SHDocVw.dll Binary files differindex 3134612..bb552fb 100644 --- a/AccountValue/obj/Debug/Interop.SHDocVw.dll +++ b/AccountValue/obj/Debug/Interop.SHDocVw.dll diff --git a/AccountValue/obj/Release/AccountValue.Properties.Resources.resources b/AccountValue/obj/Release/AccountValue.Properties.Resources.resources Binary files differindex 94a8370..259ee4a 100644 --- a/AccountValue/obj/Release/AccountValue.Properties.Resources.resources +++ b/AccountValue/obj/Release/AccountValue.Properties.Resources.resources diff --git a/AccountValue/obj/Release/AccountValue.csproj.GenerateResource.Cache b/AccountValue/obj/Release/AccountValue.csproj.GenerateResource.Cache Binary files differindex f2aeec6..ba0c099 100644 --- a/AccountValue/obj/Release/AccountValue.csproj.GenerateResource.Cache +++ b/AccountValue/obj/Release/AccountValue.csproj.GenerateResource.Cache diff --git a/AccountValue/obj/Release/AccountValue.csproj.ResolveComReference.cache b/AccountValue/obj/Release/AccountValue.csproj.ResolveComReference.cache Binary files differindex 7344775..8651e3d 100644 --- a/AccountValue/obj/Release/AccountValue.csproj.ResolveComReference.cache +++ b/AccountValue/obj/Release/AccountValue.csproj.ResolveComReference.cache diff --git a/AccountValue/obj/Release/AccountValue.exe b/AccountValue/obj/Release/AccountValue.exe Binary files differindex 9c76af7..a27fc8f 100644 --- a/AccountValue/obj/Release/AccountValue.exe +++ b/AccountValue/obj/Release/AccountValue.exe diff --git a/AccountValue/obj/Release/AccountValue.pdb b/AccountValue/obj/Release/AccountValue.pdb Binary files differindex 0c665be..1b001a1 100644 --- a/AccountValue/obj/Release/AccountValue.pdb +++ b/AccountValue/obj/Release/AccountValue.pdb diff --git a/AccountValue/obj/Release/Interop.SHDocVw.dll b/AccountValue/obj/Release/Interop.SHDocVw.dll Binary files differindex 39f98d8..51c27d4 100644 --- a/AccountValue/obj/Release/Interop.SHDocVw.dll +++ b/AccountValue/obj/Release/Interop.SHDocVw.dll 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 Binary files differindex dceab99..7253931 100644 --- a/Setup/Debug/Setup.msi +++ b/Setup/Debug/Setup.msi diff --git a/Setup/Debug/setup.exe b/Setup/Debug/setup.exe Binary files differindex cebb0a3..3e1b74c 100644 --- a/Setup/Debug/setup.exe +++ b/Setup/Debug/setup.exe diff --git a/Setup/Release/Setup.msi b/Setup/Release/Setup.msi Binary files differindex 2a7d413..9bd08cc 100644 --- a/Setup/Release/Setup.msi +++ b/Setup/Release/Setup.msi diff --git a/Setup/Release/setup.exe b/Setup/Release/setup.exe Binary files differindex cebb0a3..3e1b74c 100644 --- a/Setup/Release/setup.exe +++ b/Setup/Release/setup.exe |