Today while opening a win-form project, I got an exception message like this from Visual Studio. And then the Visual Studio project was not available in the solution. All the project said was “The project file cannot be loaded.” This error is because the project was under Subversion version control, and I don’t have Subversion [...]
Posts Categorized: .Net 3.0 / 3.5
How to use existing Database in Windows Phone
Normally in Windows Phone apps, we used to create Database in the Application Launch event, like the following And if there is any master tables you can write code to insert after database creation, like this. This approach is not feasible if you have lot of data, for example a Dictionary database. In such scenarios [...]
How to get all controls from a form at runtime in C#
Here is a code snippet which helps you to enumerate all the controls in a form. This snippet can be used for any control, to find the child controls. And you can invoke this function like this, to enumerate all the controls of a Form.
Using SynchronizationContext in Windows Forms
Long back I wrote a post about how to fix – System.InvalidOperationException – Cross-thread operation not valid exception, while we try to access user interface elements from a different thread, other than the thread(normally main thread), which created the user interface elements. .NET 2.0 brings us SynchoronizationContext which allows us to execute a section of [...]
Using Microsoft Ink Picture control
The InkPicture control provides the ability to place an image in an application and enable users to add ink on top of it. It is intended for scenarios in which ink is not recognized as text but is instead stored as ink. InkPicture control extends the default picturebox control. This post is about working with [...]
How to upload file to FTP server using C#
From .net framework 2.0 onwards .net supports FTP operations. Like HttpWebRequest and HttpWebResponse, for FTP operations, FtpWebRequest and FtpWebResponse classes are available, under System.Net namespace. Here is the code snippet, which will help you to upload a file to FTP server, using C#. And here is the GetFileData function, which will return byte array from [...]