
Search In
There is no close method in spreadsheet.If you opened the spreadsheet and after reading you need to delete it then FIleUtils.rm(file_name) will work smoothly in linux but in windows it will give permission error
Errno::EACCESS(Permission denied)
Printing any field on an OpenERP report on a conditional basis, you can add a simple line in your report
[[(object.field == 'Some Value') and 'value1' or 'value2']] is equivalent to
if object.field:
print value1
else:
print value2
Suppose
In the below code you can automate the web page using QTP and can find the text with the checkbox adjacent to it .
Create a description property with micclass for web checkbox.
Set oDesc = Description.create()
Set oDesc = Description.create()
oDesc
Facade Architecture in ASP.Net:-
The facade is an interface that an application can use to get things done without worrying about the details. The facade decouples these layers so that they don’t depend on each other, which makes each easier to deve
Here is the working example to get select box option value and text via Simple html dom.
I assume that you have already included simple_html_dom file and have html content in $content variable
$html = new simple_html_dom(); // Creating html dom o
Hello reader !
How to make responsive iframe. We all are face this problem normally so there is an example and i hope it will helps you.
CSS :-
.wrapper {
width: 50%;
}
.container {
height: 0;
width: 100%;
padding-bottom: 50%;
In java can we create a inner class inside a method??
Answer to this query is yes .
Example code :
class Outer
{
String outerVar="outer Variable";
public void checkInner()
{
final String localVar="Loc
It might be required to display a large number of images having different sizes, one by one on the screen. To make it look neat, all the images should be aligned at the center of the screen, irrespective of their size. So fixing the coordinates of th
Facebook friend list import became easier after using latest Facebook SDK. Here is the method which imports friend list.
NSMutableArray *arrfriendList = [[NSMutableArray alloc]init];
[FBRequestConnection startForMyFriendsWithCompletionHandler:^(FBRe
Hi All,
I was confused about how to implement patches into our Drupal modules or in other files. There is a way to apply these patches automatically. We have to install git bash and then we can apply available patches and as well as create new stand
