- 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
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"); |