DotNetKick.com is an open-source project. Please report any bugs and let us know your great suggestions. Currently running svn revision 620 (rss)

Kick Spy!, Kick Zeitgeist and Kick Widgets

eugenciuta Subscribe to this feed
eugenciuta
Profile Kicked Submitted Comments Tags Friends Kicked By Friends Submitted By Friends

Stories submitted by eugenciuta
1
kicks
submitted by eugenciuta 9 days, 9 hours ago

dotnetfacts.blogspot.com — If you want to develop applications with the .NET Framework having a MySQL database as a data source you may want to try the MySQL Connector/NET 5.2. The MySQL Connector/NET is a fully managed ADO.NET component wich provides specific implementation for all ADO.NET classes. read more...

Add a comment add a comment | category: | Views: 2
tags: , , | tag it

1
kicks
submitted by eugenciuta 1 month, 24 days ago

dotnetfacts.blogspot.com — On Sept. 29, 2008, Microsoft announced the next generations of Visual Studio and .NET Framework. Visual Studio 2010 and .NET 4.0 are meant to simplify application’s life-cycle management by make it easier for all contributors of the software team (core programmers, UI designers, testers and project managers), to participate throughout the life-cycle. read more...

Add a comment add a comment | category: | Views: 25
tags: , , | tag it

3
kicks
submitted by eugenciuta 2 months, 14 days ago

dotnetfacts.blogspot.com — Debugging a Windows Service Application is a very unpleasant task because such application doesn’t run from within Visual Studio .NET. A Windows Service Application runs in the Services Control Manager context. This article is about how to debug a Windows Service application as a regulat Windows Forms application. read more...

Add a comment add a comment | category: | Views: 24
tags: , , | tag it

2
kicks
submitted by eugenciuta 5 months, 25 days ago

dotnetfacts.blogspot.com — The default PropertyGrid control provided by the WinForms collection doesn’t support a read-only functionality. Setting the PropertyGrid as read-only might be useful if you want to allow your users to fully inspect a rich property object exposed by the PropertyGrid without the possibility to change something. read more...

Add a comment add a comment | category: | Views: 45
tags: , , , , | tag it

2
kicks
submitted by eugenciuta 6 months, 5 days ago

dotnetfacts.blogspot.com — The PropertyGrid control is a very useful tool if you want to update object attributes at run-time in a elegant way. The PropertyGrid provides some useful events to let you know what is going on. The problem occures for the collection properties when the Collection Editor form is shown. This form also provides a PropertyGrid control to edit any item from the current collection but we don't have access to any of known events. read more...

Add a comment add a comment | category: | Views: 45
tags: , , , , | tag it

2
kicks
submitted by eugenciuta 6 months, 12 days ago

dotnetfacts.blogspot.com — If use the default Split Container to build a Windows Form or create a new user control, and set some properties of that Split Container at design time using Visual Studio 2008, you may end up with a broken form or user control. I got that error using the Visual Studio 2008 - Professional Edition. read more...

Add a comment add a comment | category: | Views: 28
tags: , , , , | tag it

2
kicks
submitted by eugenciuta 6 months, 14 days ago

dotnetfacts.blogspot.com — Sometimes we need to know what is the internal structure of a database in addition to its data. This might turn very useful when the database structure is dynamic. This information is called Database Metadata or Database Schema. read more...

Add a comment add a comment | category: | Views: 14
tags: , , , , | tag it

1
kicks
submitted by eugenciuta 6 months, 15 days ago

dotnetfacts.blogspot.com — The .NET Framework can provide the mouse coordinates using the client coordinates system or the screen coordinates system. In some mouse-based scenarios we need exactly to know which coordinates system is used in order to use the correct offset. read more...

Add a comment add a comment | category: | Views: 24
tags: , , , , | tag it

3
kicks
submitted by eugenciuta 7 months, 1 day ago

dotnetfacts.blogspot.com — Now let’s go deeper to understand how the Garbage Collector (GC) is actually collecting the dead objects and how this may affect the performance. read more...

Add a comment 1 comment | category: | Views: 4
tags: , , , | tag it

4
kicks
submitted by eugenciuta 7 months, 1 day ago

dotnetfacts.blogspot.com — The Garbage Collector (GC) can be considered the heart of the .NET Framework. It manages the allocation and release of memory for any .NET application. In order to create good .NET applications, we must know how the Garbage Collector (GC) works. read more...

Add a comment add a comment | category: | Views: 2
tags: , , , | tag it

1
kicks
submitted by eugenciuta 7 months, 17 days ago

dotnetfacts.blogspot.com — The core of GDI+ is the Graphics class which draws all the needed lines, curves, shapes, text and images. The Graphics class encapsulates a GDI+ drawing surface, which can be a window or print document. You paint on this drawing surface using a combination of the methods the Graphics class provides. read more...

Add a comment add a comment | category: | Views: 12
tags: , , , , | tag it

25
kicks
published 7 months, 24 days ago, submitted by eugenciuta 7 months, 25 days ago

dotnetfacts.blogspot.com — The classic System.String type doesn’t provide enough security for storing sensitive data like passwords, credit card numbers or personal information. If a String object contains sensitive information, there is a risk the information could be revealed after it is used because your application cannot delete the data from computer memory. Starting with the .NET Framework 2.0 the SecureString class is available. It was designed to provide encryption for sensitive data and other useful functions. read more...

Add a comment 2 comments | category: | Views: 15
tags: , , , , | tag it

1
kicks
submitted by eugenciuta 7 months, 27 days ago

dotnetfacts.blogspot.com — Microsoft GDI+ is a part of Windows XP/Server 2003 operating system that provides 2D vector-based graphics, imaging and typography. GDI+ is an improved version of the old GDI (Graphics Device Interface), which is part of previous Windows versions. The GDI+ programming model has been revised to make graphics programming easier and more flexible. read more...

Add a comment add a comment | category: | Views: 6
tags: , , , , | tag it

27
kicks
published 8 months, 2 days ago, submitted by eugenciuta 8 months, 4 days ago

dotnetfacts.blogspot.com — When the .NET Framework instantiates an object, it allocates memory for that object on the managed heap. The object remains on the heap until it's no longer referenced by any active code, at which point the memory it's using is reclamed by the Garbage Collector (GC). Before the GC deallocates the memory, the framework calls the object's Finalize() method, but developers are responsible for calling the Dispose() method. read more...

Add a comment add a comment | category: | Views: 6
tags: , , , , | tag it

32
kicks
published 8 months, 3 days ago, submitted by eugenciuta 8 months, 5 days ago

dotnetfacts.blogspot.com — System.String type is used in any .NET application. We have strings as: names, addresses, descriptions, error messages, warnings or even application settings. Each application has to create, compare or format string data. Considering the immutability and the fact that any object can be converted to a string, all the available memory can be swallowed by a huge amount of unwanted string duplicates or unclaimed string objects. Now let's see how a string object should be handled to preserve memory. read more...

Add a comment add a comment | category: | Views: 20
tags: , , , , | tag it

1
kicks
submitted by eugenciuta 8 months, 5 days ago

dotnetfacts.blogspot.com — All my late .NET projects had a mandatory, common requirement: the Infragistics NetAdvantage control library. I have been using it since the 6.1 version came out, over one year of development period, on six different .NET projects. Considering this, I believe I have enough experience with this user control library to highlight all the goods and the beds that come out from it. read more...

Add a comment add a comment | category: | Views: 27
tags: , , , , | tag it

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge