Search:

Type: Posts; User: brandonbot

Search: Search took 0.00 seconds.

  1. Thread: Frogger

    by brandonbot
    Replies
    8
    Views
    7,763

    Well I'm really just trying to get the cars to...

    Well I'm really just trying to get the cars to appear first so I haven't really gone into to much detail however each timer is for the different car directions and then the logs if I can get the cars...
  2. Thread: Frogger

    by brandonbot
    Replies
    8
    Views
    7,763

    using System; using System.Collections.Generic;...

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Drawing.Drawing2D; //Added for double buffering
    using...
  3. Thread: Frogger

    by brandonbot
    Replies
    8
    Views
    7,763

    private void FrmFrogger_Paint(object sender,...

    private void FrmFrogger_Paint(object sender, PaintEventArgs e)
    {
    Graphics g = e.Graphics;

    DrawStuff(g);
    }


    private void DrawStuff(Graphics g)...
  4. Thread: Frogger

    by brandonbot
    Replies
    8
    Views
    7,763

    Whenever i put the cars under draw stuff: ...

    Whenever i put the cars under draw stuff:
    g.DrawImage(LeftCars, LeftCarX, LeftCarY);
    it's always red for some reason but not for the frog I don't know why either???
  5. Thread: Frogger

    by brandonbot
    Replies
    8
    Views
    7,763

    Frogger

    I am having trouble making my frogger game work and needed some help:




    private void timer1_Tick(object sender, EventArgs e)
    {


    for (int i = 1; i <= 6; i++)
  6. Replies
    12
    Views
    2,977

    K so i have all that working but it still says...

    K so i have all that working but it still says money given is 0...

    Should i put a numeric up down control for money given?

    Never mind I got it now thank you so much I really appreciate the fact...
  7. Replies
    12
    Views
    2,977

    Alright so I pretty much have it working except...

    Alright so I pretty much have it working except like I said I'm using checked boxes for items and numeric up/down scroll bars for quantity. I know the example you showed me you put numbers in for...
  8. Replies
    12
    Views
    2,977

    So like this? private void...

    So like this?


    private void CalculateTax(ref double Tax, double End_Total)
    {
    Tax += (End_Total * 0.13);
    }


    I'm not sure how to proceed now though heres what...
  9. Replies
    12
    Views
    2,977

    K thanks I took that and created the other two...

    K thanks I took that and created the other two for calculating tax as well as change due.


    private void CalculateTax(ref double Tax, double item_price, double item_quantity)
    {
    ...
  10. Replies
    12
    Views
    2,977

    Oh i did sorry heres what i did so far and sorry...

    Oh i did sorry heres what i did so far and sorry i'm not really sure what UI means


    private void PicCalculate_Click(object sender, EventArgs e)
    {
    double a1 = 1.00;
    ...
  11. Replies
    12
    Views
    2,977

    McDonalds program using c# 2008

    Alright so I am having trouble programming this it's suppose calculate the total bill along with the amount tendered and change due. It is suppose to be done using methods here are the items along...
Results 1 to 11 of 11