Thursday, February 28, 2008

Stomach Sitting Bilder

password manager Dot Net - Version 1.1.2

The password manager Dot Net has received another update: Version 1.1.2 offers the following new features:
  • single record can be extracted as a text file "Save data" button
  • in the main window appears also discarding the changes
  • fields subtly highlighted in yellow
  • be FTP access:
    • activation and deactivation of the automatic uploads from the toolbar
    • progress bar for FTP upload and download
    • program closes if changed in the downloaded file, the password was
  • horizontal scroll bar for entry list
  • secure password entry dialog for protection from keyloggers
  • may help window is minimized and maximized
  • HTML Export: selectable to export categories
  • HTML Export: character "\u0026lt; ","> "and" & "are now correctly shown
  • compact view added (minimizing the view of the data field)
    • contains only relevant data fields
    • can be positioned in any corner of the screen
    • can move the mouse be
  • TAN Administration:
    • TAN lists are sorted alphabetically
    • it can only be a TAN number be selected simultaneously
    • upload the file is no longer if the changes are discarded

project homepage: http://pwvdotnet. 6x.to

Direct Download: pwvdotnet_v1120_setup.exe or pwvdotnet_v1120.zip

Wednesday, February 27, 2008

Bloons Tower Defense 4 Walkthrough Itouch

Dot Net (C #): List.ForEach () method

Using the ForEach () method of a generic list:

  static    void Main () 
{
\u0026lt;String> List names = new \u0026lt;String> List ();
names.Add( "Bruce" );
names.Add( "Alfred" );
names.Add( "Tim" );
names.Add( "Richard" );

// Display the contents of the list using the Print method.
names.ForEach(Print);

// The following demonstrates the anonymous method feature of C#
// to display the contents of the list to the console.
names.ForEach( delegate (String name)
{
Console.WriteLine(name);
});


} private static void Print (string s)

{Console.WriteLine (s);}


Generic as the extension method for IEnumerable :
  public static     class  IEnumerableExtension 

{public static void PrintIt \u0026lt;T> ( this T item) {

Console.WriteLine (item.ToString ());}


public static void PrintAllItems \u0026lt;T> ( this \u0026lt;T> IEnumerable enumerable) {

foreach (T item in enumerable) {

PrintIt (item);}

}}

Tuesday, February 19, 2008

Superhero Invitations Wording

C # code for HTML formatting

Manoli.net provides a simple interface to any C # code for use in HTML (ie blogs, websites, etc.) to format:

www.manoli.net/csharpformat/

Thursday, February 7, 2008

Fresh Beautiful Agony Clips

password manager Dot Net - Version 1.1.1

The password manager Dot Net has received another update : version 1.1.1 offers the following new features:
  • TAN management incl iTAN process
  • export the file into HTML format
  • program Freeware (free)

Screenshots:
main window: create

Category
(completely free configuration):

iTAN Administration:

Stats


(click on an image to enlarge)


Other features of the password Administrator Dot Net:
  • grouping of entries in configurable categories
  • 256 bit AES encryption for high security data
  • Sort by Name, time "added" or time "last modified"
  • Contains a password generator for creating secure passwords at the push
  • intended users what data are sensitive and do not appear as plain text
  • display of sensitive data as plain text via hotkey or click any time
  • Schelle copy user names, passwords, etc. in the Clipboard
  • Automatic deletion of sensitive data from the clipboard after 5-20 seconds
  • details about password security (security level, improvement proposals)
  • show the security levels of passwords (including improvements)
  • Full Statistics (number of passwords All Categories , biosafety level passwords)
  • Comfortable update functionality (on request automatically with each program start)
  • FTP upload and download for comparing the data on multiple computers
  • minimize the program in the system tray or taskbar
  • Convenient search function with results highlighting


project homepage: http://pwvdotnet.6x.to

Direct Download: pwvdotnet_v1110_setup.exe or pwvdotnet_v1110 . zip

Monday, February 4, 2008

Ceramide Stove Cleaner

Dot Net (C #): serialize ( binary)

serialization of objects in C # (binary):

Namespace: Creating System.Runtime.Serialization.Formatters.Binary
  / * the two object to serilisierenden class * / class object  
object1b = new object class (10, hello );
object class object2b = new object class (11, "world" ); create

/ * binary formatter * /
BinaryFormatter binForm = new BinaryFormatter ();

/ * both objects serialized to C : \\ foo.txt write * /
using (FileStream fs = new FileStream ( "C: \\ \\ test.txt" , FileMode.Create)) {

binForm.Serialize (fs, object1b) ;
binForm.Serialize (fs, object2b);}


/ * Create two new objects * /
object class object11b = null ;
object class object22b = null ;

/ * both objects deserialize * /
using (FileStream fs = new FileStream ( "C: \\ \\ test.txt" , FileMode.Open)) {

object11b = (object class) binForm.Deserialize (fs);
object22b = (object class) binForm.Deserialize (fs);}


/ * deserialized object data output * /
Console.WriteLine ( "Number: {0 } term: {1} ", object11b.integer1, object11b.string1);
Console.WriteLine (" Number: {0} term: {1} ", object22b.integer1, object22b.string1);

Alternative:
XML Serialization with SoapFormatter from the namespace System.Runtime.Serialization.Formatters.Soap