-
Recent Posts
Recent Comments
Archives
Categories
Meta
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 .net, c#, Dataset, datatable, Dataview, Linq, Rowfilter, vb
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.
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 .net, .net madness, 3.5, errors, services, web, web services, xmlserializerformatattribute
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
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
.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
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
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 .net, Dataset, Dataview, Find, Linq, Rowfilter, select, Slow code
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 .net, cool code, interfaces, vb.net
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