CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2013
    Posts
    1

    Please Help .net app

    Hi All,

    sorry for but I want really get learn how be a developer.
    I'm get involved in a simple app but I'm getting struggle can someone help me with some clarifications.

    the spec are the follow:

    The purpose of the application is to allow end-users to quickly enter and manage a list of name/value pairs. Create an ASP.NET Web application or a Windows Forms application. The UI should look similar to the one shown below. The application code should be written in C#.


    txtBox + button(add)

    listView +button(Sort by name)
    +button (sort by value)
    +button (delete)



    Required Features
    Name/Value pairs are to be entered into the upper textbox. This textbox will be used by the end-user to quickly add Name/Value pairs to the list below.
    When a Name/Value pair is about to be added to the list it must be validated to ensure proper syntax. If the syntax is incorrect then the Name/Value pair must not be added. The Name/Value pair entry format is shown below:
    <name> = <value>
    Where <name> is the name portion of the pair, and <value> is the value portion of the pair. Only valid Name/Value pairs can be added. Names and Values can contain only alpha-numeric characters. The equal-sign is used to delimit the pair, spaces before and/or after the equal-sign may be entered by the end user (and should be ignored.)
    •When the ‘Sort by Name’ button is pressed the list will be sorted ascending by Name.
    •When the ‘Sort by Value’ button is pressed the list will be sorted ascending by Value.
    •When the ‘Delete’ button is pressed all selected items in the list box will be deleted.

  2. #2
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Please Help .net app

    I'd recommend starting with a WinForms application first. Since this is homework, no one is going to do this for you, but we are willing to help when you get stuck.

    The first thing you need to do is create a WinForms application project. Do you know how to do that? If not, reply saying so, and we'll explain how to do this.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured