- Strength to Increase Rep
- +2
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Hey. Windows 7 x86. 4GB RAM. 500GB HDD. Bluescreens every other time coming out of standby/hibernate. Only pointing to Windows kernels... but there's gotta be another reason. STOP 0xE1, in case you were wondering. All dumps attached. Thanks, Emanfman | |
Re: Did you remove them from the recycle bin? :P Anyways, one such program that I prefer is Brian Kato's restoration utility because it received many positive reviews from PCWorld Magazine. It showed me files I didn't even know I had! Link: [url]http://www.pcworld.com/downloads/file/fid,23108-order,4-page,1/description.html[/url] [b]MAKE SURE YOU RIGHTCLICK->RUN IT AS AN ADMINISTRATOR![/b] … | |
Hey... something I've always wondered. For some reason, one day, this stopped working for me. When you right click (or click drag upwards) an icon of a running program in Windows 7, you get a menu. By default, there is a section in that menu marked "tasks" which allow you … | |
Re: I have never seen anything better than TeamViewer 6 for this job. I know, I'm the millionth person to tell you this. And by the way, I'm pretty sure windows already has a remote desktop connection feature built in... Hope I helped... albeit not much more than anyone else :P … | |
Re: Permissions aren't set to allow the program to edit the contents of the folder. This can be changed easily, but be wary that when you allow this program to edit your system files, you allow ANYTHING to edit your system files. OR You can simply right-click->Run this program as an … | |
Well, well. I was looking for a program online. And so, it appeared as a [ICODE].bat[/ICODE] file. However, It looked suspiciously small at 53 kB. So, before I ran it, I opened it up in notepad and voila, a virus. So, I shredded the file with the windows 7 shredder, … | |
Hi, I am really confused. Everywhere I read on the internet, I see that the += operator is part of the string class. I want to add something onto the end of the string. Why does my code not compile? I keep getting the C2088 error: illegal for class. If … | |
Hi, I am a little bit troubled. I want to call a function in a separate file on a windows form. Here is my header file: [CODE]private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { String ^OriginalText; String ^ConvertedText; OriginalText = this->textBox1->Text; ConvertedText = ParseBBCode(OriginalText); this->textBox2->Text = ConvertedText; }[/CODE] This means that … | |
Re: I saw a major syntax error. Maybe you were thinking Java? The proper syntax for an if statement is: [CODE]if (condition1, condition2, condition3...) {statement1; statement2;}[/CODE] If it's simpler, here it is on several lines: [CODE]if (condition1, condition2, condition3...) { statement1; statement2; }[/CODE] If you wanted something to be done if … |