If anyone is using this software and needs a Birt Report to print all test cases for particular project or group of test cases I have a template that can be used. Feel free to email me if you require the code.
The best part is that Birt Reports is free. But.. not so intuitive
The template lets you enter the following parameters:-
pname - project name
cname - container name
fname - folder name
Here is test procedures with a table of contents plus the order number(step number) and page number. In the middle of the code you will find the MS-SQL querey, the report template can be downloaded from here
http://www.megaupload.com/?d=61Q5BZUC
Monday, 27 June 2011
over ride company wallpaper
Ever get sick of your companies wall paper that has been set by the IT administrators. Then do this:
save the code below in a file named as wallPaper.reg
and run it
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"NoDispAppearancePage"=dword:00000001
"Wallpaper"="C:\\Users\\Public\\Public Pictures\\Sample Pictures\\Desert.jpg"
"WallpaperStyle"="2"
save the code below in a file named as wallPaper.reg
and run it
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"NoDispAppearancePage"=dword:00000001
"Wallpaper"="C:\\Users\\Public\\Public Pictures\\Sample Pictures\\Desert.jpg"
"WallpaperStyle"="2"
C# email spoof
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Mail;
namespace emailSpoof
{
public class Class1
{
static public void Main()
{
String server = "<server>";
MailAddress to = new MailAddress("john@hotmail.com");
MailAddress from = new MailAddress("sarah@hotmail.com");
MailMessage message = new MailMessage(from, to);
message.Subject = "Hello!";
message.Body = @"Hi, \n Hope you are well" ;
SmtpClient client = new SmtpClient(server);
try
{
client.Send(message);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Mail;
namespace emailSpoof
{
public class Class1
{
static public void Main()
{
String server = "<server>";
MailAddress to = new MailAddress("john@hotmail.com");
MailAddress from = new MailAddress("sarah@hotmail.com");
MailMessage message = new MailMessage(from, to);
message.Subject = "Hello!";
message.Body = @"Hi, \n Hope you are well" ;
SmtpClient client = new SmtpClient(server);
try
{
client.Send(message);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
}
}
Sunday, 26 June 2011
C# Web browser with proxy support.
Its a stand alone .exe portable app all in one file.
It will detect your work proxy and tunnel through it. But not fully tested
Or if you are in a country where websites are blocked internet can be tunneled using international proxies.
Or post to public forums from an anonymous IP
Its a bit buggy, this is my first version, if it's useful i can keep working on it. Its a stand alone .exe portable app. And only one file.
can be found here
http://www.ipmart-forum.com/attachment.php?attachmentid=617521&d=1294681503
It will detect your work proxy and tunnel through it. But not fully tested
Or if you are in a country where websites are blocked internet can be tunneled using international proxies.
Or post to public forums from an anonymous IP
Its a bit buggy, this is my first version, if it's useful i can keep working on it. Its a stand alone .exe portable app. And only one file.
can be found here
http://www.ipmart-forum.com/attachment.php?attachmentid=617521&d=1294681503
Subscribe to:
Posts (Atom)