Welcome to Comunidade Bloggers |create|it| Sign in | Join | Help

Raúl Ribeiro

Windows SharePoint Services 3.0 , .net, Microsoft Office SharePoint 2007, Office 2007 and 2010

News

Browse by Tags

All Tags » .Net   (RSS)
Sign Unsigned Assembly in .net
When you have an assembly, that is not signed, and you need to sign it you will need to run the following commands: MSIL Disassembler (Ildasm.exe)- http://msdn.microsoft.com/en-us/library/f7dy01k1(VS.80).aspx MSIL Assembler (Ilasm.exe) - http://msdn.microsoft.com/en-us/library/496e4ekx(VS.80).aspx Read More...
TechEd EMEA 2008
Next week i'll be @ TechEd EMEA 2008 Developers in Barcelona with my colleague João Martins aka "Jota". I hope it will be a very interesting week, Pedro Rosa from Microsoft Portugal is the owner of the dev track, and has very good Read More...
Scott Woodgate and team - Announcing Windows Workflow Foundation
Scott Woodgate and team - Announcing Windows Workflow Foundation At the PDC Microsoft announced Windows Workflow Foundation . Here Scott Woodgate and team (Abhay Parasnis and Paul Andrew) demonstrate the power of the new Workflow Foundation. It's all Read More...
Create ThumbNail from image byte[]
private byte [] GenerateThumbNail( byte [] foto){ System.IO.MemoryStream memStream = new System.IO.MemoryStream(foto); int thumbWidth = 88; int thumbHeight = 100; if (QueryStringHelper.ItemType == "detail"){ thumbWidth = 250; thumbHeight = 250; } System.Drawing.Image Read More...
using System.Web.Mail with authentication
MailMessage msg = new MailMessage(); msg.From = ConfigurationSettings.AppSettings["From"].ToString(); msg.Subject = subject; msg.To = messageTo; msg.Fields[" http://schemas.microsoft.com/cdo/configuration/smtpserver "] = Settings.SmtpServer; msg.Fields[" Read More...
QueryStringPageViewer WebPart for Sharepoint
/// /// Mads Haugbø Nissen 2003(c) /// Objectware AS /// Norway /// /// http://weblogs.asp.net/mnissen /// /// The QueryStringPageViewer provides the same functionality as the regular PageViewerWebPart /// but allows providing a selection of querystring Read More...
SharePoint Tools Galore List
SharePoint toolsuites Coras workplace suite Suite with rollup webparts (for news,documents,tasks,...), navigation controls and full language localization (This is way cool...) Syntergy Provide lots of modules such as replication technologies for SharePoint, Read More...
How to run another application or batch file from my Visual C# .NET code
Example 1 . Running a command line application, without concern for the results: private void Run(){ System.Diagnostics.Process.Start(@"C:\runFile.bat"); } Example 2 . Retrieving the results and waiting until the process stops (running the process synchronously): Read More...
Como Serializar um Objecto para XML e Deserializar um XML para Objecto
Serializar um Objecto para String (XML) StringWriter sw = new StringWriter(); XmlSerializer serializer = new XmlSerializer( typeof ( OBJECT )); serializer.Serialize(sw, getAcessoryEquipmentsRequest.SearchCriteria); strXML = sw.ToString(); Deserializar Read More...
Design Principles for AJAX Applications
Design Principles for AJAX Applications Minimise traffic between browser and server so that the user feels the application is responsive. Be clear on the interaction mode being used - regular HTML versus AJAX versus desktop application so that the user Read More...
Ajax.NET - A free library for the Microsoft .NET Framework
Asynchronous JavaScript with XmlHttpRequest - C# Example Download the latest Ajax.dll (5.5.13.1) to use it for free in your web projects. To learn more about AJAX , visit: Wikipedia A New Approach to Web Applications To download this C# example click Read More...