Welcome to Dream.In.Code
Getting VB Help is Easy!

Join 86,270 VB Programmers. There are 1,881 online right now! Ask your question and get quick answers from Dream.In.Code experts. Join the #1 programming help community on the internet! Registration is fast and FREE... Join Now!

Chat LIVE With a VB Expert
Powered by LivePerson.com

Register to Make This Box Go Away!

Help with contact list project

 
Reply to this topicStart new topic

Help with contact list project

glones330
post 8 May, 2008 - 02:55 PM
Post #1


New D.I.C Head

*
Joined: 8 May, 2008
Posts: 7



i need help creating a contact list for my final i have 4 hours to do it in can anybody help me.....(what controls, functions, etc should i use???)

here are the requirements+



Create a data driven application of your choice, or use one of the following examples.

Examples \ Ideas
* Personal Contacts List

* Grade Book

* Checkbook registry (could get difficult)



The project is worth 200 points (which can be achieved by using any combination of the following):
40 – Documentation
40 - Comments
40 – being able to enter, update, delete, and view some sort of data
30 – Using 3 project layers
30 – Saving Information from a database to a comma delimited file
30 – Saving a comma delimited file to a Database
25 – Adding the ability to print out your Data
20 – Good use of four non-form classes
10 – Effectively using inheritance
10 – Include some sort of calculation in the correct place
10 – Effectively using textboxes and buttons
10 – Effectively using a menu
10 – Effectively using a SatusBr
10 – Effectively using a DataGrid
5 – Effectively using a Tool Tip

This post has been edited by PsychoCoder: 8 May, 2008 - 04:30 PM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


Martyr2
post 8 May, 2008 - 03:08 PM
Post #2


Programming Theoretician

Group Icon
Joined: 18 Apr, 2007
Posts: 3,561

Sorry but we require that a person show their "best effort" at trying to solve the problem themselves before we can attempt to help. Now if you can show us what you have so far then perhaps we can guide you, but we also have the policy that we do not do people's homework or help cheat on tests. So you may just be out of luck.

Tip: Since you are obviously in a jam, I recommend you go with the gradebook example. It probably will be the easiest and can be done in a relatively short period of time. Plus if you are smart enough, you might do some searches on this site and on the web to find grade book examples. wink2.gif

Good luck to you!
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

glones330
post 8 May, 2008 - 03:33 PM
Post #3


New D.I.C Head

*
Joined: 8 May, 2008
Posts: 7

QUOTE(Martyr2 @ 8 May, 2008 - 03:08 PM) *

Sorry but we require that a person show their "best effort" at trying to solve the problem themselves before we can attempt to help. Now if you can show us what you have so far then perhaps we can guide you, but we also have the policy that we do not do people's homework or help cheat on tests. So you may just be out of luck.

Tip: Since you are obviously in a jam, I recommend you go with the gradebook example. It probably will be the easiest and can be done in a relatively short period of time. Plus if you are smart enough, you might do some searches on this site and on the web to find grade book examples. wink2.gif

Good luck to you!




thanxs but my house caught fire in march and i lost everything....including my book......im just trying to get something to turn in...and i have no references...i just need a lil help to get started
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

PsychoCoder
post 8 May, 2008 - 04:30 PM
Post #4


ToCode || !ToCode

Group Icon
Joined: 26 Jul, 2007
Posts: 5,857

Unfortunately that doesn't override the policy we have here at </dream.in.code> of not doing a persons work for them. I know it may seem harsh, but we are a community of programmers here to help programmers, we are not here to simply do peoples work for them. As Martyr2 pointed out, do some searches both here in our community and with Google and Id be willing to bet you'd find all kinds of examples to get you started smile.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

glones330
post 8 May, 2008 - 04:46 PM
Post #5


New D.I.C Head

*
Joined: 8 May, 2008
Posts: 7

i have this code so far ive got the contact liststarted by being able to add and delete items ....now how do i make them editabe....and how can i make it so i can enter phone numbers with them...lil help pleez

vb

Public Class Form1
'this is to add an entry to the registry
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
ListBox1.Items.Add(TextBox1.Text)
TextBox1.Text = ""




End Sub
'this is to delete the selected entry
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
If ListBox1.SelectedIndex <> -1 Then
ListBox1.Items.Remove(ListBox1.SelectedItem.ToString)
End If
End Sub

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
If ListBox1.SelectedIndex <> -1 Then
ListBox1.Items.Remove(ListBox1.SelectedItem.ToString)
End If
End Sub
End Class


This post has been edited by PsychoCoder: 8 May, 2008 - 05:02 PM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

glones330
post 8 May, 2008 - 04:54 PM
Post #6


New D.I.C Head

*
Joined: 8 May, 2008
Posts: 7

have this code so far ive got the contact liststarted by being able to add and delete items ....now how do i make them editabe....and how can i make it so i can enter phone numbers with them...lil help pleez

vb

Public Class Form1
'this is to add an entry to the registry
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
ListBox1.Items.Add(TextBox1.Text)
TextBox1.Text = ""




End Sub
'this is to delete the selected entry
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
If ListBox1.SelectedIndex <> -1 Then
ListBox1.Items.Remove(ListBox1.SelectedItem.ToString)
End If
End Sub

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
If ListBox1.SelectedIndex <> -1 Then
ListBox1.Items.Remove(ListBox1.SelectedItem.ToString)
End If
End Sub
End Class


This post has been edited by PsychoCoder: 8 May, 2008 - 05:03 PM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

glones330
post 8 May, 2008 - 04:55 PM
Post #7


New D.I.C Head

*
Joined: 8 May, 2008
Posts: 7

have this code so far ive got the contact liststarted by being able to add and delete items ....now how do i make them editabe....and how can i make it so i can enter phone numbers with them...lil help pleez

vb

Public Class Form1
'this is to add an entry to the registry
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
ListBox1.Items.Add(TextBox1.Text)
TextBox1.Text = ""




End Sub
'this is to delete the selected entry
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
If ListBox1.SelectedIndex <> -1 Then
ListBox1.Items.Remove(ListBox1.SelectedItem.ToString)
End If
End Sub

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
If ListBox1.SelectedIndex <> -1 Then
ListBox1.Items.Remove(ListBox1.SelectedItem.ToString)
End If
End Sub
End Class


This post has been edited by PsychoCoder: 8 May, 2008 - 05:03 PM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

glones330
post 8 May, 2008 - 04:59 PM
Post #8


New D.I.C Head

*
Joined: 8 May, 2008
Posts: 7

have this code so far ive got the contact liststarted by being able to add and delete items ....now how do i make them editabe....and how can i make it so i can enter phone numbers with them...lil help pleez


vb

Public Class Form1
'this is to add an entry to the registry
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
ListBox1.Items.Add(TextBox1.Text)
TextBox1.Text = ""




End Sub
'this is to delete the selected entry
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
If ListBox1.SelectedIndex <> -1 Then
ListBox1.Items.Remove(ListBox1.SelectedItem.ToString)
End If
End Sub

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
If ListBox1.SelectedIndex <> -1 Then
ListBox1.Items.Remove(ListBox1.SelectedItem.ToString)
End If
End Sub
End Class


EDIT: Code blocks added, please use them in the future => code.gif

This post has been edited by PsychoCoder: 8 May, 2008 - 05:28 PM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

PsychoCoder
post 8 May, 2008 - 05:01 PM
Post #9


ToCode || !ToCode

Group Icon
Joined: 26 Jul, 2007
Posts: 5,857

You now have 3 topics on this matter. Please don't do that. Merged
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

glones330
post 8 May, 2008 - 05:04 PM
Post #10


New D.I.C Head

*
Joined: 8 May, 2008
Posts: 7

sorry thought i deleted it
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

PsychoCoder
post 8 May, 2008 - 05:29 PM
Post #11


ToCode || !ToCode

Group Icon
Joined: 26 Jul, 2007
Posts: 5,857

Please don't be making duplicate threads regarding the same question. Doing this will not get you help any faster. Please refer to the Forum Rules regarding this behavior and other rules of the community smile.gif

This is the 4th thread you've started for the same exact topic, do not start another.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 5/16/08 10:32AM

Live VB Help!

VB Tutorials

Reference Sheets

VB Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month