Welcome!

Uses Of Params Modifier In C#

While using the function member, any numbers of parameter (including none) may appear in the calling function based on need. So to have a flexible function we can use params…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Create Custom Sidebars and Widget

Step 1: Open the “functions.php” of your theme and search for function {theme_name}_widgets_init(). If you are going to create your theme from scratch then, you have to define this function…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Populate records programmatically on Transaction screen of RMS POS front

This tip is to handle the scenario where the user needs to extract the transaction details from some text file or other source and show them on POS Transaction screen…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Embedding YouTube Videos in a Grid View in iPhone App.

In many projects, YouTube videos are embedded and there is a need to display these images in grid view. For displaying videos in grid view, we have to create another view for thumbnail view,…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Secure Way Of Executing The Update Statement In Sql Server

EX-             BEGIN TRANSACTION             UPDATE Employee SET Fname = ‘XYZ’ WHERE ID = 1024;             SELECT * FROM Employee WHERE ID = 1024;             ROLLBACK TRANSACTION                                                                   But think while updating the table somebody forgot…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Block Screen Orientation in Rhodes App for Blackberry

This tip show how to block the screen orientation to specific direction in Rhodes Application for blackberry. To block the Screen Orientation in blackberry, navigate to the path < Rodes…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to disable landscape orientation in Blackberry WebWorks application.

You can disable the landscape orienation for screen of Blackberry WebWorks application by adding in config.xml. Also you need to add    int directions = net.rim.device.api.system.Display.DIRECTION_NORTH;    net.rim.device.api.ui.Ui.getUiEngineInstance().setAcceptableDirections(directions);    after…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Are You Paginating Right?

The one issue that dogs most programmers is application performance and there are certain things that are in our control always, one of that being returning only the necessary data…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to refresh Captcha image

Captcha images are very helpful in preventing spammers posting form data into our applications . A captcha image is a image having some distorted text which humans can read but…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!