Build and Customize your Small-Business Web Site
|
Showing posts with label Office 2007. Show all posts
Showing posts with label Office 2007. Show all posts
Monday, January 04, 2010
NEW BOOK:Building and Customize your Small-Business Web Site from PacktPub
Friday, March 13, 2009
How "VSTO 3.0 for Office 2007 Programming" book born, a true stroy!
I started my career in Microsoft technologies.
I was very much keen on exploring technologies and designing applications. When
I joined one of the world’s largest software services and consulting company in
2006, I was asked to explore on Microsoft’s upcoming technology SharePoint. I
was just started the training material and practicing the same. And suddenly
the client work has been allotted for a few which includes me in that team.
After the work has been allotted for each individual in the team, I and my colleague
(and a best friend) got to work on VSTO programming for InfoPath 2003 which is
part of our client project. But my best friend she was not interested in VSTO
work and she feels this is not the right technology for her career and raised a
question for me, do you feel comfortable in VSTO? Is it good for your career
growth? I said for me technology is secondary, for me I was keen on the quality
of the work I do, whatever the technology may be. Few words to mention about my
friend as a developer, she was an awesome developer, and any company in this
world should be the luckiest company to have her as a resource.
And this is where the spark fired an idea for
me to write a book on VSTO, to write book on VSTO and show everyone that technology
doesn’t decide your growth it’s just your attitude plays the key role in your
life. Writing a book which is fully authored by me is my long-time dream. I was
thinking about this from my school days, one day in my life I will write a
book. Now I got an idea for my dream, what I need is to start working on that.
There is zero support and encouragement in my organization I worked, feel like
stuck between office politics. Under performing guys are ruling the project to
failure, even the failure doesn't reflect their originality instead they gets
appreciation. So I decided to carry on my career in different organization
where I can produce my excellence too. So I decided to leave the most liked and
loved company in my life.
First I started writing for the publication with
more energy and enthusiastic. My first delivery of chapter was on InfoPath. The
chapter returned with huge amount of comments and feedback, which actually said
to me better stop writing :). But my editor Jonathan Hassell and Tony Campbell
was the greatest; who make me thinks get going... Later before a month of
release of the book the press came up with one of the best worst news I have
heard in my life, eight months of dedication, hard work and how many sleepless
nights is washed away from that news. They said we have decided to withdraw
from your book agreement. A few days I was upset and I bounce back with a new
idea.
Added new ideas and enhanced the content and approached the Europe’s leading technical publisher PackT Publication and get a green signal precede the project. Again started the works get going and finally the book was on store for sale! Thanks to all crew members of PackT Publishing for their dedication and commitment toward the launch of this book.

When I send message to people and friends I got a great appreciation and response from different people. Those messages are refreshing and boosted my confidence to write another book immediately.
Writing a book is a great adventure ... Congratulation for your book ...... very nice cover :) - Ludovic LefortCongratulations! An awesome accomplishment that requires a great deal of focus and sacrifice to execute on. Great job! - Amanda Murphy
Congratulations Vivek. This is a great achievement. Looking forward to seeing your book - soon! - SS AhmedVery nice... i post this in my blog... Congrats!!! - Vladimir MedinaCongratulations Vivek, this is indeed a great achievement! - Cristina Nardini
Congrats Vivek. Way to go! - Suprotim Agarwal
Great Stuff. It's an area waiting to explored. Glad you did it. Looking forward to see more from you :). - Niraj G Bhatt
excellent work Congratulations. - Ajay Pathak
Great Stuff Vivek!! - Amit Bansal
Congratulations – this looks like a great book. - Geetesh Bajaj
Congratulations !! Your hardwork has reaped you this success:):) - Vijayraj vm
Congrats man. Nice selection of subject. - Praveen Nair
Congrats Vivek Wish you follow it up with many more - Shanmuga Sundara Raman
.... more and more... what to say countless...
Thanks to everyone :)
Thursday, May 15, 2008
Deploying Office Solutions Using Windows Installer
Deploying Office Solutions Using Windows Installer
How to deploy a Microsoft Visual Studio 2005 Tools for the 2007 Microsoft Office system (also known as Visual Studio 2005 Tools for Office Second Edition, or VSTO 2005 SE) solution using a Visual Studio 2005 Setup project to create a Windows Installer package.
More on that...
This article demonstrates how to use the installer
learn how to
How to deploy a Microsoft Visual Studio 2005 Tools for the 2007 Microsoft Office system (also known as Visual Studio 2005 Tools for Office Second Edition, or VSTO 2005 SE) solution using a Visual Studio 2005 Setup project to create a Windows Installer package.
More on that...
This article demonstrates how to use the installer
learn how to
Tuesday, April 17, 2007
Excel Services in MOSS 2007 - Sharing your excel
Introduction:


Excel Services is a new technology that ships as part of Shared Services and allows you to calculate and display Excel spreadsheets using MOSS 2007 without necessarily having a copy of Excel on the client machines. With Excel Services you can simply share a spreadsheet using the browser. Excel Services has a calculation engine that supports calculating spreadsheets on the server in order to offload resource intensive calculations.
The three main components of the Excel Services are
1) Excel Web Access web part
2) Excel Calculation Services
3) Excel Web Services
To start with, first check your Excel Calculation Services is running. How to check this? go to Central administrator and click the operations tab and Topology and Services select Services on server, the services will be listed as in the below image.
And now you need to create a trusted work location for your Excel. To do that create or configure a shared services. First open the shared Services Administration and create new SSP, after creating your new SSP open your administration page of your newly created SSP. In your SSP administrator page Under Excel Services Settings select Trusted file locations. Use the URL address of the document library which you created in the site and Location Type as "Windows SharePoint Services" and then click OK.
Now you need a simple Excel which should do some simple canculation for our Excel services demo. Now start creating a new excel with sample data with calculation in it. And after that publish the excel using Excel services option in your Excel 2007.
SharePoint publishes your workbook into the document library. If you browse to this document from IE, you'll see an Excel-like generated interface. This Excel service that allows you to publish your Excel documents to a server library and let users run them successfully.
Saturday, December 09, 2006
What is the Ribbon in Office 2007
The Ribbon replaces the current system of layered menus, toolbars, and task panes with a simpler system of interfaces optimized for efficiency and discoverability.
The 2007 release of Office provides two ways to customize the RibbonX UI using XML markup:
Using valid Open XML Formats files that contain XML markup. Using COM add-ins that contain XML markup.
One of the nice article i gone through in the MSDN is ...
Code:
public void OnActionCallback(Office.IRibbonControl control, bool isPressed)
{
if (control.Id == "checkBox1")
{
MessageBox.Show("You clicked " + control.Id);
}
else
{
MessageBox.Show("You clicked a different control.");
}
}
using VSTO for visual studio 2005 we do these kind of C# coding in ribbon or add-on development for office 2007.
The 2007 release of Office provides two ways to customize the RibbonX UI using XML markup:
Using valid Open XML Formats files that contain XML markup. Using COM add-ins that contain XML markup.
One of the nice article i gone through in the MSDN is ...
Code:
public void OnActionCallback(Office.IRibbonControl control, bool isPressed)
{
if (control.Id == "checkBox1")
{
MessageBox.Show("You clicked " + control.Id);
}
else
{
MessageBox.Show("You clicked a different control.");
}
}
using VSTO for visual studio 2005 we do these kind of C# coding in ribbon or add-on development for office 2007.
Subscribe to:
Comments (Atom)
ASP.NET MVC - Sport Facility Booking system
The project relies on some external service providers. Thus accessing them via their API requires authentication. An API Key need to be su...
-
The project relies on some external service providers. Thus accessing them via their API requires authentication. An API Key need to be su...
-
"The server is configured to use pass-through authentication with a built-in account to access the specified physical path. However, II...
-
Excellent outcome by some of the Microsoft Technology community influencers. CAML.NET IntelliSense for SharePoint To build a SharePoint feat...