Tag Archives: VB.Net

Adding and Reading files from SQL Server 2008 Filestream

Few days back I wrote a Post about FileStream feature in SQL 2008.(Filestream in SQL Server 2008). In this post I am trying to write the how to manage or use the FileStream feature from .Net managed code. For adding … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net, SQL Server, Visual Studio, Windows Forms | Tagged , , , , , | Leave a comment

Using background worker in C#

Background worker is a component introduced by Microsoft in .Net 2.0 which will help developers to do background operations without the knowledge of threading and deadlocks. In the current application I am working we used to copy some files from … Continue reading

Posted in .Net, .Net 3.0 / 3.5, Visual Studio, Windows Forms | Tagged , , , , , , | 2 Comments

Drag and Drop files from Windows to your application

While working around an Script Editor application, I found that in almost all the editors we can drag and drop files from Windows.(Even MS Notepad supports it.) Then I searched for an implementation, but unfortunately I can’t find a perfect … Continue reading

Posted in .Net, .Net 3.0 / 3.5, Visual Studio, Windows Forms | Tagged , , , , | Leave a comment

Debugging Windows Services

In the current project, I have to develop some windows services to sending out notification mails. The first challenge I faced is I can’t directly run and debug the Windows service. For that I need to install the service (using … Continue reading

Posted in .Net, .Net 3.0 / 3.5, Visual Studio | Tagged , , , , | Leave a comment

Getting and Setting properties on runtime using Reflectoion

In series of Reflection related posting this is the second post. You can see the post here. Now I am posting about Properties. We can set / read properties of Class using reflection. Setting Properties 1) For setting properties, we … Continue reading

Posted in .Net, .Net 3.0 / 3.5 | Tagged , , , , | Leave a comment