Search results for query: *

  1. jag250

    Cancel button

    the button is canceled so it should cancel the option of what I'm doing so trying to get the panel to disappear because I would no longer need it
  2. jag250

    Cancel button

    what code can I use behind a cancel button to close a panel? Below is the code I tried. pnlAddCourses.Visible = true; I have also tried this.Close();
  3. jag250

    Question for each loop with radio button list

    I am having trouble with the for each loop I need it to print into my label saying how many courses when I add courses to a radio button list. Any idea on how to fix this or make it execute? needs to be in a for each loop. Also if anyone has any notes on theses loops that would be great! Thank...
  4. jag250

    Resolved SQL Help using specific statements listed in forum

    I figured out the answers
  5. jag250

    Resolved SQL Help using specific statements listed in forum

    I was not expecting anything. And thank you another staff member has already told me so get off my back. there is no need to respond at this point. I figured it out myself. If you took the time and read the conversation above you would have seen me discuss with the other guy that I was looking...
  6. jag250

    Resolved SQL Help using specific statements listed in forum

    Select ShipCountry From ShipCountry Having COUNT(Orders) by ShipCountry From ShipCountry Where YEAR[OrderDate] = '1997' AND shipped = ('Belgium', 'Mexico', 'Poland') (What I have so far)
  7. jag250

    Resolved SQL Help using specific statements listed in forum

    ---4. Show a list of CustomerIDs, OrderID, ShipCountry and year of shipping (YEAR(ShippedDate)). Only include orders in 1996 and CustomerID begins with the letter E. SELECT CustomerID, OrderID, ShipCountry, ShippedDate From Orders Where ShippedDate = '1997' AND CustomerID...
  8. jag250

    Resolved SQL Help using specific statements listed in forum

    -- 1. Show ship countries and a count of orders by Ship Country. Include orders placed in 1997 and shipped to Belgium, Mexico, and Poland. Select ShipCountry From ShipCountry Having COUNT(Orders) by ShipCountry From ShipCountry Where YEAR[OrderDate] = 1997 Group by Belgium Mexico...
  9. jag250

    Resolved SQL Help using specific statements listed in forum

    I am not an MIS major!!! And I'm only here for help because my teachers won't respond for days and I don't have time to sit and wait. Don't really care about your opinion or your sister's degree. And I am treating it as a skill, I spend 10 hours a day coding for 6 classes. So don't act like you...
  10. jag250

    Resolved SQL Help using specific statements listed in forum

    This is not an assignment. I'm just using different practice sheets my teacher gave me and looking for examples based on these questions. And for your information, I do all of my work myself and I have pieces done their just not correct. So I'm looking for someone who can give me an example...
  11. jag250

    Resolved SQL Help using specific statements listed in forum

    USing theses Statements no Table SELECT SELECT FROM WHERE AND, OR, NOT, IN, LIKE GROUP BY HAVING (which also implies a join and a group by) MC/TF portion all multiple choice and True False 1. Show ship countries and a count of orders by Ship Country. Include orders placed in 1997 and...
  12. jag250

    Question radio button and checkboxes

    rbPlain.Checked = false; rbWheat.Checked = false; rbEverything.Checked = false; cbToasted.Checked = false; cbCreamCheese.Checked = false; Can anyone help me with resetting radio buttons and checkboxes? I need them to rest if I click the back button. Also I need help with making the statement...
  13. jag250

    Question radio buttons and check boxes

    can anyone help me with resetting radio buttons and checkboxes? I need them to rest if I click the back button. I tried it this way and I tried using an if statement. rbPlain.Checked = false; rbWheat.Checked = false; rbEverything.Checked = false...
  14. jag250

    Answered Radio buttons and check boxes with math

    also this is due at midnight.
  15. jag250

    Answered Radio buttons and check boxes with math

    honestly could not tell you. I struggled hard with Python, but I missed a lot of days due to health reasons. Ive only just started my degree.
  16. jag250

    Answered Radio buttons and check boxes with math

    i only have taken python and that was over a year ago
  17. jag250

    Answered Radio buttons and check boxes with math

    if (rbPlain.Checked == rbDineIn.Checked) { decimal Plain = Convert.ToDecimal(rbPlain.Checked); Plain = 2.00m; decimal decTax = 0.07m; SubTotal = TypeofBagel lblSubTotal = (rbPlain *...
  18. jag250

    Answered Radio buttons and check boxes with math

    rbWheat.Text = "$1.00"; rbEverything.Text = "$1.50"; cbToasted.Text = "$0.50"; cbCreamCheese.Text = "$1.00"; this is what I have so far. I gave the radio buttons and check boxes values I just cant figure out how to start the formula
  19. jag250

    Answered Radio buttons and check boxes with math

    I need to create a C# formula that adds a $2.00 base fee plus any add ons (listed below). one with a tax of 7% (dine in) and one without (carry out) Type of bagel- Plain [rbPlain] , Wheat($1.00) [rbWheat], Everything ($1.50) [rbEverything] -->radio buttons -Plain is automatically selected-...
Back
Top Bottom