CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

Articles

Articles

How to Convert VSD Files to PPT Format?

VSD files are Microsoft Visio drawing files. Microsoft Visio is useful to create drawing files like plans, flowcharts, org charts, etc. Microsoft Visio allows the users to export the Visio files into different file formats like PDF, PNG, GIF, etc. But Microsoft Visio will not directly export the Visio files into PPT files; the Microsoft […]

How to fix the error “Strict Standards: Accessing static property JCache::$_handler as non static” in cache.php on line 422 in Joomla 1.7.3?

“Strict Standards: Accessing static property JCache::$_handler as non static” error will get when you access the Site ater insatlling  Joomla 1.7.3. Just you can open the mentioned file and go to the line where you are getting the error, and modify the code. The following code steps will help to fix this error in cache.php on line […]

C Programming – Understanding Unions in C

Unions are another useful types in C language, where all of it’s members starts at the same location in memory. That means, all members of the Union, have the same address; whereas, members in Structures have different addresses. This unique quality of the Unions, saves the memory usage. Defining an Union in C By using, […]

Scroll to top