Software / Technology Tips

Formating the string before displaying in ASP.NET

In Some cases while displaying a large number it will be nice if we can format the number to a more readable format Like : Reputation Point : 537456 Can be more readable if we can write it as Reputation Point : 537,456 ASP.NET provide features like String.Format(format,arg0) to format arguments into different forms. For…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Using Surface View for Android

Surface View Tutorial This tuturial guides in using surface view at a very basic level . The code presented in this tutorial creates a simple view with a image using a surface view instead of conventianal View object. Create New Project & Activity Lets create a new android project using ecilpse. Lets name it SurfaceExample…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Play flash video in windows desktop application from local folder

Process to play video from a local folder with windows desktop application usingTitanium are follows : In titanium we have a html page where we can specify the UI of the application and we can also have javascript file where we can write our scripts. So lets in our html page we have defined a…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

.NET Tip “IComparable.CompareTo()” Vs “IComparer.Compare()”

class Employee {   public int  EmployeeID { get; set; }   public string FirstName { get; set; }   public  string LastName { get; set; }   public int yearofExperience { get; set;  }   public int DesignationRank { get; set; }   public Employee(int empID, string  fName, string lName, int yof, int    desRank)…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Convert Filemaker application to a Windows installer package

After downloading this we have to install this software so that we can able to create our .msi package. To do this please follow below steps 1. Now Go to Start menu and select Inno Setup 5 > Inno Setup Compiler. It will show you a Welcome dialouge 2. Select “Create a new script file…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

DPI setting and resolution of WPF application

One of the features of a WPF application is that it is resolution independent. Now what does resolution independence of WPF Application really mean ? Our monitor screen depends upon two factor to display the text and graphics , first is resolution and other is DPI (Dot Per Inch) . Resolution: Number of pixels that…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

No Preview Mode in FilemakerGo

The iPhone and iPad do not support printing on FileMaker Go. There is no Preview Mode on FileMaker Go. So its clear that we can’t go to the preview mode and view/print the report in preview mode Can we view our reports in iPhone —Yes here you have to think out of box. We can…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

A brief idea about Cookie ASP.NET

Some Tips to implement Cookie : 1. How to Check User’s browser supports Cookie ?  HttpBrowserCapabilities browser;if (browser.Cookies) { bool isAllowCookie = true; } 2. How to get list of existing Cookies from User’s browser ?  HttpBrowserCapabilities browser; if (browser.Cookies) { foreach (string cookiesName in Request.Cookies) { lblCookieName.Text += “ ” + cookiesName ; }…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Dynamically creating Tabs And adding Modules in DotNetNuke

This example is about how to create tabs through code, set permission of tabs and embed an existing desktop module to that tab, set permission of desktop module, clear module cache, tab cache, portal cache. using System; using System.Collections; using System.Configuration; using System.Data; using System.Collections.Generic; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls;…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Installing and Running the SuperContainer as Windows Service

What is SuperContainer? SuperContainer is the easiest way to upload, view, and download files to and from any FileMaker database, plus it offers numerous advantages over FileMaker’s built-in container field: faster speeds, smaller file sizes, web browser uploads, and cross-platform file path compatibility. Find more details on SuperContainer @ The Problem: After installing the SuperContainer…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!