infoconex

Stories submitted by infoconex

Using CustomValidator to validate multiple fields(coding.infoconex.com)

submitted by infoconexinfoconex(80) 1 year, 7 months ago

Recently I had to perform custom validtion on muliple fields and the CustomValidator did the trick. However I had to figure a few things out to make it work just like I wanted. Check out this article to hopefully save others some time in using this flexible control. read more...

add a comment |category: |Views: 39

tags: another

(MVP) Model View Presenter - Passive View(coding.infoconex.com)

submitted by infoconexinfoconex(80) 2 years, 4 months ago

Explanation of the MVP Model View Presenter - Passive View by demonstrating it via a C# .NET Winform project. Shows writing the application using code behind approach and then refactoring the project to use the MVP pattern. read more...

add a comment |category: |Views: 307

tags: another

Automatically attaching VHD files in Windows 7 and Windows 2008(coding.infoconex.com)

submitted by infoconexinfoconex(80) 2 years, 6 months ago

If you have played with the new VHD feature in windows 7 or windows 2008 then you know just how cool of a feature this is. However the problem is that when you reboot your machine you find that when it comes back up all your VHD files are no longer attached? Here is what I did to get around the issue. read more...

add a comment |category: |Views: 12

tags: another

Compress and Decompress using .net framework and built in GZipStream(coding.infoconex.com)

submitted by infoconexinfoconex(80) 3 years ago

Recently had to add Compress/Decompress capabilities to a project. Here is a simple set of methods I came up with. read more...

add a comment |category: |Views: 22

tags: another

How do I open a file that is in use in C#?(coding.infoconex.com)

submitted by infoconexinfoconex(80) 3 years, 1 month ago

If you have ever had a problem trying to open a file that is in use by another program here is how to do it. I am sure others have posted the answer to this before but for me I did not find anything useful when googling. Figured I would post this to hopefully help others in the future find the answer easier. read more...

add a comment |category: |Views: 17

tags: another

Microsoft released free Chart Controls for ASP.NET and Winforms(coding.infoconex.com)

submitted by infoconexinfoconex(80) 3 years, 4 months ago

Useful links to find the download information about the MS Chart Controls read more...

add a comment |category: |Views: 51

tags: another

c# and vb.net preserving or persisting user settings user.config after(coding.infoconex.com)

submitted by infoconexinfoconex(80) 3 years, 4 months ago

Example of how to make sure user settings are persisted after upgrades. read more...

add a comment |category: |Views: 50

tags: another

CWE/SANS TOP 25 Most Dangerous Programming Errors(coding.infoconex.com)

submitted by infoconexinfoconex(80) 3 years, 4 months ago

Top 25 Most Dangerous Programming Errors read more...

add a comment |category: |Views: 15

tags: another

C# Ping(coding.infoconex.com)

submitted by infoconexinfoconex(80) 3 years, 4 months ago

Want to create a ping utility but dont want to call out using something like Process.Start or one of the many ICMP libraries found via codeplex or google searches that dont seem to work? .net 2.0 framework has a ping feature that I just found out about. See how to use it. read more...

add a comment |category: |Views: 39

tags: another

.NET 2.0 SP2 Installation - Were to find it(coding.infoconex.com)

submitted by infoconexinfoconex(80) 3 years, 6 months ago

I recently had an issue with multiple delegates spawning really slow and it was suggested one of the fixes was to upgrade to .net 2.0 SP2. Wrote an article about what I had to do to install it. read more...

add a comment |category: |Views: 34

tags: another

Spawning multiple .NET delegates really slow(coding.infoconex.com)

submitted by infoconexinfoconex(80) 3 years, 6 months ago

If you are coding up projects that spawn concurrent delegates then and you have run into performance issues you might want to read this. read more...

add a comment |category: |Views: 14

tags: another