Archive for February, 2010

Webmail & e-mail program hybrid?

Posted Sunday, February 21, 2010 by admin


I like the way you can access e-mail anywhere by using a webmail service. But I like the interface and speed of a program based e-mail such as ThunderBird. Is there a way I can have my e-mails and address book stored online and read by a e-mail program?

How do I read an.ETD extension file?

Posted Sunday, February 21, 2010 by admin


This is driving me insane, I just downloaded an Ebook from my library website. It told me to install the latest adobe reader, I did, but I still cant read ETD files. Know how?

How can a person make money on line honestly without losing their shirt?

Posted Sunday, February 21, 2010 by admin


I have been looking and receiving many and varied opportunity emails. As yet I have only felt like a prospect, a lead and a newbie.When you have no money and little understanding for making your own product, marketing it and affiliating with those who do know how brings you diddly squat, what do you do? There are a lot of dead ends and detours with many available gurus at quite a price. I have tried surveys, blogging, articles, ads,leads. I have even considered writing an ebook . Ebay is another offer I had and I see potential but at a price over and above my 0$ budget. I figure that if this is a global question, there is a great possibility that some of you actually can help the rest of us out. Bless you!

What tools/materials do you recommend to help me become a better sales analyst?

Posted Sunday, February 21, 2010 by admin


I basically track and forecast sales for a series of products for various retail companies both large and small. While I’m not new to the retail industry, I am new to being at the corporate level. For the first two years since graduating college (business major), I really never put my degree to use and I feel as if I lost the drive that I had for business. Since I obtained a sales analyst position (almost a year ago), I spent the time since trying to learn as much as possible while attempting to acclimate myself with the environment. I know that with the right motivation, I can dive right back into my groove and to do that I need the proper materials (i.e., books, programs, websites, discussion groups, etc). Anyone make any recommendations?

How do I back up my Itunes purchase and library to an external hard drive.my EBook?

Posted Friday, February 19, 2010 by admin


I have an external hard drive and can not figure out how to back my itunes library to it as well as my purchased songs movies podcast and so on. how do I do this? also if I back it up and lose the file on my pc will the files still work if I resent them from my ebook external hard drive to my PC?

Free online EBook sites?

Posted Friday, February 19, 2010 by admin


What are some good sites for free online EBooks?

what do you think about EBook? i think i wanna get them for harry potter?

Posted Thursday, February 18, 2010 by admin


okay so like i started reading HP and love it. the prob is i have the first book and don’t wanna pay $50 for the rest… i was thinkin library but then i may have to wait till they come in. so i was thing i could by the ebook on ebay for $3 but i don’t know what its like to stare at a computer for hours on end, especially reading… do you think the EBook are worth it or should i go traditional and wait for the books? reasoning is great, tell me what you would do. anyone who has ever fallen in love with a series would understand how hard it is to wait, but i also love books…

what is a good program to download to make a ebook?

Posted Thursday, February 18, 2010 by admin


the book was wrote 15 years ago and is onto paper. I am going to use my OCL to scan each page and upload to microsoft word. So I need a good program that will work with the ocr…any other help offered is welcome as to how to publish etc.
yes I wrote the book so there is no worry about prison etc. what I am looking for is a good program to download so I can upload my paper book into ebook. My plans is to see if a publisher is interested. I wasn’t given the opportunity before since it’s 800+ pages, so I had to xerox all the pages X3 so I could mail the manuscript to the publishers which was very costly in postage and then there was the wait. Ebooks make things so much easier. So I will turn my paper book into a ebook and need to download that program “a ebook maker”

where can i find a safe Ebook download of the percy jackson series?

Posted Thursday, February 18, 2010 by admin


im trying to find the percy jackson series in Ebook form/pdf but cant seem to find a websit with it?
Know any?

help with this java program?

Posted Thursday, February 18, 2010 by admin


we’ve been asked to do an address book program that could view all the inputted entries as well as add,update, and delete an entry….

i’m done with adding and updating entries…
but i’m having trouble with displaying all entries and deleting an entry

help please??
here’s what i’ve done so far:

import java.io.*;

public class AddressBook {
private int top = 0;
private static final int MAXENTRIES = 100;
private AddressBookEntry [] list;

public static void main(String[] args) {
BufferedReader keyIn = new BufferedReader (new InputStreamReader(System.in));
AddressBook addBook = new AddressBook();
String act = “”;
while (true){
System.out.println (“\n[A] Add entry”);
System.out.println (“[D] Delete entry”);
System.out.println (“[V] View all entries”);
System.out.println (“[U] Update entry”);
System.out.println (“[Q] Quit”);
System.out.println (“Enter desired action: “);

try{
act = keyIn.readLine();
} catch (Exception e){
System.out.println (“Error”);
}

if (act.equals(“A”)||act.equals (“a”))
addBook.addEntry();
else if (act.equals(“V”)||act.equals (“v”))
addBook.viewEntries();
else if (act.equals(“D”)||act.equals (“d”))
addBook.deleteEntry();
else if (act.equals(“U”)||act.equals (“u”))
addBook.updateEntry();
else if (act.equals(“Q”)||act.equals (“q”))
System.exit (0);
else
System.out.println (“Unknown command”);
}
}

public AddressBook() {
list = new AddressBookEntry [MAXENTRIES];
}

public void addEntry(){
BufferedReader keyIn = new BufferedReader (new InputStreamReader (System.in));
String name = “”;
String add = “”;
int tel = 0;
String email = “”;

if (top == MAXENTRIES){
System.out.println (“Address Book is full”);
return;

}

try{
System.out.print (“Name: “);
name = keyIn.readLine();
System.out.print (“Address: “);
add = keyIn.readLine ();
System.out.print (“Telephone number: “);
tel = Integer.parseInt (keyIn.readLine());
System.out.print (“Email Address: “);
email = keyIn.readLine ();
} catch (Exception e){
System.out.println (e);
System.exit (0);
}
AddressBookEntry entry = new AddressBookEntry (name, add, tel, email);
list [top] = entry;
top++;

}
public void updateEntry (){
BufferedReader keyIn = new BufferedReader (new InputStreamReader(System.in));
int index = 0;
String name = “”;
String add = “”;
int tel = 0;
String email = “”;

try {
System.out.print (“Entry number: “);
index = Integer.parseInt (keyIn.readLine ())-1;
System.out.print (“Name: “);
name = keyIn.readLine ();
System.out.print(“Address: “);
add = keyIn.readLine ();
System.out.print(“Telephone number: “);
tel = Integer.parseInt(keyIn.readLine());
System.out.print(“Email Address: “);
email = keyIn.readLine ();
} catch (Exception e){
System.out.println (e);
System.exit (0);

}
AddressBookEntry entry = new AddressBookEntry (name, add, tel, email);
list [index] = entry;

}

}

}

Copyright © 2012 Ebook program
Design by ID Themes