Memweave recently released a free YouTube like service to share ringtones over internet. Please visit http://www.ringtubes.com/Â and start sharing your ringtones. You can right now search for ringtones and start uploading your own ringtones for other users to use. This is still in Beta. Please visit often to get more updates and features.
The following code shows how you can implement a custom control which can extend a Link Button which will change background colors when you toggle statuses. You can change it to replace a typical Checkbox where you have the box displayed always.
Sample Code for ToggleControl:
I was looking for a reference implementation to see how to send emails with a template for my Sendvite project. I finally found this simple and elegant answer.
The simplest way is to hardcode email content and inserts dynamical values using concatenating functions inside page’s code. But what if you need to change design of email or add some functionality to page source? Email template can be very big and contain a pile of dynamic variables with concatenation correspondingly. Looking into such source is horrible. Everybody knows it and in spite of this even professional programmers often choose the way to place content email in the source code.
Link: http://www.codeproject.com/useritems/mailtemplates.asp
Hope this helps. i implemented it already and it works really good.
I looked around for a free .NET library to read POP3 emails from Gmail or any other client. Finally i found a working & simple library or project here http://www.codeproject.com/cs/internet/Pop3MailClient.asp.
Good example.
Great idea to embed small or tiny graphs in a document or sentence. For example, if you are writing a page which shows the performance of Dow Jones Index, you can do so by the following:
| Dow Jones | 10765.45 | ?32.82 (?0.30%) |
This makes the user not to get distracted and follow the story you wanted to convey. In technology part of it, this is a simple graph which you can draw it with basic API on most languages. I build a sample program in C# where i got the source from here.
Also, you can take this Visual Studio Solution to quickly have it working. Download Sample
Sometimes, you might have found some schema files which you wanted to manipulate in your code with .NET. Microsoft provides a sample XSD to C#/VB.NET converter as a download to do this task yourself. Please at the following details to download it and use it.
== FROM Microsoft ==
Overview
The Sample Code Generator (XSDObjectGen) tool takes an XSD schema as input and generates sample code showing how to mark up C# and VB.Net classes so that when serialized with the XML serializer, the resulting XML will be valid according to the original schema. This update fixes some documentation changes and corrects a problem where the wizard did not generate code in some environments.
Link: Download
