Tag Archives: .net

Linq strikes again

Linq has become one of my favorite things to use. It allows you to approach the concepts of objects just as you would a sql query on a database. Linq is very flexible and i have not found an instance … Continue reading

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

Blurb of the day

ADO.net If you using ado.net and are getting this error Could not load type ‘ADODB.FieldsToInternalFieldsMarshaler’ from assembly You need to go to your project references-> Embed Interop Types: false. Once you do this it will fix your issue.

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

Blurb of the day: More .net Madness

If you are using web services and are using visual stuido 2010, when you consume that service to be used in your application make sure the machine that it is being deployed to has .net framework 3.5 sp1. If it … Continue reading

Posted in Uncategorized | Tagged , , , , , , , | 2 Comments

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 , , , | 5 Comments

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 , , , , , | 6 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 , , , , , , | 6 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 on The Awesomeness Of Interfaces

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 , , , , , , | 16 Comments