Archive for category Uncategorized

Filenet WCM 5.0 FAQ

  Access Area What are access areas used for? Access areas are used as an organizational tool to group elements. Elements are objects, templates, pages, users, and environments. If you group certain elements into an access area, only a user permitted in that access area will have permission to view, edit, or modify that element. Access areas are ideal for a company with different divisions, channels, or departm Read More

Regular Expressions

IP Address: from 0.0.0.0 to 255.255.255.255 Pattern: /(([2]([0-4][0-9]|[5][0-5])|[0-1]?[0-9]?[0-9])[.]){3}(([2]([0-4][0-9]|[5][0-5])|[0-1]?[0-9]?[0-9]))/gi Bookmark on DeliciousDigg this post Recommend on FacebookShare with StumblersTweet about itSubscribe to the comments on this post Read More

password storage in firefox

All the passwords stored in firefox can be viewed from Tools –> Options –> Security–>view passwords. Bookmark on DeliciousDigg this post Recommend on FacebookShare with StumblersTweet about itSubscribe to the comments on this post Read More

Tags: ,

Enable Multiple Simultaneous downloads

To enable multiple simultaneous downloads in IE 9 (beta) Navigate to the following location: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings Right-Click Internet Settings select New then click DWORD (32-bit) Value. Name this value MaxConnectionsPerServer and set its value to 4. Right-Click Internet Settings select New then click DWORD (32-bit) Value. Name this value MaxConnectionsPer1 Read More

Tags: ,

Unpack msi package

msi package is like a normal package where we can unpack using some command line tools available in the OS To unpack msi package, use the following command msiexec /a mypackage.msi /qb TARGETDIR=”C:\MyFolder” Bookmark on DeliciousDigg this post Recommend on FacebookShare with StumblersTweet about itSubscribe to the comments on this post Read More

Tags:

Remove alphabets – Formula field in crystal reports

The following formula field removes alphabets StringVar MyField; StringVar Strip; Strip:= “”; MyField := {Command.xxx}; While Length(MyField) > 0 Do ( If IsNumeric(Left(MyField,1)) Then Strip := Strip + Left(MyField,1) Else If (Left(MyField,1)=”-”) Then Strip := Strip + Left(MyField, 1); MyField:= Mid(MyField,2); ); Strip; Bookmark on DeliciousDigg this post Recommend on FacebookShare wit Read More

Sign out from gmail remotely

We can sign out form gmail remotely if we have any sessions opened at other locations. To release all the sessions 1. Login to gmail 2. Scroll to the bottom 3. Click on the Details link at Last account activity 4. Click sign out all other sessions in the dialog box Bookmark on DeliciousDigg this post Recommend on FacebookShare with StumblersTweet about itSubscribe to the comments on this post Read More

Tags:

Javascript – get elements by class

function getElementsByClass(searchClass,node,tag) { var classElements = new Array(); if ( node == null ) node = document; if ( tag == null ) tag = ‘*’; var els = node.getElementsByTagName(tag); var elsLen = els.length; var pattern = new RegExp(“(^|\\s)”+searchClass+”(\\s|$)”); for (i = 0, j = 0; i < elsLen; i++) { if ( pattern.test(els[i].className) ) { classEleme Read More

Tags:

Search all tables in SQL Server

While browsing internet for searching string across database, I found the following stored procedure EXEC SearchAllTables ‘Computer’ GO Here is the complete stored procedure code: CREATE PROC SearchAllTables ( @SearchStr nvarchar(100) ) AS BEGIN – Copyright © 2002 Narayana Vyas Kondreddi. All rights reserved. – Purpose: To search all columns of all tables for a given search string R Read More

Tags: