Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 767 results for
addressbook
- Page 1
AddressBook java program
Programming
Software Development
12 Years Ago
by chamo0683
…objects of classes Person names = new Person(); public
AddressBook
() { //creates labels JLabel lastName = new JLabel("…} public static void main(String[] args) {
AddressBook
frame = new
AddressBook
(); frame.setTitle("Address Book"); frame.setSize(…
array addressbook
Programming
Software Development
13 Years Ago
by tom92united
… = false; do { if (
addressbook
[i, 0] == "XXXXXXX") {
addressbook
[i, 0] = name;
addressbook
[i, 1] = name2;
addressbook
[i, 2] = address;
addressbook
[i, 3] = address2…
Delete method in AddressBook.java
Programming
Software Development
12 Years Ago
by NestaMarley
…/* (non-Javadoc) * @see com.jjpeople.
addressbook
.gui.AddressBookGui#showMenu() */ public void showMenu() throws…controller ); } /* (non-Javadoc) * @see com.jjpeople.
addressbook
.gui.AddressBookGui#start() */ public void start() throws GuiException {…
A Non-working Electronic AddressBook
Programming
Software Development
18 Years Ago
by nissa2424
…=#0000ff]string[/COLOR] conn = @"DriverId=281;DBQ=C:\TEMP\
AddressBook
.mdb;"+ "UserCommitSync=Yes;FIL=MS Access;UID=admin…
Link-listed addressbook
Programming
Software Development
18 Years Ago
by Shaabangbang
hey guys, uhh ok remember the old
addressbook
problem? well i solved it :cheesy: ! but now my prof …
Tkinter Addressbook
Programming
Software Development
18 Years Ago
by dwrick
… to python and Tkinter. I was trying to build an
addressbook
for my class. I have the Tkinter GUI looking good…
Outlook Addressbook
Hardware and Software
Microsoft Windows
16 Years Ago
by cVz
Can anyone share with me the great mysterious wonder of where to locate the Outlook
Addressbook
on my C drive ??? Thank you in advance:)
Re: AddressBook java program
Programming
Software Development
12 Years Ago
by NormR1
> read from a file text Where in the code are you trying to read from a file? For simple text files the Scanner class could do it. > store the person data into an array list Where is the arraylist for the person data?
Re: AddressBook java program
Programming
Software Development
12 Years Ago
by chamo0683
this is my update person class, not sure if I am correct. I am very confused with the arraylist and how to implemented using GUI. public class Person { ArrayList<String>LastName; ArrayList<String> FirstName; public Person(){ LastName=new ArrayList<String>(); FirstName=new …
Re: AddressBook java program
Programming
Software Development
12 Years Ago
by NormR1
An array list is like a dynamic array. It allows you to add lots of elements to it without having to worry about filling it up. Your usage of arraylist in the Person class is unusual. A person normally only has a single first and last name so there is no need for an arraylist to hold that. There could be more than one Person object used in the …
Re: AddressBook java program
Programming
Software Development
12 Years Ago
by chamo0683
Thanks for you clarification.I am so lost. I will keep working in this.
Re: AddressBook java program
Programming
Software Development
12 Years Ago
by NormR1
The assignment says: > The application should start by reading an input file and > Once you read a complete record/line from an input file, create a Friend object and add that object to the arraylist.
addressbook
Programming
Software Development
12 Years Ago
by aqWed_ton
can anyone help me how can i get the time at my desktop using <dos.h>
Re: addressbook
Programming
Software Development
12 Years Ago
by vmanes
I don't think dos.h will do anything for you related to time. Try the <ctime> library.
AddressBook Application
Programming
Software Development
15 Years Ago
by kiranpvsr
Hello.. Did anyone do the address book application in xml before? It uses a GUI built in Java to add, modify and delete records in the xml file. I have already written the code for GUI. As I'm not so familiar with XML, can anyone post the code for adding, deleting and modifying records in xml or pass on a hint plzz?
Re: array addressbook
Programming
Software Development
13 Years Ago
by thines01
There are a couple of other UK students working on the same thing. Please check [URL="http://www.daniweb.com/software-development/csharp/threads/398791/1712071#post1712071"]this post[/URL]. Maybe you can work together.
Re: array addressbook
Programming
Software Development
13 Years Ago
by kamilacbe
Hi, You can try removing from array's "removeat(array index) " method to remove particular record.. thanx.
Re: array addressbook
Programming
Software Development
13 Years Ago
by thines01
[QUOTE=kamilacbe;1715320]You can try removing from array's "removeat(array index) " method to remove particular record.[/QUOTE] From what I understand from looking at the other two sets of requirements, they are supposed to mark the records as available for overwrite by filling the first element in the array with six X "XXXXXX&…
Re: array addressbook
Programming
Software Development
13 Years Ago
by skatamatic
Do you HAVE to use arrays? They aren't exactly tuned performance-wise for remove operations. A linked list or binary tree would be the ideal datastructures here.
Re: array addressbook
Programming
Software Development
13 Years Ago
by thines01
I'm assuming this is for academic purposes only. Ive seen this a few places [URL="http://www.bing.com/search?q=%22XXXXXX%22+AND+%22addressbook%22+and+%22using+System%3B%22+AND+%22C%23%22&qs=n&sk=&form=QBRE"]on this site and around the web[/URL]. Maybe the next lesson will be "Look how much easier this is with classes …
Re: Delete method in AddressBook.java
Programming
Software Development
12 Years Ago
by NormR1
Can you explain why you posted 850+ lines of code?
Re: Delete method in AddressBook.java
Programming
Software Development
12 Years Ago
by NestaMarley
The application is required to Add an addresss, view an address, delete address. How do i implement a delete function and where?? All other functionalities are working..please assit
Re: Delete method in AddressBook.java
Programming
Software Development
12 Years Ago
by NormR1
800 lines are too many for me. Can you make a smaller program (<200 lines) that shows the problem?
Re: A Non-working Electronic AddressBook
Programming
Software Development
18 Years Ago
by jbennet
in future put your code in code tags - "code" and " /code" (in square brackets) or else the mods will shout at you
Re: A Non-working Electronic AddressBook
Programming
Software Development
18 Years Ago
by nissa2424
Thank you-----and sorry! Can you help me????
Re: Link-listed addressbook
Programming
Software Development
18 Years Ago
by Clinton Portis
[i][u]edit:[/u] This is in c++, so replace 'new' with 'malloc()', 'delete' with 'free', and cout/cin with printf()/fgets()[/i] instead of creating an array of structs like contact[u], 1. create a pointer of type 'contact' 2. everytime you need a new 'contact' node, create it by calling [inlinecode]contact *cntcPtr = new contact; [/…
Re: Tkinter Addressbook
Programming
Software Development
18 Years Ago
by vegaseat
My suggestion is to break this monster down to smaller parts and test each part before you assemble it all. Get familiar with GUI programming, classes, callbacks, functions and so on. At first glance there are a lot of mistakes. For instance this line: printrec= Button(a, text ="PRINT LIST",command=project.printfile(thelist1)) has 2 …
Re: Outlook Addressbook
Hardware and Software
Microsoft Windows
16 Years Ago
by cguan_77
hi Cvz, why you want to locate the address book? trying to do something...lol.. you can export your address book...and install it to another pc..but the location i also don't know.. let me know if you find out..hahahha...
Re: Outlook Addressbook
Hardware and Software
Microsoft Windows
16 Years Ago
by cVz
Hahaha, thanks man , i want to enable intellisense for my website... no problem , just need to know where i can get the data...
Address Book.
Programming
Software Development
20 Years Ago
by acidburns
…;); gets(Target); while(!feof(
AddressBook
)) { fscanf(
AddressBook
,"%s %s %s %s",
addressbook
.name,
addressbook
.address,
addressbook
.phone,
addressbook
.email); if(feof(
AddressBook
)) break; if(strcmp…
1
2
3
13
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC