P2Libs
.NET libraries for the professional developer...
| Overview | |
|
We received a lot of inquiries as to whether our libraries could be packaged for sale to developers. We thought about it and agreed. Now you too can have professional functionality with bullet proof code that is in use all over the world. |
| All our libs are available by PayPal™ purchase only (sorry, corporate purchase orders are not accepted). However, each purchase comes with a 30 day total satisfaction money back guarantee. | |
| Pricing on application and priced per developer seat. Binary and source code licenses are available. Please note, a copyright notice must be included in your application's About box stating P2Labs' copyright ownership. Exact wording will be supplied upon successful registration of the product. Please contact our Sales Department for further information. | |
| P2Ipc | |
|
Communicate across processes easily. Full asynchronous handling.
// send a message
using ( P2Labs.Ipc ipc = new P2Labs.Ipc() ) {
ipc.Send( "ChannelName", "MessageText" );
}
|
| P2Sound | |
|
Add sound to your application in one easy step.
// play sound once
using ( P2Labs.Sound so = new P2Labs.Sound () ) {
so.PlayOnce( "com.P2Labs.test.wav" );
}
|
| P2WaitCursor | |
|
Easily switch to the hourglass cursor when carrying out operations.
// do time consuming task
using ( new P2Labs.WaitCursor() ) {
// do task here...
}
|
