CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: JCStorey

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    893

    LINQ Group Operator

    I have an exercise to write a console program where the user enters 8 integers and then the integers are displayed in two groups, odd and even. I have to have an array for the 8 integers use LINQ...
  2. Replies
    5
    Views
    1,654

    Re: CheckedListBox

    I was able to get it to work. After looking at what you were giving me I had a better understanding of what to do.

    my final code is as follows:



    using System;
    using System.IO;
    using...
  3. Thread: array list

    by JCStorey
    Replies
    10
    Views
    2,033

    Re: array list

    My instructor says to just Google it.
  4. Replies
    5
    Views
    1,654

    Re: CheckedListBox

    this displays all the files in a directory when you check any selection in the checkedlistbox. I have each file in the directory listed in my checkedlistbox, 3 in total, and when I check each file I...
  5. Replies
    5
    Views
    1,654

    CheckedListBox

    Hello,

    I am doing an exercise where I need to create a checkedlistbox with path and name of files in a particular directory. When you check a file it's creation information is displayed in a...
  6. Replies
    3
    Views
    1,043

    Re: Finding File Size

    Thank you all for your help. I now have a better understanding of what to do. Lord bless!
  7. Replies
    3
    Views
    1,043

    [RESOLVED] Finding File Size

    How do I find and display two files sizes and then display the ratio of their sizes to each other. I have found this,


    FileInfo wordInfo = new FileInfo(FILE_NAME);

    but do not understand how...
  8. Replies
    8
    Views
    9,640

    Re: Mouseover with Listbox Items

    Thank you for all your help. Lord bless!!
  9. Replies
    8
    Views
    9,640

    Re: Mouseover with Listbox Items

    //Chapter 12 Exercise 3//

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using...
  10. Replies
    8
    Views
    9,640

    Re: Mouseover with Listbox Items

    I copied the code from the


    private void listBox1_SelectedIndexChanged(object sender, EventArgs e)

    as you suggested and it would not work. It will not allow the label to be displayed unless...
  11. Replies
    8
    Views
    9,640

    Re: Mouseover with Listbox Items

    I tried to use this, but I can only get it to display one label. I have four listbox items and four different labels. Each label needs to be displayed when the mouse goes over it's list item. I am...
  12. Replies
    8
    Views
    9,640

    [RESOLVED] Mouseover with Listbox Items

    Hello,

    I am working on an exercise that requires a label displays when the mouse passes over items in a listbox. I have four sports teams and when the mouse passes over each team it needs to...
  13. Replies
    2
    Views
    2,174

    Re: Simple C# Form Program

    Thank you for your help! I appreciate it. Lord bless!
  14. Replies
    2
    Views
    2,174

    [RESOLVED] Simple C# Form Program

    Hello Again,

    I am working on another exercise and need some help. The program itself is working, but it has one glitch, it asks the initial question twice when you choose “Yes”. My code is...
  15. Replies
    3
    Views
    957

    Re: Creating A Simple Form

    Thank you! This worked great. I am sharing it with my instructor so those coming behind will not have as much difficulty as I have had. I appreciate the input from everyone!! Lord bless you all.
  16. Replies
    3
    Views
    957

    [RESOLVED] Creating A Simple Form

    I am doing an exercise for school. It should be very simple, but I am having problems.

    Exercise:
    Write a program that displays a NessageBox that contains contact information for your company. ...
  17. Replies
    8
    Views
    3,247

    Re: C# Program Help, Just Beginning

    Finished it! It builds and runs as it should.


    using System;

    public class OrderDemo
    {
    public static void Main()
    {
    Order orderOne = new Order(1100, "Joe Storey", 10);
  18. Replies
    8
    Views
    3,247

    Re: C# Program Help, Just Beginning

    I have continued to work through this. I am now getting a stack overflow error here in the program:



    public double QuantOrdered { get { return QuantOrdered; } set { TotPrice = QuantOrdered *...
  19. Replies
    8
    Views
    3,247

    Re: C# Program Help, Just Beginning

    Thank you for your help and willingness to help.

    I know I need to place a calculation, QuantOrdered * ItemPrice, but I am not sure where it should be placed. Also as is the program will build,...
  20. Replies
    8
    Views
    3,247

    Re: C# Program Help, Just Beginning

    My apologies, I did not give you the correct code to look at. The following is the code for the program. It will build, but still has issues when I try to run it. Please tell me what you think.
    ...
  21. Replies
    8
    Views
    3,247

    [RESOLVED] C# Program Help, Just Beginning

    Hello,
    I am having do do an exercise which I have listed below along with my starting code. I would like to know if I am headed in the right direction and if not what do I correct. any help would be...
Results 1 to 21 of 22





Click Here to Expand Forum to Full Width

Featured