Posts Tagged ‘C#’

EasyMYP version 2.6 – Release

Wednesday, August 19th, 2009

EasyMYP version 2.6 is released!

It adds / improves the following list of features:

  • Dirties up the code a bit more due to it being beta and having new functionalities
  • A tree view is now available to peak into the archives
  • You can extract anything you want from the tree view by using a simple right click
  • Drag & Drop files in the application to load them, no need to go through the menu anymore!
  • Drag & Drop items from the archive tree to the file system tree!
  • Huge speed increase in lots of places
  • Multi threaded the extraction of files in order to separate read and write operations
  • Last but not least: Persistent options!

Still learning loads of stuff when working on functionalities for this application, so keep them coming!
The application can be found at: EasyMYP on GoogleCode

EasyMYP version 2.6

Tuesday, July 7th, 2009

EasyMYP version 2.6 Beta is up and about!

It adds / improves the following list of features:

  • Dirties up the code a bit more due to it being beta and having new functionalities
  • A tree view is now available to peak into the archives
  • You can extract anything you want from the tree view by using a simple right click
  • Huge speed increase in lots of places
  • Multi threaded the extraction of files in order to separate read and write operations
  • Last but not least: Persistent options!

Still learning loads of stuff when working on functionalities for this application, so keep them coming!
The application can be found at: EasyMYP on GoogleCode

ASP.Net, XML, XSL-Transform

Monday, March 23rd, 2009

Here is a quick way to use ASP.Net to show some XML documents. One will find information such as Reponse.Write and stuff like that. Those information are for older version of ASP.Net when the xmlDocument was not implemented yet. So here is what one need:

In the aspx page, use the xmlDocument control:

<asp:Xml ID=”xmlDoc” runat=”server”></asp:Xml>

In the code page, use the following code in the page_load section:

if (File.Exists(Server.MapPath(e.Filename))){

xmlDoc.DocumentSource = Server.MapPath(e.Filename);
xmlDoc.TransformSource = Server.MapPath(“SC-SD-Transform.xsl”);
}

And it should be working fine now. You can also use events and such if you would rather not put it in the page_load section.