Skip to main content

SharepointLabs.com Blog on MOSS - WSS 3.0 sharing experience, technology, news, views and more

Go Search
Home
Buy Webparts
SharePoint Training
Contact Us for Consulting Inquiry
  

SharepointLabs.com Blog on MOSS - WSS 3.0 sharing experience, technology, news, views and more > Categories
SharePointlab’s Silverlight Business Charting WebPart for $149.99 for limited time

We at SharePoint Labs are excited to update you that we have launched many new webparts and have plan to release few more business ready webparts this month.

One of our recent releases includes Silverlight Business Charting Webpart which has a list price of $449.99 however it is currently available for limited time only at $149.99 as part of our inaugural promotion.

SharePoint Business Charting WebPart - WSS 3.0 to visually stunning animated Business Charts quickly.   SharePoint Business Charting Webpart generates animated silver light graphs (Bar, Line, Pie, Area, Bubble, Point, Column, Doughnut) from any of database and Sharepoint List – click here to buy or get more information on it.

Other business ready webparts launched today are

We have already scheduled following other business ready webparts to be released on 30th April 2009.

  • Compose Webpart with FCK Editor - Coming Soon
  • TimeZone Webpart - Coming Soon
  • Organization Chart Webpart in Active Directory - Coming Soon
  • Reset/Change Password Webpart for AD - Coming Soon
  • Reset/Change Password Webpart for Sharepoint Lists - Coming Soon
  • Compose Webpart with Telerik Editor - Coming Soon
  • Stock Webpart - Coming Soon
  • List Tricker - Coming Soon
  • Silverlight Image Rotator Webpart - Coming Soon

We have also launched exciting SharePoint Training also. Please feel free to contact us in case of any query or question.

BDC(Business Data Catalog) : in ADF(Application Definition File) SQL Connectivity fail thru sql credential?? - Possible Solution is here

My problem: I have created sample Application Definition file(ADF) for BDC to connect external database located on another server. I am just able to access that database thru sql credential (NO WINDOWS CREDENTIAL). I have created ADF file but failed during "Executing" Instance but was not able to execute it and getting error "could not connect to LOB". I have done some R & D modify my ADF file slightly which are like mention below.

Solution: Change your ADF file from below figure 2 .
figure 1

Maximize below image of modification in ADF file to fix the problem
figure 2


Enjoy!!

Posted by Vaibhav Jain (Success is always one step ahead)

People Picker Webpart

Webpart for People Picker Refer below example

public class PeoplePickerWebPart : System.Web.UI.WebControls.WebParts.WebPart

{

PeopleEditor pe;

TextBox t;

Button b;


protected override void CreateChildControls()

{

base.CreateChildControls();

pe = new PeopleEditor();

this.Controls.Add(pe);

b = new Button();

b.Text = "Click me to see the users";

this.Controls.Add(b);

b.Click += new EventHandler(b_Click);

t = new TextBox();

t.TextMode = TextBoxMode.MultiLine;

this.Controls.Add(t);

}



void b_Click(object sender, EventArgs e)

{

foreach(string ent in pe.CommaSeparatedAccounts.Split(','))

{

t.Text += ent + Environment.NewLine;

}

}


Results:
The web part as the page loads


The web part does "check names"


The web part after the click of the button

Posted by Vaibhav Jain (Success is always one step ahead)