Occasional rantings about Dynamics CRM/365, Power BI and Azure cloud. Taking the first small steps in machine learning, Python and algorithmic trading
Wednesday, August 31, 2005
InfoJet EditPart 1.1 - edit InfoPath forms in SharePoint
sharepoint
infopath
Blogging and attending PDC
pdc05
Sunday, August 28, 2005
SharePoint Tools Galore v4
SharePoint toolsuites
rollup webparts (for news,documents,tasks,...), navigation controls and full language localization (This is way cool...)
replication technologies for SharePoint, bulkloader, audit for SharePoint,...
My Team OrgChart WebPart, Bulk upload
Search
SharePoint to index Documentum, Opentext,...
some other nice SharePoint tools, check out PowerRecycle and PowerNav
MCMS (Microsoft Content Management Server)
Backup/Data Recovery/Antivirus
Workflow
Document, Records and Digital Assets Management
features needed to be compliant with standards such as Sarbanes-Oxley, US DOD 5015.2 records management standards,...
Utilities & developer tools
InfoPath
WebParts
High availability & replication
Business Intelligence & Reporting
Miscellaneous
Offline/Mobile Portal capabilities
sharepoint
Saturday, August 27, 2005
Link cleanup
GDI+ FAQ
GDI+ is the graphics system most often associated with Windows Forms and is a more modern replacement for GDI. This frequently asked questions list contains articles and code that will help you to understand the ins and outs of GDI+.
Wednesday, August 24, 2005
BIWUG - Benelux Information Worker User Group
... and many more. Weird enough not everyone seems to have a blog ;-)
The overall goal of the BIWUG is to provide the IW community in Belgium and Luxemburg with the necessary infrastructure and organization to enable a community meeting point for everybody who is interested in Microsoft?s Information Worker technology. A lot of community activities are happening already in Belux in the context of blogs, informal meetings, events organized by Microsoft or partners. BIWUG wants to formalize these activities and become the single point of entry for the Belux IW community to the outside world.
For more info, check out the (temporary) SharePoint site, where you can read a lot more about the things we are planning to do. You can also vote about the new logo. If you are interested do not hesitate to subscribe.
sharepoint
Tuesday, August 16, 2005
Drag&drop from Outlook 2003 to SharePoint 2003 document library
Does anybody have more experience with it or can anybody explain why it doesn't work on the Windows 2000...
sharepoint
Monday, August 15, 2005
Error loading image in picturebox
"Additional information: Could not find any resources appropriate for the specified culture ( or the netrual culture ) in the given assembly. Make sure PortalCreator.resources was correctly embedded or linked in to thassembly Dolmen.SharePoint.Tools.PortalCreator"
The problem seemed to be caused because I defined an enum in the code file before the PortalCreator class. This caused the wizard generated code in InitializeComponent() to fail. So always make the form class the first class in the file.
Add MSN Messenger presence within your blog
Thursday, August 11, 2005
Using FrontPage RPCs and SharePoint
/// <summary> /// Creates a folder in a document library, if the folder already exists no error occurs /// </summary> /// <param name="destinationUri"></param> /// <param name="sFolderName"></param> public void CreateUrlDirectory(string destinationUri, string sFolderName) { WebUrl webUrl = UrlToWebUrl(destinationUri);
System.Collections.Specialized.NameValueCollection methodData = new System.Collections.Specialized.NameValueCollection();
// Add general request to stream methodData.Add("method","create url-directory:" + GetServerExtensionsVersion(webUrl.SiteUrl)); methodData.Add("service_name",""); //e.g. postin/demosubfolder creates demosubfolder in documentlibrary postin //parentfolders have to exist before creating a child folder methodData.Add("url",sFolderName); methodData.Add("executable","false");
HttpWebRequest req = StartWebRequest(GetAuthorURL(webUrl.SiteUrl), methodData); System.IO.Stream reqStream = req.GetRequestStream(); reqStream.Flush(); reqStream.Close();
HttpWebResponse response = (HttpWebResponse)req.GetResponse(); string sResponseString = GetResponseString(response); //Debug.Write(sResponseString);
}
|