background preloader

Izzy76

Facebook Twitter

Förderprogramme

Telerik OpenAccess. Browser Extensions. Hex Color Converter. Index of UX guidelines for Windows Store apps. TextMining. JavaScript. Steamerslounge - Herzlich willkommen! Office. Requirements Engineering. Music. WPF. HTML. DB and ORMs. Personal. Startup. EnterpriseArchitect. What is the Acrobat Software Developer Kit? Excel. Cloud Computing Fundamentals, eBooks and Videos. eBooks, Infographics, Presentations and Videos Source: Presentations Three Pillars of a Working Cloud Model – Excellent Presentation by SAP Cloud Solutions OpenStack Gains Momentum, Customers are Speaking Up Amazon Web Services 101: Cloud Computing Seminar (2012) Big Data & Intelligent Platforms: Next Iteration of PaaS for Data Driven World Leaders in the Cloud: Identifying Cloud Business Value for Customers The Only 3 SaaS Metrics That Matter.

Are You Ready for the Future of Cloud Computing? Building the European Cloud Computing Strategy Videos Amazon Web Services (AWS) Summit 2012: Werner Vogels’ keynote How Platform as a Service Enables Innovation; discussion by Forrester VP and Principal Analyst John Rymer IBM’s Cloud Enabled Business Model Innovation Video – Many excellent points on how Cloud Computing is accelerating business model performance Exploring Cloud Computing – Introductory Video by Dr. Cloud Computing: An Overview (Oracle Corporation whiteboard session) February, 2012 Like this:

C#

TreeView DragDrop Questions in Word 2007. Hi all, I'm populating a Custom Task Pane with a TreeView (as the content is coming from xml).

TreeView DragDrop Questions in Word 2007

First question: Is this the right control to use? I want to show the document in the CTP and have the user be able to select parts for re-use and DragDrop to the document. Seems good so far to me, but I'm wondering if there's something else out there I should look at. Second question: I'm able to implement a drag and drop to populate the word document, and it works like this:I select the node to drag with mouseDown, I drag, and when I release, the text populates the current cursor location in the Word document.

Any thoughts, insights, suggestions will be appreciated. Private void treeView1_DragOver(object sender, DragEventArgs e) { TreeView tree = (TreeView)sender; e.Effect = DragDropEffects.None; if (e.Data.GetData(typeof(TreeNode)) ! Using C# to Create an Excel Document. Download source - 397.15 KB Introduction Microsoft Excel is widely used in business because it offers the ability to present data to business executives in a way that makes sense to them.

Using C# to Create an Excel Document

In this article, we are going to learn how easy it is to create an Excel document using C#. Background While looking to find an easy solution of how to read and write into a spreadsheet, I came across an article on the Microsoft site, How To Use ADO.NET to Retrieve and Modify Records in Excel. Using the Code In order to use the class, you must add as a reference the Microsoft Excel XX.X Object Library in your project; this is a COM component; adding in Visual Studio is straight forward. Let's Go Over the Class.