I’m in sales for a video surveillance dealer and instead of making the owners wealthy, i want to make myself wealthy.

What is the best way to get started openning my own video business? How do i write a business plan. Is there anything major that i should do or be concerned with? Thanks for your help

Hi There,
I have the free edition of Threatfire, and i was told since Threatfire doesn’t have a data base and operates differently, i should download another virus protection software on my computer. I have always been told never to run two virus softwares together. I would like to know your opinion.
Thanks For Your Help,
D.S.

I have an inferred night vision camera plugged up to my computer, so its like a web cam. I have been using Cam Wizard for the last month but know my free trail has expired, is there a program similar to Cam Wizard, but free?

Thanks for your help.

I am very familiar with Windows XP installations. Here is my problem. I have a laptop that failed to boot. I need to get data off the harddrive. There is no option to run a repair install as is the case with some installations. This leaves the recovery console. However after I replaced system, sam, default, and security files, it won’t let me into recovery console anymore. It says password not correct.

If you boot from CD, set up windows normally, choose partition to install on, if I select the already existing partition without deleting it, it says that it will install a new xp on the same partition. Will this allow me to boot and access data or will it still erase the old data?

Thanks for your help
Thanks, so I will be able to retrieve pictures and other things I have on there? thanks again

Hi, i live in toronto, i am going to install a alarm system. Which one is best in the market? And which one is the cheapest installation etc. Looking for the best for the cheapest price.
Thanks for your help.

Hi, i live in toronto, i am going to install a alarm system. Which one is best in the market? And which one is the cheapest installation etc. Looking for the best for the cheapest price.
Thanks for your help.

(For security reasons) :)

Thanks for your help.

It’s really self explanatory. If my computer’s info is important, which I doubt, I have a Lenovo X200 with vista, McAfee version 9.15 (security center) and version 13.15 virus scanner.
Thanks for your help!

I was advised to take the car to the dealer here in Austin, and get that fixed there, but I wonder if I really have to because I heard it was quite expensive..

Can you tell me if I can instal a good alarm system on my own, or take it to an auto shop to get that fixed up for an in-expensive price?

Any advice or recommendation would be highly appreciated,
Thanks for your help and time,
Elie

Hello people!

I’m looking to write an essay for an assignment I have. I’m having a bit of trouble finding a really good title that covers what I’m looking for. I want it to be a question and in the field of file sharing and computer misuse.

Specifically, I must be able to gather enough information on the topic to construct a balanced and well-informed argument.

In fact, it doesn’t even have to be related to computer misuse and file sharing at all (ideally it should be). It can be on anything on computer legislation..from the copyright laws to data protection act, and issues affecting ICT in business. I’m looking for something that is really good to get stuck into and information is widely available for research.

Though as I said, I really like the sound of file sharing and computer misuse of a topic…it’s just finding a really good title with enough scope to write 3000 words on!

Thanks for your help in advance!

I know Spanish myself but don’t know IT terms. I know network is la réd and other simple technical terms. What I need help with is more like - Networking, Spyware, Data Backup, Recovery, Computer Setup, Software, and Hardware. Thanks for your help!

I need to answer the questions below on the specific topics of ICT/IT. If any one knows a webpage or can give me the answers now would be great! Thanks for your help.

Social issues

Social issues are those concerning how computers have affected the way society is organised and how people react and behave towards each other.

What are the main social issues?

Discuss and give your opinion of the social effects of ICT.

Moral and Ethical Issues

Moral and ethical issues are to do with right and wrong.

What are the main moral and ethical issues?

Discuss and give your opinion of the moral and ethical issue effects of ICT.

Legal issues

Discuss the following:

Plaigiarism

The Copyright, Designs and Patent Act (1988)

Computer Misuse Act (1990)

The Data Protection Act

Economic Issues

Discuss how ICT costs have affected people at the workplace and at home
thankyou! but do all the links of "general theory" connect to all my questions ask????? thankyou :D

Dear Friends, I am using Windows XP and I had a virus into my computer. So I decided to backup all my data and reinstall a fresh copy of Windows. So to back up the data, I took the hard disk out of my computer and connected it to another computer to copy all the data.

Now here the problem starts !!!! Since I had Windows Login Password on my system, it is not letting me goto the folder and copy my files. Every time it says, access to the folder is denied. Following is more detail for your consideration:

1. I have connected the hard disk to another computer. My hard disk appears into the system.
2. I have to back up all the documents on my desktop & documents.
3. So I goto my hard disk, goto Documents & Settings > Users > My Name.
4. When I click on My Name folder, it says that folder can not be accessed. No permission. This is probably happening because I had my windows log-on password.

Can you please let me on how to get rid of this and copy my data from there. Or any other way to backup my data. Thanks for your help !!!!

After installation of Zone Alarm anti virus program, I can still run my Excel & Word programs but at my surprise, files will not be open. It says, "file cannot be open because anti virus scanner detected a problem". I tried setting everything on zone alarm but still it did not work. What is the possible cause of this? Thanks for your help.

Hey everybody, I’d like to know if it’s fine if I use AVG free edition as my antivirus, Zone Alarm for Firewall and Ad-Aware as an spyware remover?

I am just wondering if I can have these 3 together on the same computer working correctly

thanks for your help

Hi, thanks for your time.
I’m having trouble writing a program.

I want to write a C++ program that gives the new ID for a 4-digit integer entered from the keyboard.
The new ID is formed in the following procedure:
The last four digits of a social security number (SSN) will have a new digit for each.

The new digit for the first digit is figured out by timing it by 4;
if the product is greater than 9, add its digits together.
The new value for the second digit is figured out by timing it by 3.
if the product is greater than 9, add its digits together.
The new value for the third digit is figured out by timing it by 2.
if the product is greater than 9, add its digits together.
The new value for the fourth digit is figured out by timing it by 1.
If any of the new digits is 0, change it to 9.

All the four new digits are then added up to have a total, which is
then used to time to the entered 4-digit SSN to give the new encrypted ID.

For example, with the entered four digits 2620, the new ID will be 78600
because 2*4 = 8, 6*3 = 18 = 9, 2*2 = 4, 0*1 = 0 = 9, and 8+9+4+9 = 30, and then 30*2620 = 78600.

This is what I have so far but I know its not correct—->

#include<iostream>
using namespace std;

int main()
{
int input, num1, num2, num3, num4;
cout << "Please enter a 4-digit integer : ";
cin >> input;

num1 = (input/1000) % 10;
num2 = (input/100) % 10;
num3 = (input/10) % 10;
num4 = input % 10;

cout << "The Id will be : " << ((num1 * 4) + (num2 * 3) + (num3 * 2) + (num4 * 1)) * input << endl;
return 0;
}

Also, Here is the set of data for testing:

last-4 digits of SSN: 9578, new ID: 268184
last-4 digits of SSN: 0149, new ID: 4321
last-4 digits of SSN: 1039, new ID: 29092
last-4 digits of SSN: 0004, new ID: 124
last-4 digits of SSN: 9999, new ID: 359964
last-4 digits of SSN: 0023, new ID: 575

THANKS FOR YOUR HELP!!!!!!!
I’m using Microsoft Visual C++ 2008

I am getting a new computer soon, and since most of my software was downloaded and registered online (no disk) I am concerned about how to best go about transferring the programs from my old computer to my new one. For example I tried making a copy of my FL Studio Program, and it worked…sort of. When I installed the disc into another computer it functioned, but was missing some key features that are supposed to be there. Here’s what I did. I opened Nero, selected burn data cd, browsed program files til I found the one labeled FL STUDIO, and then I opened it into Nero. As I said before, the burn was successful, it just didn’t contain everything that was originally included in the software. I need advice because I don’t have much longer with my old computer, and I have ALOT of software that I need to backup onto cd. I just want to know that the copy will contain everything I need to install the entire program on my new pc….or else i’m just wasting CD-R’s!! Thanks for your help!!

i just installed kaspersky internet security and have updated and scanned my computer but when i checked the window security center in control panel it says that my antivirus is off..why? Do i need to be concerned or does the antivirus malfunction or sumthin…thanks for your help

Ever since I installed Norton Internet Security Suite 2007, my computer has been barely functional. Startup now takes ten minutes, launching an application takes a few more, and it constantly freezes up for a few minutes while chugging away on some Norton task.

I don’t want to remove it and have no protection, but this is unacceptable. Is there a way to configure it for bare-bones virus protection that is dramatically less resource intensive? I have a Norton account for another year, is switching to a different product a better alternative? Please be specific in your response, and thanks for your help!

The software has to have a feature that allows me to set a time or date to backup my files automatically.

It must have a feature that does not re-write over backed up data but adds newly added files to the backup instead of doing the whole backup again from scratch.

I don’t mind if the software is free or costly. My music and work documents are important to me and if I was to ever loose them I would be so upset. Which is why i am here asking this question.

Thanks for your help.

 Page 1 of 2  1  2 »