- Strength to Increase Rep
- +11
- Strength to Decrease Rep
- -2
- Upvotes Received
- 34
- Posts with Upvotes
- 30
- Upvoting Members
- 24
- Downvotes Received
- 7
- Posts with Downvotes
- 5
- Downvoting Members
- 7
My occupation : Staying occupied
- Interests
- computers
1,027 Posted Topics
Re: today it was 80 degrees Foreignheit here :). | |
Re: I had always removed the space after the full-stop. But the tools like Grammarly and Microsoft Word have changed my habit to add a single space after every grammatical symbol. The removal of space from everywhere comes from the fact that I used to use SMS a lot and it … | |
Re: [QUOTE=Mahindar Singh]hi i am mahindar from India. Today is my first day. I have browsed the site from sometimes. I have found the site very useful. Thanks[/QUOTE] Hello Mahindar ! I am Sani from Pakistan, your neighbour :). Nice to meet you here. | |
Re: The hardest program I wrote was a compiler of C language ( not a full one, but it did have many features) ... and the only reason I did code that was that it was a compiler construction lab assignment ... LOL ... | |
Re: You must now reinstall your windows ... dont upgrade it .. just install a fresh copy. | |
Hey I am using windows xp sp2. The problem is that sometimes my computer gives a blue screen error and I wrote down the error ... was PFN_LIST_CORRUPT Error : 0x00000004E I wonder what the problem should be? It occurs randomly from time to time .. I cant guess its … | |
Re: As its not a tip or tweak .. I'm moving the thread to windows 2000/xp section. | |
Re: Can you provide us with some more on your problem. | |
Run regedit from your run menu and find this key : HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main and find Search Page value and change it to google like this : "Search Page"="http://www.google.com" "Search Bar"="http://www.google.com/ie" | |
Re: Can you boot from cd rom or the system is completely dead ?? | |
Re: Implode function does the trick for me. Here an example that I followed: <?php $array = array('lastname', 'email', 'phone'); $comma_separated = implode(",", $array); echo $comma_separated; // lastname,email,phone ?> | |
Re: The shortcut key for locking workstation is windows key + L. | |
Re: I'm using two versions of Windows 8. One is Release Preview version and another from TechNet subscription. | |
Re: You can mount an ISO image in MAC by double clicking the ISO image or issuing the following command: hdiutil mount image.iso | |
Re: [code] import javax.swing.JOptionPane; // program uses JOptionPane public class EvenOdd { /** Creates a new instance of EvenOdd */ public EvenOdd() { } /** * @param args the command line arguments */ public static void main(String[] args) { String Number; // string entered by user String result; // a string … | |
| |
Re: Read about the Time class ... you'll get what you want. | |
Re: Donot start straight away with programming .... draw a blue print of the program ... and then translate it into a pseudocode ... and then map it to c++. | |
Re: Here's the hotmail login fixer ... fixed my problem. Use it and let us know if it can fix yours. | |
Re: try out this code ... it will not be platform independent .... Process p = Runtime.getRuntime().exec("c:\myprogram.exe"); I dont have the time to test it .... if you succeed please tell me too. :eek: | |
Re: [QUOTE=J_Search]associates, Change the permissions to the shared drive to include the user accounts of the other computers. This, of course, implies the other users have individual password protected accounts. J_[/QUOTE] Permissions can only be changed if you're using NTFS file system. Fat32 hasnt got any securities. | |
Re: Can you tell us which specific application you are talking about ... and if its windows then what version of windows are you running .. and how long have you been into this problem .. ![]() | |
Re: If you want to fix column A and Row 1 then select Cell B2 and then go to Windows Menu and select Freeze Panes. It'll freeze the first row and the first column of your worksheet. | |
Re: You should be using a dialog box or a new frame ( as you like ) with a JEditorPane in it .... JEditorPane can display html/rich text format contents ... you can use the methods ... read or setText or setPage of JEditorPane to show the respective content. For further … | |
Re: This usually occurs because of corrupted drivers .. you should completely uninstall the sound card driver, reboot and let windows detect the card and if it's not plug n play ... install the driver manually, not automatically. | |
Re: In my opinion it should be purely for the sake of future... the punishment that prohibits people from doing that act again should be implemented, whether it be a time trial or death penalty. | |
Re: For changing the color ... button.setForegroundColor(Color.red); For changing the font ... button.setFont("Verdana"); | |
Re: On-page SEO See what your competitors are doing to get on top. Each and every detail counts. Off-page SEO See how many links your competitors have for that particular keyword. You need to achieve at least that no. of backlinks for your page. | |
Re: Which icons are you talking about ?? My computer, My documents etc. ?? if your windows is xp .. then just right click desktop ... properties ... desktop ... customize desktop ... and check the icons you want on your desktop. | |
Re: if ( number2 > number2) what is this thing .... it is almost impossible .... why are you doing this ??? ... and exactly on which line is the error message , please specify. | |
Re: It seems like the network DDE service is not running which is required by winchat. Enable it and then try again. To enable it .. right click My Computer -- Manage -- Services and Applications -- Services -- Find network DDE and turn it to automatic. By default it is … | |
how can I edit the windows registry using vb.net | |
Re: [QUOTE=cscgal]Can someone please explain to me the difference between ++i and i++ when written as part of an expression (i.e. within loops and if statements) ? Thanks :)[/QUOTE] Simply ++i increments i first and then does any computation in the loop ... and i++ first does the computation and then … | |
Re: I think System.exit is the quickest way shutdown apps in java. I usually disble the X button of the GUI and provide an exit menu for exiting. | |
Re: This microsoft support article should solve your problem : [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;324767[/url] | |
Re: I've used AVG antivirus for quite a while now .... it was good until it let come a virus that ruined all the apps of my hard drive. Then I tried ZoneAlarm security suite ... it was also good not taking much resources... but I had some minor problems with … | |
Re: You can also access the system information by typing msinfo32 in Run dialog box. | |
Re: What do you mean reconfigure ?? Do you want to save your father's work and do your own things?? then you can just leave your father's profile as it is and make another user account by your name, login with that name and do what ever you wanna do. | |
Re: Ahh .. I have only worked on Cisco Routers. Most probably you can do this by specifying the IP address of (of the internet connected interface) one router as a gateway of the other. | |
Re: When you boot your computer, press F8 to go to advanced options. Select Disable automatically restart from there. The computer will restart, see if it gives you the blue screen of death. Tell us the error code. | |
Re: You can read about multimedia in java.sun.com... Anywayz I give you the base idea: [code] ImageIcon image = new ImageIcon("image.jpeg"); jpanel.add(image, BorderLayout.North); [/code] | |
Re: [CODE] public class swapping { public int trade(int []a, int b){ //says theres a missing return statement int temp=0; for (int n = 1; n < b; n++) { for (int m = 0; m < b - 1; m++) { if (a[m] > a[m] + 1) { temp = … | |
Re: Zone alarm and kaspersky are good antiviruses which dont take more resources. And a funny thing ... I've also run win xp on 64 mb of ram .. and it worked fine for me .. hehe. | |
Re: I recommend you using system mechanic and tuneup utilities for system maintaince. ![]() | |
Re: hey I wanted to know that is firefox heavier than IE ?? I dont have a system with extreme performance ... and I only have 256 mb of ram. | |
Re: If you want to go back one directory .. issue the following command: [B]C:\Documents and Settings\user>cd .. C:\Documents and Settings>cd .. C:\>[/B] The thread is already marked as solved but I don't think it has been solved yet ?? | |
Re: I think some of your hardware is not properly installed ... remove any modems or lan cards or other hardware and then start your pc ... does the same error occur again ??? can you give us a glimpse of the error you get ? |
The End.