-
The Amadeus .NET Assembly Browser, is a shell extension for Windows® XP that adds a property page to the Properties window of executable files (.dll and .exe), that represent .NET assemblies . This property page contains an advanced object browser, similar to the one in Visual Studio® yet with many more...
-
This article shows how a project implementer in Visual Studio 2005 can handle the " Show All Files " command to show/hide nodes (that may or may not represent files on disk). Before I proceed, it's important to mention that, in my projects, I don't use the MPF classes. I've developed my own classes that...
-
While using the Visual Studio core editor as your text editor in a language service is a known and straightforward procedure, creating a designer has been totally left in the responsibility of the language service or editor implementer. In this quest, the most wanted designer is the Windows Forms Designer...
-
Since .vssettings files were first introduced in Visual Studio 2005, I've seen many questions about how the Import/Export settings mechanism can be controlled through code. This was something that bothered me too since VS2005 Beta 1 but it didn't take long till I figure out the solution. I have now created...
-
Ok BizTalkers..... Maybe you never used it, but version II of the SPX adapter is out. Go and get it here from gotdotnet. Just to remind you all of the advanages of the SPXII adapter I will sum them up again. Transaction level is adjustable. So if you select none it will be very fast. ( impossible in...
-
Ok, I am not the most experienced programmer around, But this weekend I started with VS2005. I started with converting my old VB.NET project and converted it to VS2005. No problem whatsoever. everything seemed fine...... But then I hit the F5 Button to run my project. I was a bit disappointed. I got...
-
I read somewhere on this site the do's and dont's about strings...Because I use the + a lot I did run some tests....If you have a construct like this : Eventlogentry = New Eventlogentry(“There was a failure executing receive location “ + config.locationname + “. Please review the configuration“...
-
Ok as a VB programmer I was used to collections instead of Hashtables....Today I used a hashtable cause i thought a hashtable was almost the same as a collection. I also thought the HashTable was the C# equivalent of a collection, So I started a nice VB project.... ms.Add("key3", Nothing ) ms.Add("key2...
-
The main reason why MyGeneration is an excellent tool (Besides support of the dOOdad architecture) is the ability to add several templates to a project. Below is an example of this. In this project there are four templates needed. Adding a template is very easy. Jus right click on the Rootnode and add...
-
After some testing on various ways to query the eventlog I found that a WMI query is the easiest way to query the Eventlog of any (remote) machine. There is very little information about WMI on the internet so I thought it was nice to post this sample snippet. (If you see anything that should be improved...
-
In the NorthWind Database the Customer table has a CustomerID field and the field is 5 long. I am using the MyGeneration dOOdad architecture and I query the database for every customet that has a customerid of 'ANTON' In my code this looks like : Dim cust As New Customers cust.Where.CustomerID.Value...
-
On the MyGeneration WebSite there are Templates that create database documentation in a very nice (and goodlooking) html format. Tables, Stored Procedures and such are placed in nice html documents. They're extremely easy to create and it's really easy to browse all objects. Can come in pretty handy...
-
Yep..... If you don't like the dOOdad architecture, you can use MyGeneration to generate Stored Procedures and a complete DAL that make use of the D ata A ccess A pplication B lock in VB.Net or C# that use the more classic approach. have a look here at the DAAB architecture.
-
I have been playing around with the dOOdad architecture and found out something very nice about this architecture. Private Sub dgQuestions_SortCommand( Bla bla.. ) Handles dgQuestions.SortCommand ' Let's get the Questions from the cache MyQuestions = Cache.Get("MyQuestions") ' Determine some sort orders...
-
Well you prabably heard about MyGeneration by now if you are a regular BloggingAbout.Net reader. If you haven't go and download it now here . I am currently in the process of rewriting a web application and I am completely doing away with the old DAL. Instead I am using the dOOdad architecture that comes...