chakkaradeep

Stories kicked by chakkaradeep

SharePoint: Creating a custom field(chakkaradeep.com)

submitted by chakkaradeepchakkaradeep(85) 3 years, 5 months ago

In SharePoint, a site column is a reusable column definition, or template, that you can assign to multiple lists across multiple SharePoint sites. Site columns are associated to a particular Data Type. This Data Type is called a Field. For example, when you create a site column, you are also prompted... read more...

add a comment |category: |Views: 35

tags: another

Windows Azure Table Storage(chakkaradeep.com)

submitted by chakkaradeepchakkaradeep(85) 3 years, 6 months ago

Windows Azure provides simple data storage services like blobs, tables and queues to store your data in the cloud. They are called as Storage Account Using Table Storage is one of the simplest way to start exploring the Windows Azure Storage. The tables are accessed using a Uri which is: http://{application... read more...

add a comment |category: |Views: 40

tags: another

Windows Azure Tables : Going ‘cloud’ from local storage(chakkaradeep.com)

submitted by chakkaradeepchakkaradeep(85) 3 years, 6 months ago

If you want to take your applications to the ‘cloud’ from the local storage, that is, from http://127.0.0.1:10002 to http://{application-name}.table.core.windows.net/ , all you need to do is edit your ServiceConfiguration.csfg file of your Web Role with the proper values! <?xml version... read more...

add a comment |category: |Views: 15

tags: another

WPF Ribbon - ApplicationSplitMenuItem(chakkaradeep.com)

submitted by chakkaradeepchakkaradeep(85) 3 years, 6 months ago

If you have started working on the newly released WPF Ribbon, you would have noticed that you can use ApplicationMenuItem and ApplicationSplitMenuItem to create menus. What is the basic difference between them? To start with, let me show you via some screenshots: Below is an ApplicationMenuItem And,... read more...

add a comment |category: |Views: 68

tags: another

Proper way to create Menus + Submenus in WPF Ribbon(chakkaradeep.com)

submitted by chakkaradeepchakkaradeep(85) 3 years, 6 months ago

Last post on WPF Ribbon had a working sample with Menus and Submenus in the Office Button, but something was wrong there. If you had downloaded the sample, sure you would have noticed it. Below is a screenshot: You can see that the submenu isn’t showing the full list as in the below screenshot... read more...

add a comment |category: |Views: 30

tags: another

Using Cardspace authentication with .Net Services(chakkaradeep.com)

submitted by chakkaradeepchakkaradeep(85) 3 years, 6 months ago

If you want to use CardSpace authentication in your .Net services, then all you need to do is don’t add any authentication type to your binding ;) Confused? Well, .Net Services by default uses CardSpace Authentication. So, all you need to supply is just your solution name and automatically you... read more...

add a comment |category: |Views: 6

tags: another

Programming Microsoft .Net Services(chakkaradeep.com)

submitted by chakkaradeepchakkaradeep(85) 3 years, 6 months ago

If you are not familiar with Microsoft .Net Services, do read my earlier post So, are you ready to start programming .Net Services ? Not so fast, there are still certain things that you need to know before you start coding ;) Microsoft .Net Services Account First you need a Microsoft .Net Services account... read more...

add a comment |category: |Views: 14

tags: another

Getting Started with Microsoft .Net Services(chakkaradeep.com)

submitted by chakkaradeepchakkaradeep(85) 3 years, 6 months ago

Microsoft .Net Services is a part of the recently announced Microsoft Azure Platform . What does Microsoft .Net Services provide ? Microsoft .Net Services consists of three main components: Service Bus Access Control Workflow Services They provide a hosting platform where you can develop connected, peer... read more...

add a comment |category: |Views: 5

tags: another

Windows Azure SDK (October 2008 CTP) : Table Service not starting?(chakkaradeep.com)

submitted by chakkaradeepchakkaradeep(85) 3 years, 6 months ago

After downloading the Windows Azure SDK (October 2008 CTP) , I wanted to create a simple application which can make use of Azure Tables . Using the Development Storage tool, Azure SDK simulates the Azure Tables in your local machine than in the cloud. But, when I started the Development Storage tool... read more...

add a comment |category: |Views: 6

tags: another

Getting Started with the WPF Ribbon [Preview] Control(chakkaradeep.com)

submitted by chakkaradeepchakkaradeep(85) 3 years, 6 months ago

Microsoft introduced the Ribbon Interface with its Office 2007 release. Very soon, many developers (like, DevComponents’s WPF Ribbon Control and this CodeProject article ) started developing their own controls. At PDC this year, Scott Gu announced about the new WPF Ribbon Control added to the WPF... read more...

add a comment |category: |Views: 71

tags: another

AvalonControlsLibrary v2 has been released ! « C# Disciples(marlongrech.wordpress.com)

submitted by marlongrechmarlongrech(1000) 4 years, 2 months ago

Finally I had some time to release the new version of AvalonControlsLibrary v2. This release includes - RangeSlider - All properties are now Dependency properties so that you can easily databind with. - RangeSlider - The RangeSelectedChanged event has been refactored into a Routed event. - DatePicker - Add a DateSelectedChanged routed event - TimePicker - Add a TimeSelectedChanged routed event - DateTimePicker (this will be the DatePicker and TimePicker joined) - DockableContainer (aka Docky- This is a brand new control which supports docking of element and undocking. While elements are un docked you can drag around the element :) Just like Blend Toolbars) - Bug Fixes Masked TextBox IsReadonly click here for more info read more...

add a comment |category: |Views: 21

tags: another