

InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
251. |
Solve : Can I make stream videos with winamp?? |
Answer» Can I MAKE my own STREAM vidoes with winamp? If so how? If not, any know how? All information on this would be APPRECIATED! Thanks.Check out your other THREAD. |
|
252. |
Solve : Creating a table of contents in MS Word? |
Answer» Hi, |
|
253. |
Solve : Outlook 2003 problems? |
Answer» RECENTLY STARTED having problems with my Outlook 2003 1) when I rightclick on a file to delete it nothing HAPPENS. I used to be able to right click and then hit delete 2) when i try to click on a link in an email I get the following error message: the form cache file ':\Documents and settings\RC\Local Settings\Application Data\Microsoft\FORMS\FRMCACHE.DAT' is not valid. CONTACT your administrator. can anyone provide any solutions short of reinstalling outlook? BASED on a forum discussion http://www.pcreview.co.uk/forums/thread-792900.php, you should delete that file. |
|
254. |
Solve : Outlook Express - inbox contents gone? |
Answer» A few months back Outlook Express v6 crashed and the contents of the inbox seemingly disappeared. I really need some of the old emails now. |
|
255. |
Solve : Adding old software to a newer computer?!?!?!? |
Answer» This is my first post here and I know pretty much nothing about computers so please be kind!! I'm wondering if it's possible to add older software cd's to a newer computer. I currently have a Sony Vaio laptop ( PCG-K13 - Windows XP ) and I'm trying to add the following programs from cd - Canon Creative 2.02, Create A Card Plus and Windows Draw 6 Special Edition Print Studio. All of these were installed on my older computer ( Windows 98 I believe ). Although they are all older programs I really enjoyed them and was hoping to install them on my laptop, however, every time I install the cd's nothing happens. I've tried going to run and SETUP, adding new programs, and have followed all of the instructions in the booklets but still have nothing. Nothing appears apon inserting the cd and nothing appears after running the setup. |
|
256. |
Solve : Problems: Cannot update Windows? |
Answer» Each time I open Microsoft Outlook (2002) I keep GETTING error message number 0x8004210A. Therefore, I am not able to download my emails. When I try to update Windows, the website gives me an Error number 0x800A1391. So, I cannot update anything. How can I resolve these problems? |
|
257. |
Solve : dll's? |
Answer» Hello, You should never have a NEED to "open" a .DLL file on its own; indeed, there really is no way to do so SOURCE: http://filext.com/detaillist.php?extdetail=dll&Search=SearchUnless you have a specific REASON for wanting to open a DLL file, keep away. |
|
258. |
Solve : Need program that will convert WMV and AVI to MPEG? |
Answer» I'm looking for a program that I can use to convert WMV and AVI video files to MPEG files, preferably one that I can use to convert several files at a time, maybe even as many as 40 or 50. I found a program that supposedly will do that (http://www.download.com/101-AVI-MPEG-WMV-Converter/3000-2140_4-10554033.html?tag=lst-0-7), but according to the reviews the video and the audio don't sync at all when converted. |
|
259. |
Solve : Advanced Microsoft Excel 2003 question!!!!!!!? |
Answer» I have an advanced excel question, is there anyone that really knows excel? Well, I've been an Excel user for many years, but your question is complicated and I don't think I'm going to tackle it. Perhaps someone else will, but I suggest you also post it at http://www.excelforum.com/. thanks alot soybean i can use this |
|
260. |
Solve : MS Word quirk? |
Answer» Every time I go into MS word, the settings get changed back into overtype mode, this isn't a major problem as by know I've relized what's going on, and I have almost become accustomed to fixing it every time I launch MS word, but what could be causing it to do this??? thanks alot, I guess I press it when I hit backspace maybe? It seems to happen at random until you figure out what causes it. You can disable the insert key. Tools-->Customise-->Keyboard. Under categories, click "All commands". Find "overtype" in the commands list. Under current keys, click on "insert" then click the remove button. Close; close. |
|
261. |
Solve : Slide shows for windows media player??? |
Answer» Does anyone know of any FREE SLIDE show programs, that will allow me to view my slides using windows media player.I believe Windows Media Maker will ACCOMPLISH this ...what OS are you running ? ? |
|
262. |
Solve : Access 2003 Question? |
Answer» I'm trying to put a database together for a friend who has a car dealership but I'm fairly new to databases and this is my FIRST attempt at a REAL one. I can't get the UCase function to work either. If I try to use it as a Validation Rule and then enter a string of upper case letters in the field, Access beeps and tells me I can only use upper case letters in that field, even though I did so. If I figure out how to do this, I'll post another reply. OK, thanks. I'll keep my eye on this thread. DavvaThe trick is, in your form, to run a little Visual Basic when the "onChange" event fires for VIN field in the data the entry form. I don't have acces to Access (groan) on the computer I'm currently using, but if you look for "Events" in the online help, that may start you on your way to doing much more powerful things with Access. So, in the code for the onChange event, you do something like this (this is psuedo code; it won't actually work): Code: [Select]if Len(fieldname.value) <> 17 then echo "VIN must be exactly 17 characters; yours is " + Len(fieldname.value) fieldname.SetFocus exit else fieldname.value = UCase(fieldname.value) end ifHope this helps a little.As an Access geek who also happens to work in the automotive industry, you shouldn't worry about how the VINs are entered in the underlying tables of the database. From typing VINs for years, it is much easier to do in lower case than constantly toggling back and forth on caps lock - just my opinion. For any forms or reports, you would want to add this code to the VIN control so that it displays as all uppercase. This code is from VB help, but should be easily adapted to your situation. UCase Function Example This example uses the UCase function to return an uppercase version of a string. Dim LowerCase, UpperCase LowerCase = "Hello World 1234" ' String to convert. UpperCase = UCase(LowerCase) ' Returns "HELLO WORLD 1234". Hope this helps! Ben Quote As an Access geek who also happens to work in the automotive industry, you shouldn't worry about how the VINs are entered in the underlying tables of the database. Agreed, it should be transparent to the user how the data is entered, but storing the data in the database should be in UPPERCASE. Having to do uppercase translation everytime a report or query is run is a waste of system resources. Rob, has the right idea. Do the uppercase translation once, at point of entry. Just my 2¢. 8-)Hi all Thanks for the advice so far. I had put this problem on the back burner as a couple of other things had come up. Now, I'm back on it and it's doing what I want (thanks Rob) except for the focus is not returning to the VIN box after I close the message box. My code is like this: Private Sub VIN_LostFocus() If Len(VIN.Value) <> 17 Then MsgBox "VIN must be exactly 17 characters long. Please check and re-enter" VIN.SetFocus Else VIN.Value = UCase(VIN.Value) End If End Sub How do I make the focus return to the VIN box? Thanks in advance (again) Davva If I remember right, you have to cancel the event that's about to occur. E.g. say your user has entered the wrong info, and then tabbed to the next field; the lostFocus event fires - this causes your code to run. But the onEnter event is queued for whatever control the user is TABBING to. And that event will cause the control to gain focus after your code runs. My memory may be a little rusty - it's about six years since I did any VBA programming. Did you try running the code on the onChange event rather than lostFocus?I tried running the code on the onchange event and also on the onExit event but neither worked. It went all funny. As soon as I clicked in the VIN box all the characters got hi-lighted and I couldn't make any changes inside the box. Your comment about the next event being queued SOUNDS like it could be the problem. How do I cancel that next event and send it back to the VIN box? |
|
263. |
Solve : Quick Outlook 2002 questions? |
Answer» Hello, |
|
264. |
Solve : Jasc PSP help!? |
Answer» I need help in PSP. I can do the basics and some harder stuff but I just don't understand layers. Is there a simple rule or solution to help me with this. The instructions are greek to me! I want to have maybe just a part of a picture (say a pic with two BABIES close together and I only want a pic with the one baby in it) as one picture. Have tried unmemorable times to make a collage also and cannt do it. It this hopeless for me?Are you saying you WOULD like to EXTRACT one baby from a photo of two? Remember that a photograph is a two dimension capture - it does not contain any information about what might be behind your subjects. Our minds are trained to think three-dimensionally, but a computer cannot perceive depth in this way. So you pretty much have to "cut" one subject out of a photo. This can be fairly painstaking with PSP. You can draw around the desired image with the lasso tool, or use the "magic wand". In the latter case, play around with the RGB tolerance until you get satisfactory results. You can combine both selection tools; CTRL adds more to a selection; SHIFT takes away (or it's the other way round).Thanks but I am more computer ILLITERATE than I thought! So that means I must be pretty bad. I love scrapbooking and am working on a wedding gift for my daughters upcoming wedding. She is a twin. Basically I cropped her brother out of the picture and where there were still parts of his body I cloned the background and blanket. It looks ok. I never scrapbooked in PSP but started a new file with a 4x6 pink background. Then I want to put her picture as a new layer on this background and any other little pics I might want. I can't seem to get anything ON THE PINK background. If I appear hopeless please feel free not to respond. Thanks for your help thus far. [smiley=rolleyes.gif] [smiley=rolleyes.gif] [smiley=rolleyes.gif] [smiley=rolleyes.gif]It sounds like all you need to do is copy & paste the baby picture onto the pink picture...right? Do you want to FINISH up with a baby picture including some background on a larger pink picture?Dah! I didn't realize you could get a picture into PSP by copy & paste. I just tried it and it works for as many pics as you want on the background layer you start out with. I can even add tube pictures to it or whatever. But I still haven't master understanding layers. I pasted the first pic as a new layer and the second as a new layer also. I could use the move tool and move them to overlap but I could not mask them so they had smooth transitions and looked like a collage. But hey, you've given me something more to play with and I thank you so much for that. Anything else you think of I'll be glad to try! Thanks again.As Rob said, if you just want a piece of the baby, like the head with no other background you will need to cut it out with a freehand tool or the magic lasoo thingies, then just copy & paste to your desired pink picture. This can be quite difficult with a shaky hand using a mouse. If you were doing a lot of it I think one of those writing tablet things would work on PSP... someone here will know for sure.Layers are easier to understand if you've ever working with overhead projector acetates. Think of several of them in a pile. It's exactly the same concept just with more features - like you can change the transparency of the images on each "acetate"/layer, and change the way layers are blended together (not that anything other than the "normal" mode is much use). Make sure you bring up the layers toolbar in PSP - it makes things a little clearer. You can drag and drop layers higher up or lower down the stack and see the effect of rearranging the layer order. |
|
265. |
Solve : microsoft works 8.5? |
Answer» I recently built my computer and INSTALLED windows xp home edition and works 8.5 which i mistakenly thought was adequate for my purposes. i have tried for two days to print out a simple address label without success. |
|
266. |
Solve : My documents not accessible on old hard drive? |
Answer» Ive just bought a new computer, and installed the hard drive from my old and very dead computer as a secondary running from a IDE cable.. the drive is recognised by the new machine and everything, and i can access all the folders (program files, shared documents etc) but not my My Documents, where all my work that i NEED is! i get a message saying F:\ducuments and settings\daniel (or somehting) is not accessible. Try turning off Simple File Sharing and then re-claiming ownership of the folder in question.Thanks for all the advice! unfortunately ive had a look and i haven't got a Simple File Sharing option in the view tab of the folder options... Also i had a look into the properties of the drive, and i haven't got a security tab with an advanced option, all ive got is the normal sharing and security tab... sorry about this, hope it isnt my computer being odd.. any other ideas on how i can get permission to get into it?? Thanks againYou have to take ownership of it. SEE if this helps: http://support.microsoft.com/?kbid=308421 |
|
267. |
Solve : which MP3 converter should i get?? |
Answer» hello people. |
|
268. |
Solve : got boot disk after HD fail, still cant see CD Dri? |
Answer» Hi |
|
269. |
Solve : multiple copies of saved PDf files? |
Answer» In My Documents, I have multiple copies (as many as 20!) of the same PDF FILE. If I delete a few, they appear again in a few seconds. What is GOING on here? Thanks!Online VIRUS Scan and SPYWARE Scan |
|
270. |
Solve : Outlook 2000 problem importing address book? |
Answer» So I just installed Outlook 2000 and I'm trying to bring in my address book from Mozilla. I've tried saving it as both a .csv file and a .txt file. I go to file/import and export/import from ANOTHER file or program/choose the .scv or .txt options and follow the wizard. I GET to the page where it says "the following actions will be performed" and my file is shown. the "next" button cannot be pressed so it won't actually to the importing. Anyone have any ideas?Did you try EXPORTING from Mozilla? This might help: How to Export Contacts from the Mozilla Thunderbird or Netscape Address BookThat is exactly what I did. I exported the address book from Thunderbird. I tried exporting into both .csv format and .txt format. The problem is that once I choose the file, Outlook won't let me finish the Import.Just to verify you've got a valid CSV file, try opening it in Excel. Does it open? Do you see data there that reflects your address book?Yup, all the data is there. It allows me to choose the file, but at the last step, where I'd have to click on next to actually import it, I can't actually click on the next button.Here's an excerpt from a Microsoft page, TITLED How to TROUBLESHOOT address importing in Outlook 2000: |
|
271. |
Solve : Debug warnings!!!!?? |
Answer» i'm gettin ERRORS such as " we are in a MIDDLE of something and we need to stop, sorry for the ... " ( it's like the whatever software i USE crashes, so i reinstall the software but it didn't work ) and i went a little closer to the detail and found out it has something to do with those files below( there are probably mroe of them but I can't find it directly ) If it is a virius or spyware, my Spyware Doc. ( updated ) should find it or maybe me McAfee Virus Scan ( updated ) Any ideas what is going on? and How can I stop these crashes? McAfee isn't very GOOD and I don't think I heard of Spyware Doc. before. Try using AVG Free, Adaware SE and Windows Defender instead. Quote i'm gettin errors such as "[highlight] we are in a middle of something and we need to stop, sorry for the ... "[/highlight] ( it's like the whatever software i use crashes, so i reinstall the software but it didn't work ) and i went a little closer to the detail and found out it has something to do with those files below( there are probably mroe of them but I can't find it directly ) Do you know this GUY? http://answers.yahoo.com/question/index?qid=20060920175803AA7m6le And what are the EXACT error messages, not the highlighted ones you listed? |
|
272. |
Solve : Can't install/uninstall anything!? |
Answer» Hi all, I'm using NOD32 (real-time) and Kaspersky (on-demand) for antivirus protection. As for spyware scanners I'm using Ewido Anti-Spyware, Spybot S&D and Ad-Aware SE. The on demand scanner, is it loaded into the memory when you start the computer? NOD32 (Isn't that Mcafee?) and Kaspersky might not be playing nice together. Do the scanners pick up anything at all when you scan in safe mode? Quote Either an install/uninstall or both did not finish completely or was interrupted by another task...I first noticed the problem about a week ago when my e-mail client (Thunderbird) automatically tried to update to a new version but kept failing over and over during the install. It kept telling me that a new version was available even after I tried to update. I already tried booting into safe mode and CLEANING out the temp files, it doesn't change anything. Quote The on demand scanner, is it loaded into the memory when you start the computer? NOD32 (Isn't that Mcafee?) and Kaspersky might not be playing nice together.YES Kaspersky is loaded into memory at startup but it doesn't do anything if real-time scanning is turned off. I have been using this combo for years without problems but just for good measure I've uninstalled Kaspersky (in safe mode of course) and still have the same problems. All virus and spyware scans I've done in both normal and safe mode haven't picked up anything. BTW, NOD32 is not the same as McAfee. OK i just after re-reading this thread noticed something that escaped me before... At the top of the 2nd error gif it states NSIS error. From what i dug up this is an open source installer designed to work like the Windows installer. I'm not sure if the people over at Mozilla use this for TBird and Firefox but i'm awaiting an answer from someone i know over there. Just to be sure though wrack your brain and try and remember all programs you have DLoaded and or installed in the last few weeks. I'll get back to you.patio, did you ever find out anything? Anyone else have any other ideas?Have you simply tried emptying the temp folders? I already tried booting into safe mode and cleaning out the temp files, it doesn't change anything. I wish it was that simple, I'll probably just have to wipe/re-install Windows since I can't find any information about how to fix this. I was going to re-install the OS anyway but I really wanted to find out how to troubleshoot this problem in case I ever came across something like this again. Oh well, thanks to everyone who tried to help. I found a problem like that on my Neighbours computer, i couldn't find anyway to fix it, they said it started happening after a Norton update failed , it locked up every thing on the computer , i couldn't even launch EXE's the only thing that worked was IE needless to say , it was easiest just to format and reinstall. I think it may have been a virus. Quote patio, did you ever find out anything? Anyone else have any other ideas? I have yet to hear back from them... |
|
273. |
Solve : Re: Unknown crap using 90% of the CPU? |
Answer» Scan for spyware and viruses. LVCOMSX (a lexmark driver while i never had a Lexmark printer installed?) Logitech webcam driver.I bet the bottom line is the SYSTEM Idle Process, mine runs on 99, that must be good eh? From what I can make out idle is at 81%. I notice there are some processes not shown by the scroll bar. You could have sorted them by CPU or memory usage. What is your memory usage - perhaps that is causing a slow down? Your CPU usage is not that great.Quatroking, dude, I think maybe you need a translator to help you understand the German or whatever version of Windows you have. The "Unknown crap" >LOL< is System Idle Processes. You should be wanting that number to be high, not low or nothing. It's simply the difference between the sum of actual processes and 100. In other words, the TOTAL in the CPU column of Task Manager must add up to 100%. As Fed said, his System Idle Processes reads 99% when not actively doing tasks with his computer. My does, too, or close to it: Can you actually speak German?I would not worry about it UNLESS it is causing an actual problem for your computer. What exactly is it doing to your computer? Quote think maybe you need a translator to help you understand the German or whatever version of Windows you have. It's Dutch.. Quote well, when the proccess goes up to around 98% my pc really slows down a lot and i have to re-boot to continue with my work!Are you talking about that System Idle Process again? I thought we explained that. What you need to be concerned about is the CPU Usage shown at the bottom of Task Manager. If it's high, then look for the specific process(es) using CPU resources.Dump that Window Blinds eye candy...it's a known resource hog... QuickTime... Office Adobe Gamma LOADER i'm not familiar with. |
|
274. |
Solve : hardware check software? |
Answer» hey everyone... |
|
275. |
Solve : MS Paint got deleted, where can I get again?? |
Answer» Some of you probably know about the AIM virus thats going around, when you have it, you automatically message everyone on your buddylist with something along the lines of "Hey I have this PICTURE of us, can I put it on my facebook?" And there's a link- of course, since it was from my friend (technically...) I DOWNLOADED the file, and ended up with the virus. Alot of things ended up getting DELETED, like all the game files (like Solitaire) and other tools, like the calculator, and most importantly, MS Paint. It's completely gone from my computer although I once had it. My question is, is there anywhere I can go to get MS Paint back on my computer without paying? :-/Let's see whether it may still actually be in your computer and just needs to be re-enabled, if you haven't already done this. Go to Control Panel, Add or Remove Programs, and CLICK on Add/Remove Windows Components. Select Accesories and UTILITIES. Click on the Details button. Select Accesories. Click on the Details button. Do you see Paint? Is the box for it checked? If not, put a check mark in it, click OK, and exit. Is Paint now available?You rock! I feel pretty dumb lol it's still there along with all the other files that got "erased" |
|
276. |
Solve : Energizer UPS software - won't work- power outage? |
Answer» I had to truncate the subject but you get the gist of it. I purchased and installed an Energizer ER Pro-1000 UPS about four months ago. During a thunderstorm when my electricity was lost, I had to shut down my computer manually. he most irritating part is this: there is no manual for the UPS (hardcopy or on the installation CD), and the company that made it seems to have disappeared from the web - repeated attempts to connect to the web address on the installation CD or to the web address found on Google return 404 'page not found' errors. Are you sure you weren't ripped off...? :-? What company is it? You may need to configure Windows to work with the UPS power supply, have you tried doing so?By another UPS and, this time, get a known brand such as APC. Quote Well, my goodness. Time for a change in thinking about some of your computer usage habits. How about Hibernation? Set it to HAPPEN automatically.I bought the UPS from Tiger Direct. I'd seen Energizer UPS before when I was browsing online computer hardware stores. My MISTAKE is that I thought this UPS was made by Eveready, the battery manufacturer. And I don't turn my computer off because or put it into hibernation because its my music source - I hate commercial radio. And I always leave it on for my four CATS, even if I've left. Lastly, I'll have to learn more about configuring Windows for an UPS. I hadn't even thought about it - my BELKIN UPS worked without making any modifications. I'll check to see if there are any MS KB articles on the topic. Quote And I don't turn my computer off because or put it into hibernation because its my music source - I hate commercial radio. And I always leave it on for my four cats, even if I've left. Nice fire hazard with all the dust and cat hair that gets stuck in the fans. Plus it's a good way to waste energy.. Quote Lastly, I'll have to learn more about configuring Windows for an UPS. I hadn't even thought about it - my Belkin UPS worked without making any modifications. I'll check to see if there are any MS KB articles on the topic. You can configure an UPS in Windows by going to Start -> Settings -> Configuration -> Power Management -> UPS tab (Freely translated..) |
|
277. |
Solve : Trouble with Ventrilo and World of Warcraft? |
Answer» hi, |
|
278. |
Solve : Microphone Problems :\? |
Answer» Okay, this one is wierd and freaking me out... It's muted on the output, not on the input...Yes, having that muted only makes it so I can't hear myself everytime I TALK.. The problem was simply the microphone, I bought a new one TODAY and it worked perfectly. I just didn't know mics could short out so UNEXPECTEDLY like that. Thanks for all the comments! |
|
279. |
Solve : Foreign office needs universal translator? |
Answer» Hello everyone, |
|
280. |
Solve : Another friend needs help removing Norton? |
Answer» Man, I hate this program! |
|
281. |
Solve : Looking for software for website? |
Answer» HELLO, I want to build a site that OFFERS recipes to download and members could up load as well. What would the best software be for that? KZ1No recommendation on the software; someone else will probably make a suggestion. But, regarding download and upload, you could put recipes in PDF FORMAT. Then, visitors could save the PDF to their hard drive. Or, they could simply copy and paste into Word or whatever. Uploading recipes is going to be more complicated. What about installing a forum in your website? Then visitors could post their recipes in the forum. Many web hosting services offer forum, i.e. message board, installation at no additional cost. to make the website you could use dreamweaver or frontpage but they cost money i would suggest getting a GOOD book on web DESIGN and learning and creating it by hand. maybe javascript would help with the uploading.Ah, I just discovered a site that does just what I mentioned; they have a forum and encourage posting recipes there. See http://members.allrecipes.com/Community/good maybe they can learn from thatThank you all for the responses. I'll check out the options you each mentioned. Thanks again KZ1Probably forum software is the way to go. You would need a web host that supports a language such as PHP or Perl. My preference would be PHP. You could then install Simple Machines Forum and customise it to your heart's content. |
|
282. |
Solve : About Python.exe ?? |
Answer» I NOTICED this file Python.exe in the task Manager for the first time while observing the processes of a P4 Laptop. Is it some spyware program ? I tried to GOOGLE it but couldnt get more info & was referred to download some Wintasks or some Registry programs which i wouldnt prefer. So, pls let me know if i could DETECT & remove it by any means? Description: Description: homer... thank you for havning that library, i had LOST the link to it when i previously formatted, and, if you read my most thread about zone alarm, you will understand why... well, its not exactly lost... im just denied access to it :-/that is true what raptor said, it may have already come with the rest of the crap that the manufactures like to pump into their laptops. i hate all that junk. my advcie for future reference is to format the hardrive yourself and install what you want, not useless junk that takes up space and that you will never use. also, its alot safer knowing what is installed on your comp. just try add/remove programs. it should be there, if not we can try something else. |
|
283. |
Solve : Zone Alarm Pro is causing my pc not to boot? |
Answer» i cant, blue screen of death, no way to screen shot it, or anything, the drive will not boot.Test your RAM and Hard disk Drive using diagnostic software. Quote Test your RAM and Hard disk Drive using diagnostic software. it may have been the hard drive, after disabling performance mode on the RAM, it stopped rebooting randomly. but now, it appears that i cannot access my folder in documents and settings on what use to be the C: drive, it says access denied, how do i get around this? i tried DOS, but, even DOS says access denied, i have tried copying the files, extracting them, ect. NOTHING works, any iideas? i know i set it so i was the only one who could access the files, i NEED to get my music and stuff off of there. ANY HELP will be TAKEN, as long as it means recovering the files. Quote it may have been the hard drive, after disabling performance mode on the RAM, it stopped rebooting randomly. but now, it appears that i cannot access my folder in documents and settings on what use to be the C: drive, it says access denied, how do i get around this? i tried DOS, but, even DOS says access denied, i have tried copying the files, extracting them, ect. nothing works, any iideas? i know i set it so i was the only one who could access the files, i NEED to get my music and stuff off of there. ANY HELP will be taken, as long as it means recovering the files.Try turning off Simple File Sharing and then re-claiming ownership of the folder in question. 1. Turn off Simple File Sharing: a. Click Start, and then click My Computer. b. On the Tools menu, click Folder Options, and then click the View tab. c. At the very bottom of the list, UNcheck the Use simple file sharing check box, and then click OK. 2. Right-click the folder that you want to take ownership of, and then click Properties. 3. Click the SECURITY tab, and then click OK on the Security message, if one appears. 4. Click Advanced, and then click the Owner tab. 5. In the Name list, click your user name, Administrator if you are logged in as Administrator, or click the Administrators group. If you want to take ownership of the contents of that folder, click to select the Replace owner on subcontainers and objects check box. 6. Click OK. You may receive the following error message, where Folder is the name of the folder that you want to take ownership of: "You do not have permission to read the contents of directory Folder. Do you want to replace the directory permissions with permissions granting you Full Control? All permissions will be replaced if you press Yes." 7. Click Yes. 8. Click OK, and then REAPPLY the permissions and security settings that you want for the folder and the folder contents. Hope this helps, good luck! Quote [highlight]i have XP pro installed (my dads copy), when i use my dads key though, the stupid windows genuine advantage says it is invalid... i suppose i will have to find a way around that... [/highlight]thanks for the firewall though, seeing as i wont be installing SP2 until i can get it to accept the key. i dont see why microsoft is so greedy about there software, they have more than ENOUGH money to allow atleast 5 keys per cd without charging the prices that they currently do. Why do you have the RAM cranked to performance mode ? ? Why keep introducing more variables into an already FUBAR'd situation ? ? As to your Docs and Settings dilemna check the MS website for "taking ownership of folders " Once you get your data back format that HDD reload a legit OS and all updated drivers and hopefully for awhile your grief will be over. patio. 8-) Quote Quoteit may have been the hard drive, after disabling performance mode on the RAM, it stopped rebooting randomly. but now, it appears that i cannot access my folder in documents and settings on what use to be the C: drive, it says access denied, how do i get around this? i tried DOS, but, even DOS says access denied, i have tried copying the files, extracting them, ect. nothing works, any iideas? i know i set it so i was the only one who could access the files, i NEED to get my music and stuff off of there. ANY HELP will be taken, as long as it means recovering the files.Try turning off Simple File Sharing and then re-claiming ownership of the folder in question. perfect, i would have never thought to look in the folder options... . patio, i didnt turn on performance mode, i just noticed that it was on, dunno how it got turned on. but, my computer is weird like that. and i am running a legit OS on the 30 gig, it sounds like a coffee grinder at times, but, it works. i will use this until i upgrade to a 320 gig sata drive, will cost me about 180, no prob wiht the job program that my school is putting me on. i have to get a PCI sata card so it will run at 3.0 gb\s, no reason why i should pay 94 bucks for an ide drive when i can get a sata one for the same. i will have to find the drive and card, seeing as they where lost in the prievious format of this drive... but, all issues are resolved... for now... hopefully my PC will not go on another rebellion. |
|
284. |
Solve : MSN Messenger error - cannot find path/address? |
Answer» What kind of error is this? |
|
285. |
Solve : Diagnosatic tool? |
Answer» I WOULD be so thankful if you could send me diagnostic utilities such as SPINRITE, AMI Diag, Checkit, SiSoft Sandra, PC TECHNICIAN, etc |
|
286. |
Solve : A nice universal Audio/Video software?? |
Answer» Hey guys I was just wondering if you could RECOMMEND a good peice of software that can play both mp3's and movies. I know Windows MEDIA player can but I just dont like the quality of the VIDEO...it seems like it CANT keep up with the movie. Any recommendations would be much appeciated www.winamp.comHow about VLC media player? |
|
287. |
Solve : Windows media player HELP!? |
Answer» I have had problems with MEDIA player for ages, it always crashes and even makes the computer crash completely as well. I've tried all the fixes on the microsoft website and none of them WORK! HELP! :-?Need...more...info ( gasp ) |
|
288. |
Solve : Help with QuickTime Errors? |
Answer» I tried to update Quick Time and got the following error messages: Deafness by ipods or any other mp3 player is caused by stupidity not the devices Wink Actually, the small ear PLUGS you get with them do not filter out any outside noise. You're probably using them on a setting that is too loud as well. You might even use them while jogging, which is very dangerous because the tiny hairs inside your EARS become very vulnerable and are easily damaged by loud noise. 'Tis true, ma'am: How Hearing Works (Click) thats why you get normal head phone Quote thats why you get normal head phone How many people do you see walking around with proper headphones? Not many over here. lol i dohttp://www.codecguide.com/about_qt.htmThanks Fed. I actually came across the alternative QuickTime but, was relunctant to use it. It warned about how it could change some drivers or something to that effect. Anyway, everything is working now. |
|
289. |
Solve : Can I get a Gateway E4100 restore CD from Gateway? |
Answer» I RECENTLY bought a Gateway E4100 off the INTERNET but it didn't come with a restore CD. If I gave Gateway the serial# would I be able to BUY ONE from them? I'm thinking of upgrading to Windows Vista next year but would like to have the current Windows XP restore CD in case something happens until then.Contact their customer support service and ask. But keep the serial NUMER and other identifying papers at hand. |
|
290. |
Solve : How to retrieve Outlook folders from WS explorer? |
Answer» Operating system Windows 98SE, Office 2000 |
|
291. |
Solve : Outlook Forms Checkbox? |
Answer» I have CREATED a form with some CHECKBOXES. My problem is that when the form is sent to a mail recipient, the checks are not retained. |
|
292. |
Solve : Excel to jave transfer???? |
Answer» Anyone knows how to transfer an excel sheet to JAVA Runtime Environment (JRE) database?? I can Export from Java to Excel but not the other way AROUND. Pls Help>>>>thxJava Runtime Environment (JRE) database; is there really such a database? Just curious. Can you provide a LINK to a reference on it? |
|
293. |
Solve : Skype won't luanch? |
Answer» I am having trouble launching Skype. When I try to SEND the Skype help people an inquiry it won't send it because it believes my question is answered somewhere in its database of Q&A. I download the program OK, and then install it. When I am finished I see a Skype SHORTCUT icon on my desktop but no launch icon on the bottom bar. When I click on the icon I see an hourglass icon for a few SECONDS and then nothing happens. I have TRIED several times to re-download the program but I always get the same result. I have a Zone Alarm Pro firewall, but I don't think this is the PROBLEM becase I followed Skype's tutorial for using it with Zone Alarm Pro. Does anybody have any ideas? |
|
294. |
Solve : Looking for a program..? |
Answer» I'm looking for a program that'll compress my VIDEO FILES to a smaller size but not distort them too MUCH. Something like the NSV for Winamp but for some reason that doesn't seem to work for me. Help is appreciated! |
|
295. |
Solve : Adding watermark to my videos...? |
Answer» Hi, |
|
296. |
Solve : ahhh...dobe? |
Answer» Right so this is my problemo... Aaaaahem! I believe in making them work, that way you find out if they're halfwits or fullwits or even coming back.Boo hoo hoo! |
|
297. |
Solve : been stuck on this 4 ages!? |
Answer» Hello again. |
|
298. |
Solve : scratch disk space?????????????????????????? |
Answer» adobe will no LONGER let me use its program because it says i NEED to clear the "SCRATCH disk" space or something like that. i have never heard of scratch disk space before. what is this and how do i empty or clear it or whatever the *censored* i am supposed to *censored* do? |
|
299. |
Solve : audio amplifier? |
Answer» hey guys, yea sure HuH ? ? The sound is only going to be heard at the MAX LEVEL that it was recorded at when the .mov file was made... One of the drawbacks to P2P movie SHARING i guess....you get what you pay for. |
|
300. |
Solve : Coloring a page with MS Paint? |
Answer» I downloaded some free coloring pages for my DD's upcoming birthday party. I'm trying to color them in Paint and then enlarge them and use them as decorations. The problem is that no matter what color I choose, it paints as gray on the page. Can anybody help?Perhaps try attaching one of these images so we can look at it?Okay, here's how it always turns out. I used red for the hair and different shades of green for the tail and purple for the shell bra, yet everything is in shades of gray. If I try a new blank page, though, the colors work just fine. |
|