Tag Archives: .net

Blurb of the day: .net framework madness

Soooooooo what do you do when the a .net framework update wont install……. Go CRAZY!!!!! or you can try everything you can until something works. I kept getting a 1603 msi error when installing the .net framework. So i went … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

Blurb of the day: Data Retrieval from Sybase using .net

If you ever need to pull data from a sybase database and you are using .net to accomplish this task, you will need download the sybase developer kit for the version in which you are attempting to use. Now i may edit … Continue reading

Posted in Uncategorized | Tagged , , | 1 Comment

.net WriteXmlSchema ReadXmlSchema Stream Root Element Missing

So today i decided i needed to clone the schema of a dataset and then put it in an empty dataset. Once this was done i could selectively move rows to the new dataset. The first thing i did was to … Continue reading

Posted in Uncategorized | Tagged , , , , , | 4 Comments

Parallel For and Foreach

Ive finally used the greatness known as the parallel.for and parallel.foreach. I just dont understand how I’ve lived so long without this greatness that has been bestowed upon us in the world known as .net. A parallel loop allows you to run … Continue reading

Posted in Uncategorized | Tagged , , , , , , | 5 Comments

Blurb of the Day: Datatable/Dataview search. Find vs Rowfilter vs Select vs Linq

So at my job i needed to update some code. The way we accessed the old code had to change since i changed some of the underlying specs of the data that i was using. In this change i decided … Continue reading

Posted in Uncategorized | Tagged , , , , , , , | 4 Comments

The Awesomeness Of Interfaces

It is a wonder how i went so long without the greatness of the vb.net Interfaces. We’ve all made classes that we about the same so we just made a base class to hold all of the like data and … Continue reading

Posted in Uncategorized | Tagged , , , | Comments Off

Item Of the Day. Playing .net io.stream using FMOD

So lets say you want to connect to a website to stream their music through your app, but the problem is they dont give you a direct link only a connectstream from system.net.connectstream. How do you play this with fmod? … Continue reading

Posted in Uncategorized | Tagged , , , , , , | 10 Comments

Blurb of the day

If you ever decide you need to load a datatable from an xml file just remember if you export from a datatable to an xml file it will use that data tables name in the xml file. Why is this … Continue reading

Posted in Uncategorized | Tagged , , | 8 Comments

Interesting Item of the Day

In the process of making my media player, which is always changing, I wanted to add a plugin system to my player. One of the problems i always face is adding new features. Its not that i cant add them … Continue reading

Posted in Uncategorized | Tagged , , | 3 Comments