Search results for query: *

  1. K

    I need help fixing errors

    I do have a DoubleBaconBurger class but how do I add it to the Burger class?
  2. K

    I need help fixing errors

    here is the Burger Class Option Strict On Public Class Burger Private colCondimentList As New Collection() Private blnKetchup As Boolean Private blnMustard As Boolean Private blnPickles As Boolean Private blnLettuce As Boolean Private blnOnions As Boolean Public Sub...
  3. K

    I need help fixing errors

    I am making a program that imports classes that I have made already. I am getting all of these errors but I don't understand why or how to fix them. Can someone help me? Here is the code for the program.. Option Strict On Imports Burgers Public Class Form1 Inherits System.Windows.Forms.Form...
  4. K

    Run-Time Errors

    It was sngRate, it's trying to assign strRate to it, why is that not working? strRate should have a value that will be entered by the user I believe.
  5. K

    Run-Time Errors

    Yeah I did the breakpoint and used the Autos and Watch and Location windows and it told me that for one of the variables (I forgot which one) the value is Nothing. I can't figure out why it is appearing this way.
  6. K

    Run-Time Errors

    I have another problem, it isn't calculating and nothing is showing up in the output. what's wrong?
  7. K

    Run-Time Errors

    wow you're a genius! thank you so much! it works now.
  8. K

    Run-Time Errors

    I didn't actually write this program, I'm just debugging it. Here is all of the code: Private Sub lstTodaysSales_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles lstWeeklyHours.KeyDown Dim intIndex, intListCount As Integer Dim sngTotalRevenue As...
  9. K

    Run-Time Errors

    It still doesn't like it. I tried both options you gave me. Here is the error I am getting.... I don't know what it's problem is. Maybe it's just having a bad day so I will try again tomorrow :D
  10. K

    Run-Time Errors

    I have been sitting here for a half hour staring at this one line of code trying to figure out what it's problem is, it is telling me that it is out of bounds but I don't see the problem. Maybe someone can help? It's the second line that's causing problems. For intIndex = 1 To intListCount...
  11. K

    Drawing a Histogram to Display Survey Results

    Thank you for your negative attitude. I was able to do it in a MessageBox and it turned out good. I understand that you won't do my homework for me and I wasn't asking you to I was simply asking a question. I don't think I'll be coming back here for help again seeing as how you treat me is like...
  12. K

    Drawing a Histogram to Display Survey Results

    I want to make a program that displays a histogra using asterisks in a message box using the followoing data from survey results > 15, 8, 12, 3, 2, 0, 3, 9, 12, 8 I want to store the values in an array as integer and display the results in two columns labeled Result and Histogram. I need to use...
  13. K

    Creating a money changer

    Thanks, but I just used select case statements. It was a lot of typing and a lot of code but it works haha.
  14. K

    Creating a money changer

    I'm having trouble figuring this one out. Here is what I want to do: Design and develop a program that will make change for a one-dollar bill on a sale of less than or equal to one dollar. The program interface should include a NumericUpDown control with a range from 1 cent to 100 cents, in...
  15. K

    Computing a Fibonacci Sequence

    I'm having trouble understanding this one. I know that you can't tell me how to do my homework but can you help me to understand what exactly it is they are asking for. I don't know where to even start on this one. A sequence of Fibonacci numbers begins with integers 1 and 1, and continues...
Back
Top