Zum Inhalt springen

boeseskeksi

Mitglieder
  • Gesamte Inhalte

    247
  • Benutzer seit

  • Letzter Besuch

Alle Inhalte von boeseskeksi

  1. Moin... Ich hab hier noch 8 Rechner stehen die Aufgesetzt werden muessen.... dann muss ich unsere ganzen Print-Server neu konfigurieren, die Schulugsnotebooks (6) für die Schulung am 1.12 fertig machen, neue Drucker ins Netz einbinden... haufen Arbeit ^^
  2. kostenfrei kommt man da legal glaube ich nicht ran ein CCNA-Buch kostet so um die 70 € (Neupreis). Ich lerne grade FISI und bin im 2ten Lehrjahr, wir machen CCNA + Zertifikat in der Schule während der Ausbildung mit. Evtl machtst du dich HIER mal schlau, ich glaube man muss da auch Kurse belegen und das Zertifikat zu bekommen. Viel Glück wünsch ich dir
  3. Also ich würde mal sagen, du solltest wahre Gründe aufzeigen schreib das du sowas im privaten Umfeld machst vlt ist es dein Hobby was du zum Beruf machen willst etc. was Softskills angeht, würde ich nur die Wahrheit schreiben, denn wenn sie dich einstellen und merken dass du diese gar nicht hast, schaust du auch blöd aus deer Wäsche, dass hat nichts damit zu tun, dass du "individuell" auf ein Angebot eingehst sondern du stellst dich wie jemand hin den die Firma haben will, aber im Endeffekt nicht bekommt, weil du einfach alles mal aufgezählt hast, was sie wollen... bringen tut es das nicht , also sei ehrlich, schau was deine Stärken sind und hebe diese gekonnt hervor ^^
  4. boeseskeksi

    Taschenrechner

    Programm + Sprache: Visual Studio 2008 C# Hallo ^^ Mein TR funktioniert eigl ganz gut, allerdings habe ich einen Fehler entdeckt: Rechne ich bsp: -3 + -2 gibt der TR -6 aus, was nun definitiv falsch ist. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace calc2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private double valHolder1; private double valHolder2; private double tmpValue; private bool hasDecimal = false; private bool inputStatus = true; private string calcFunc; private void btn_1_Click(object sender, EventArgs e) { if (inputStatus) { textBox1.Text += btn_1.Text; } else { textBox1.Text = btn_1.Text; inputStatus = true; } } private void btn_2_Click(object sender, EventArgs e) { if (inputStatus) { textBox1.Text += btn_2.Text; } else { textBox1.Text = btn_2.Text; inputStatus = true; } } private void btn_3_Click(object sender, EventArgs e) { if (inputStatus) { textBox1.Text += btn_3.Text; } else { textBox1.Text = btn_3.Text; inputStatus = true; } } private void btn_4_Click(object sender, EventArgs e) { if (inputStatus) { textBox1.Text += btn_4.Text; } else { textBox1.Text = btn_4.Text; inputStatus = true; } } private void btn_5_Click(object sender, EventArgs e) { if (inputStatus) { textBox1.Text += btn_5.Text; } else { textBox1.Text = btn_5.Text; inputStatus = true; } } private void btn_6_Click(object sender, EventArgs e) { if (inputStatus) { textBox1.Text += btn_6.Text; } else { textBox1.Text = btn_6.Text; inputStatus = true; } } private void btn_7_Click(object sender, EventArgs e) { if (inputStatus) { textBox1.Text += btn_7.Text; } else { textBox1.Text = btn_7.Text; inputStatus = true; } } private void btn_8_Click(object sender, EventArgs e) { if (inputStatus) { textBox1.Text += btn_8.Text; } else { textBox1.Text = btn_8.Text; inputStatus = true; } } private void btn_9_Click(object sender, EventArgs e) { if (inputStatus) { textBox1.Text += btn_9.Text; } else { textBox1.Text = btn_9.Text; inputStatus = true; } } private void btn_0_Click(object sender, EventArgs e) { if (inputStatus) { if (textBox1.Text.Length <= 1) { textBox1.Text += btn_0.Text; } } } private void btn_plus_Click(object sender, EventArgs e) { if (textBox1.Text.Length != 0) { if (calcFunc == string.Empty) { valHolder1 = System.Double.Parse(textBox1.Text); textBox1.Text = String.Empty; } else { CalculateTotals(); } calcFunc = "Add"; hasDecimal = false; } } private void btn_minus_Click(object sender, EventArgs e) { if (textBox1.Text.Length != 0) { if (calcFunc == String.Empty) { valHolder1 = System.Double.Parse(textBox1.Text); textBox1.Text = string.Empty; } else { CalculateTotals(); } calcFunc = "Subtract"; hasDecimal = false; } } private void btn_ex_Click(object sender, EventArgs e) { if (textBox1.Text.Length != 0) { if (calcFunc == string.Empty) { valHolder1 = System.Double.Parse(textBox1.Text); textBox1.Text = String.Empty; } else { CalculateTotals(); } calcFunc = "PowerOf"; hasDecimal = false; } } private void btn_sqrt_Click(object sender, EventArgs e) { if (textBox1.Text.Length != 0) { tmpValue = System.Double.Parse(textBox1.Text); tmpValue = System.Math.Sqrt(tmpValue); textBox1.Text = tmpValue.ToString(); hasDecimal = false; } } private void back_Click(object sender, EventArgs e) { string str; int loc; if (textBox1.Text.Length > 0) { str = textBox1.Text.Substring(textBox1.Text.Length - 1); if (str == ".") { hasDecimal = false; } loc = textBox1.Text.Length; textBox1.Text = textBox1.Text.Remove(loc - 1, 1); } } private void btn_ce_Click(object sender, EventArgs e) { textBox1.Text = string.Empty; hasDecimal = false; } private void btn_c_Click(object sender, EventArgs e) { textBox1.Text = string.Empty; valHolder1 = 0; valHolder2 = 0; calcFunc = string.Empty; hasDecimal = false; } private void btn_divi_Click(object sender, EventArgs e) { if (textBox1.Text.Length != 0) { if (calcFunc == string.Empty) valHolder1 = System.Double.Parse(textBox1.Text); textBox1.Text = string.Empty; } else { CalculateTotals(); } calcFunc = "Divide"; hasDecimal = false; } private void btn_multi_Click(object sender, EventArgs e) { if (textBox1.Text.Length != 0) { if (calcFunc == string.Empty) { valHolder1 = System.Double.Parse(textBox1.Text); textBox1.Text = string.Empty; } else { CalculateTotals(); } calcFunc = "Multiply"; hasDecimal = false; } } private void btn_kehr_Click(object sender, EventArgs e) { if (textBox1.Text.Length != 0) { tmpValue = System.Double.Parse(textBox1.Text); tmpValue = 1 / tmpValue; textBox1.Text = tmpValue.ToString(); hasDecimal = false; } } private void btn_plusminus_Click(object sender, EventArgs e) { if (inputStatus) { if (textBox1.Text.Length > 0) { valHolder1 = -1 * System.Double.Parse(textBox1.Text); textBox1.Text = valHolder1.ToString(); } } } private void btn_equals_Click(object sender, EventArgs e) { if (textBox1.Text.Length != 0 && valHolder1 != 0) { CalculateTotals(); calcFunc = String.Empty; hasDecimal = false; } } private void btn_komma_Click(object sender, EventArgs e) { if (inputStatus) { if (!hasDecimal) { if (textBox1.Text.Length != 0) { if (textBox1.Text != "0") { textBox1.Text += btn_komma.Text; hasDecimal = true; } } else { textBox1.Text = "0,"; } } } } private void CalculateTotals() { valHolder2 = System.Double.Parse(textBox1.Text); switch (calcFunc) { case "Add": valHolder1 = valHolder1 + valHolder2; break; case "Subtract": valHolder1 = valHolder1 - valHolder2; break; case "Divide": valHolder1 = valHolder1 / valHolder2; break; case "Multiply": valHolder1 = valHolder1 * valHolder2; break; case "PowerOf": valHolder1 = System.Math.Pow(valHolder1, valHolder2); break; } textBox1.Text = valHolder1.ToString(); inputStatus = false; } } } Es war für mich schon ein "Krampf" das hinzubekommen ( mit einigen Tuts), ich finde einfach den Fehler nicht, evtl sieht es einer von euch
  5. ich wünsche dir viel Glück und egal was kommt lass den Kopf nicht hängen ^^
  6. ******e wenn man ne Fernwartung auf hat und der Rechner einfriert... und der Kunde zum Mittag gegangen is.... bzzz:upps
  7. Ich habe mich auch bei einer FA beworben die FH-Reife verlangt hat , ich habe Realsschule und ich wurde genommen
  8. Morgen -.- *Kopfschmerzen* licht aus und ruhe, bitte-.- in die Kuschelecke verkriech*
  9. Guten Morgen Kaffee , Tee und Brötchen auf den Tisch stell * greift zu
  10. ich hab meinem ein 5.1 Boxensystem zum 6 Jährigen geschenkt, das fand er richtig Klasse, hat sich gefreut wie ein kleines Kind ^^
  11. Guten Morgen :schlaf: Ich verdrück mich auch mal in die Kuschelecke :schlaf:
  12. So ^^ dann will ich euch mal einen schönen Feierabend wünschen Morgen geht meine Kunden-Odyssee der SAP-GUI Updates weiter :schlaf: ich kanns kaum erwarten :upps Also man liest sich morgen *winke*
  13. Na das ist doch was tolles ich weiß noned was ich meiner besseren Hälfte schenken soll ^^
  14. So, ich wünsch euch ein geruhsammes und ereignisreiches Wochenende bis Montag in aller Frühe *winke*

Fachinformatiker.de, 2024 by SE Internet Services

fidelogo_small.png

Schicke uns eine Nachricht!

Fachinformatiker.de ist die größte IT-Community
rund um Ausbildung, Job, Weiterbildung für IT-Fachkräfte.

Fachinformatiker.de App

Download on the App Store
Get it on Google Play

Kontakt

Hier werben?
Oder sende eine E-Mail an

Social media u. feeds

Jobboard für Fachinformatiker und IT-Fachkräfte

×
×
  • Neu erstellen...