Posts

Showing posts from August, 2013

How to execute an exe ,bat,etc files from C# program

Image
Well this is Pretty Simple than  u might ever wonder just use the code given below System.Diagnostics.Process.Start( "C:\WINDOWS\system32\CALC.EXE" ); In the Above code (given in red) ,You can execute any file with full Pathname or with Shorthand like simply "calc.exe" if your file is in same directory of the C# program Enjoy.........:) 

Tip to become a successful software engineer.

To actually call yourself a software engineer you need to take into account a few aspects of what an engineer should do. You’re Not Paid To Type Typing code into a code editor or text editor is not what a Software Engineer is paid to do.  At least, it is not the primary reason this profession exists.  Yes, part of the job is to write code in any number of languages and platforms. As Derick pointed out, it is more then writing code, it is about writing tests, and making sure the code you do type works as designed and can be easily maintained. All that being said, the actual act of typing is simple and quick.  There is training in keyboard typing and methods to increase how many words per minute one can type. So, does typing more code constructs per minute mean you should to get paid more money?  If you turn out more code then the engineer sitting next to you, have you created more value?  See where I am going with this.  Typing is easy, and typing the wrong code is re

Wamp Server FORBIDDEN ACCESS Windows 8 : Fixed

Image
Wamp Server has a “Forbidden or denied Access” in Windows 8 Follow the steps below to Run Wamp Server in windows 8 Step 1 : Start Wamp Server Then, Click on the WAMP SERVER icon in the TaskBar Click on apache - > httpd.conf Step 2 : Edit httpd.conf file Press “CTRL + f” and u will get a window like this Click on Find Next Then You will get “Listen 80” Change it to “ Listen 0.0.0.0:80” Save the file Click Wamp Server Icon on taskbar - >Restart All Services Now Open your web Browser and type “localhost” You will have wamp server page....enjoy