
Search In
This is the demonstration of how to use a dispatch timer in WPF using C#.
private DispatcherTimer timer; // Declaring instance of DispatcherTimer class
public Window1()
{
InitializeComponent();
Loaded += new RoutedEventHandler(Window1_Loaded);
Sometimes we add custom fonts to our xcode project.
For example:- Suppose TwCenMT-Bold.ttf is the font name which you have added to your xcode project, but when you access this font, it does not reflects.
*Reason:- * This font does not contains th
Hii friends,
Many of you when you will start making a website in drupal will need to provide multiple language support.And providing so if you follow these easy steps you can easily make it. For making a multiple language site you need to configure
The following code prints an image stored in a file:
-(void)print:(id)sender
{
NSImage *image = [[NSImage alloc]initWithContentsOfFile:[imageEdWindowController getImageLocation]];
[image scalesWhenResized];
NSImageView *_imageVie
Steps for Script Creation in JMeter
1.Right Click on Test plan-> Add Thread Users-> Thread Group
2.Right Click on Thread Group->Add Logic Controller->Transaction controller
3.Thread Group-> CSV Data Set config
4.Thread Plan-> HTTP
When i was working on a class i have got the following error..
Access restriction: The type BASE64Encoder is not accessible due to restriction on required library C:\Program Files\Java\jre6\lib\rt.jar
I resolved it by looking up on google, where I
Selenium is a free open source automation testing tool Which is used for the automation testing also it is used for web based application. We can use Selenium in different types of browsers and platforms for testing.
Selenium is very strong, flexib
Sometimes we do not get other label's contact number from the iPhone device. We only get "Mobile" labelled number or "iPhone" labelled number. Here is the code to get all type of labels contacts from an iPhone device.
Inside the loop where we have g
The @property and @synthesize keywords simply automate the creation of getter and setter methods,
@interface MyClass : NSObject
@property int value;
@end
@implementation MyClass
@synthesize value;
@end
The @property keyword declares the pro
To create XML file in Java,here we are using DOM parser. By using the below code you can easily create XML file.
Write the below Java class to create a XML file:
CreateXMLFile.java
package com.babita;
import java.io.File;
import javax.xml.parser
