< Browse > Home

| Mobile | RSS

sharief shaik

Creating a Macro in Microsoft Excel

To create a Custom Macro in Microsoft excel just follow the below steps:
1. Go to tools -> Macro -> Record New Macro : A pop up will display. Just enter the macro name and assign a short cut key to it. Select “Personal Macro Workbook” in “Store macro in” checkbox.
2. Next do all the stuff [...]

[ More ] January 11th, 2010 | No Comments | Posted in Uncategorized |
emailtoid.net/i/df884d6e/

Usage of Calendar using JQUERY and populateing age automatically in text box

Please go to this link (http://www.java2s.com/Code/JavaScript/GUI-Components/jquerycalendar.htm) ) and download first jquery-calendar.zip. Extract the zip file and copy the files jquery.js, jquery-alendar.css, jquery-calendar.js into the directory where the webpage is kept in which u want to add the functionality of calendar.Now
1) Add these files to your webpage
<script type=”text/javascript” src=”jquery.js”></script>
<script type=”text/javascript” src=”jquery-calendar.js”></script>
<link rel=”stylesheet” href=”jquery-calendar.css” />
2)Now copy the [...]

[ More ] October 7th, 2009 | No Comments | Posted in Javascript |
sudhakar.dasari

Generating Serial No./Row No.

I had a requirement to display serial numbers in Zend grids. So, in order to fulfill this, I had a worse idea of using a count variable and displaying the same as serial number but, Zend grids will not allow such worst ideas to implement.
So had explored for a solution to generate serial numbers or [...]

[ More ] September 11th, 2009 | No Comments | Posted in Mysql |
pradeep.assrr

Apache not rendering HTML pages - Jboss Server

When you have an html page of size more than 1MB, Apache will restrict some part of the page to display. This would be usually images. So in order to allow Apache to show the entire page, the following code snippet has to be placed in web.xml file located in \jboss-4.0.5.GA\server\default\deploy\jbossweb-tomcat55.sar\conf path above <load-on-startup>1</load-on-startup> line.
<init-param>
<param-name>sendfileSize</param-name>
<param-value>-1</param-value>
</init-param>

[ More ] August 27th, 2009 | No Comments | Posted in J2EE, Java |
kalyan.kadiyala

Run a *.bat file as a service

Here are the steps to run a batch file automatically on a computer everytime it boots without displaying the console window:

Open two empty notepad files and rename them as *.bat and *.vbs

where * stands for user-defined file names.

Edit the *.bat file and copy the following line into it:

wscript.exe “C:\~path of the folder in which batch [...]

[ More ] August 10th, 2009 | No Comments | Posted in Uncategorized |
dhavalesh.potnuru

Ubuntu loading problem: File system check failed due to improper shutdown

Due to improper shutdown file system check has failed while loading ubuntu
In order to solve the error you need to correct the file system manually. So the ubuntu will ask you correct the file system manually. To do the same follow the below steps
1. If you dont know the root credentials
Press ctrl + alt + [...]

[ More ] July 21st, 2009 | No Comments | Posted in Uncategorized |
rineesh.babu

Zend Cookie Creation

We will consider mostly 3 things while creating a cookie in php they are
1. Cookie name
2. Cookie value and
3. Time on which cookie have to die itself.
The fourth thing which we have to consider is…
4. Cookie path.
If we did not mention any path externally then it will take the current path as default.
But in Zend, [...]

[ More ] July 16th, 2009 | No Comments | Posted in Zend |
bhagat.illalova@scubetech.in

Locking records and Dead lock detection and solution in Mysql

Locking: Locking is the mechanism which locks the tables, records, and pages based upon the requirement.
we have different types of locks are there in MySql.

Read/Write Locks.
Table Locks.
Page Locks.
Record Locks.

Let us have example on the single record lock by using select for update statement.
suppose we are using
select item_id from the item_table where item_id=’100′ for update.
This 100 [...]

[ More ] July 16th, 2009 | No Comments | Posted in Mysql, Uncategorized |
bhagat.illalova@scubetech.in

Transactions in MySql used in Vb.net

Transactions are very important topic in the Mysql. let us suppose we are working with the Mysql database that is auto commit mode is true. but in all scenarios auto commit mode true will be not safe in that situvations we can turn off MySql database into different modes either Auto commit mode is true [...]

[ More ] July 16th, 2009 | No Comments | Posted in Mysql, VB.NET |
sharief shaik

ie6 Min Height problem + Hack

Hi,
ie6 doesn’t recognize the min-height attribute. So to overcome this problem we can use the below hack to solve this:
selector {
min-height: 500px;
height: auto !important;
height: 500px;
}
How it works?
Lets go through browser wise:
ff, ie7:
1. Min height property is recognizable and works fine in these.
ie6 :
1. ie6 doesn’t recognize the min-height property, so it is [...]

[ More ] July 15th, 2009 | No Comments | Posted in css |