Search results for query: *

  1. C Dull

    Linking form issue

    jmcilhinney -- haha, thanks for the analogy, that actually helped my understanding! skydiver -- thanks again for taking the time. Hate asking these dumb questions, I really do make an effort to source answers for myself before bugging you guys. Thank you.
  2. C Dull

    Linking form issue

    Hey Skydiver, I appreciate the quick reply -- although I'm still getting the same error message on the .Show line. Not sure whats happening.
  3. C Dull

    Linking form issue

    Any idea why the standard: Form2.Show() wouldn't be working for me? I'm trying to link a menu button to another form. Youtube and other tutorials made it seem that easy. I named my 2nd form frmAbout, as I'm trying to link a separate "about" form to the menu of my main form. private void...
  4. C Dull

    Help needed with straight-line depreciation

    Appreciate that catch!
  5. C Dull

    Help needed with straight-line depreciation

    getting it to work using this, just need to format for currency. Disregard. strDisplay = "Year Asset Value\r\n------- ---------------"; // pre-test loop double period = (dblPresentValue - dblSalvageValue)/intYearsOfDepreciation; int...
  6. C Dull

    Help needed with straight-line depreciation

    Hey guys, As a beginner I'm going through exercises to try an learn the basics of C#. This exercise calls for a straight- line depreciation to be calculated with user entering inputs for present value, salvage value, and years of depreciation. I'm stuck at this point and don't know how I should...
  7. C Dull

    Please help with commission switch statement + calc

    Thank you to yourself and Skydiver! Going to do your beginner tutorial as well.
  8. C Dull

    Please help with commission switch statement + calc

    Sorry about the format of my last post and I appreciate the help. I'm willing to learn and put the work in. The compilation error is on the final line of the code, with the closed curly bracket. Also, when I try to debug I get the message: " Build started... 1>------ Build started: Project...
  9. C Dull

    Please help with commission switch statement + calc

    Hey Skydiver, I appreciate you taking the time and bearing with a new guy. I find this very interesting but it's certainly a challenge. The objective of this exercise is to calculate commission at 4 different salesperson levels: Level 1: Gets $500 + 2% of sales Level 2: Gets $750 + 3% of sales...
  10. C Dull

    Please help with commission switch statement + calc

    Hey, I'm new to C# and coding in general. I've done some reading and online "hands-on" tutorials but I'm truly stuck here. Can someone please help me out and review the code I have written? I'm willing to put the time in to learn, I just don't know where to go from here. I'm having a problem...
Back
Top Bottom