Drag and Drop

2005-03-02 Thread sn_narasimha76
---

New Message on BDOTNET

---
From: sn_narasimha76
Message 1 in Discussion

Hi,   How to implement drag and drop functionality in Dot Net. ie User should 
be able to drag image corresponding to item and able to drop in specified 
location on the form/page and vice versa.   For this is there any third part 
tools. Please help me on this. It is very urgent for me.   Thanks and Regards 
Murthy.

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Drag and Drop

2005-03-02 Thread vivek_vellokkandi
---

New Message on BDOTNET

---
From: vivek_vellokkandi
Message 2 in Discussion

Here is an excerpt from MSDN for Drag and Drop :   The following example 
illustrates how DragEventArgs are passed between the source and target of a 
drag-and-drop operation. In this example, a ListBox control is the source of 
the data, and the RichTextBox control is the target. The example assumes that 
the ListBox control has been populated with a list of valid filenames. When the 
user drags one of the displayed filenames from the ListBox control onto the 
RichTextBox control, the file referenced in the filename is opened. 
The operation is initiated in the ListBox control's MouseDown event. In the 
DragEnter event handler, the example uses the GetDataPresent method to verify 
that the data is in a format that the RichTextBox control can display and then 
sets the DragDropEffects property to specify that data should be copied from 
the source control to the target control. Finally, the RichTextBox control's 
DragDrop event handler uses the GetData method to retrieve the filename to 
open. 
private void Form1_Load(object sender, EventArgs e) 
{
   // Sets the AllowDrop property so that data can be dragged onto the control.
   richTextBox1.AllowDrop = true; 
   // Add code here to populate the ListBox1 with paths to text files. 
} 
private void listBox1_MouseDown(object sender, 
System.Windows.Forms.MouseEventArgs e)
{
   // Determines which item was selected.
   ListBox lb =( (ListBox)sender);
   Point pt = new Point(e.X,e.Y);
   int index = lb.IndexFromPoint(pt); 
   // Starts a drag-and-drop operation with that item.
   if(index=0) 
   {
  lb.DoDragDrop(lb.Items[index].ToString(), DragDropEffects.Link);
   }
} 
private void richTextBox1_DragEnter(object sender, DragEventArgs e) 
{
   // If the data is text, copy the data to the RichTextBox control.
   if(e.Data.GetDataPresent(Text))
  e.Effect = DragDropEffects.Copy;
} 
private void richTextBox1_DragDrop(object sender, DragEventArgs e) 
{
   // Loads the file into the control. 
   richTextBox1.LoadFile((String)e.Data.GetData(Text), 
System.Windows.Forms.RichTextBoxStreamType.RichText);
}
 

 
You can make use of the same logic for dropping image on a target. 
  
Regards 
vivek 
  
  
 

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: BreakPoints Not Firing in VS.NET

2005-03-02 Thread GonaSuresh
---

New Message on BDOTNET

---
From: GonaSuresh
Message 2 in Discussion


Hi 
Vinay,
 
your 
application might be in release mode instead of Debug mode.
u can 
find a Solution configuration dropdownlist box in Standard tool bar where 
we can set the mode
try 
with this.
 
Thanks
Suresh

  
  -Original Message-
From: WinDotNet 
  [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 02, 
  2005 2:08 PM
To: BDOTNET
Subject: BreakPoints Not Firing 
  in VS.NET


  

  
  New Message on BDOTNET

  

  BreakPoints Not Firing in VS.NET



  
  
Reply


  


   
  Reply to Sender   Recommend 
  Message 1 in 
Discussion 
  

  


  From: WinDotNet 

  


Hi

I was not 
able to debug the .net application. I tried setting 
Breakpoints  to a number of different lines with but 
even though breakpoin does't 
fire.

Debug is set to true in my web.config 
file.


I'am able to 
debug it in another project. what could be wrong?

Any idea's or 
suggestions???

regards,

Vinay

 
View other groups in this 
category. 


  
  


This message and 
  any attachments are intended only for the use of the addressee and may 
contain 
  information that is privileged and confidential. If the reader of the message 
  is not the intended recipient or an authorized representative of the intended 
  recipient, you are hereby notified that any dissemination of this 
  communication is strictly prohibited. If you have received this communication 
  in error, please notify us immediately by e-mail and delete the message and 
  any attachments from your system. 




This message is confidential and may also be legally privileged. If you are not 
the intended recipient, please notify [EMAIL PROTECTED] immediately. You should 
not copy it or use it for any purpose, nor disclose its contents to any other 
person. The views and opinions expressed in this e-mail message are the 
author's own and may not reflect the views and opinions of ADP.




---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: BreakPoints Not Firing in VS.NET

2005-03-02 Thread LovedJohnySmith
---

New Message on BDOTNET

---
From: LovedJohnySmith
Message 3 in Discussion

As continue wif suresh answer, please make sure the following debugger assembly 
 under your framework directory(C:\windows\Microsoft.NET\framework\v1.1.4322 
for winXP)   1. mscordbc.dll - Microsoft .NET Runtime Debugging Services 
Controller 2. mscordbi.dll - Microsoft .NET Runtime Debugging Services   I 
hope, this may help u.   Regards, Smith  

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


BDOTNET Announcement - WebChat on ASP.NET Caching Features Today at 5.00 PM

2005-03-02 Thread Managers of BDOTNET
---

Announcement from Managers of BDOTNET

---

Chat Topic: ASP.NET Caching Features
Chat Expert: Saravana Kumar P, HP.   One of the important factors to improve 
web application performance and scalability is by using caching feature. 
Caching is the process of storing frequently used data, usually data that is 
costly to generate, for reuse. ASP.NET 1.1 comes with different types of 
caching like output caching, partial caching and data caching. Join this chat 
to understand how caching features in ASP.NET can improve the performance in 
web applications. In this chat, we will also discuss about some of the caching 
enhancements in ASP.NET 2.0 
Time : Mar 2, 2005, 5.00 pm IST   How to Participate:   On the day of the chat, 
browse to: http://www.microsoft.com/india/communities/chat/chatroom.aspx  
Provide your credentials to enter the chat. Note: You can also enter the chat 
room by clicking on Enter Chat Room link on the chat room page at:  
http://www.microsoft.com/india/communities/chat/default.aspx   For transcripts 
of previous chats, 
http://www.microsoft.com/india/communities/chat/Transcripts.aspx 
 
---


Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact




Re: Drag and Drop

2005-03-02 Thread sn_narasimha76
---

New Message on BDOTNET

---
From: sn_narasimha76
Message 3 in Discussion

Thanks Vivek,   I have implementated same thing for image also, my problem is 
that I can't able to do vice versa. ie I can able to drag a image from the list 
view control and able to drop on frame control. Whenever image is dropped on 
frame control, a new picture box will be created and image will be assigned to 
that control. So when I click on frame control I won't be having control on 
which image is clicked because all these images will be bound to frame control. 
Following in the code I have return for, please checkout this and let me know 
how to proceed for further.   I have created windows C# project, in that added 
single form with list view and frame control.   using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.IO; namespace SampleDragAndDrop
{
 /// summary
 /// Summary description for ImageListView.
 /// /summary
 public class ImageListView : System.Windows.Forms.Form
 {
  private System.Windows.Forms.ListView listView1;
  private System.Windows.Forms.GroupBox groupBox1;
  private System.ComponentModel.IContainer components = null;
  private int count;
  bool lv1_mdown = false ;   public ImageListView()
  {
   //
   // Required for Windows Form Designer support
   //
   InitializeComponent();//
   // TODO: Add any constructor code after InitializeComponent call
   //
  }   /// summary
  /// Clean up any resources being used.
  /// /summary
  protected override void Dispose( bool disposing )
  {
   if( disposing )
   {
if(components != null)
{
 components.Dispose();
}
   }
   base.Dispose( disposing );
  }   #region Windows Form Designer generated code
  /// summary
  /// Required method for Designer support - do not modify
  /// the contents of this method with the code editor.
  /// /summary
  private void InitializeComponent()
  {
   this.listView1 = new System.Windows.Forms.ListView();
   this.groupBox1 = new System.Windows.Forms.GroupBox();
   this.SuspendLayout();
   // 
   // listView1
   // 
   this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  this.colImage,
  this.colImageDescription});
   this.listView1.Location = new System.Drawing.Point(8, 8);
   this.listView1.Name = listView1;
   this.listView1.Size = new System.Drawing.Size(480, 248);
   this.listView1.TabIndex = 0;
   this.listView1.View = System.Windows.Forms.View.Details;
   this.listView1.MouseDown += new 
System.Windows.Forms.MouseEventHandler(this.listView1_MouseDown);
   this.listView1.MouseMove += new 
System.Windows.Forms.MouseEventHandler(this.listView1_MouseMove);
   // 
   // colImage
   // 
   this.colImage.Text = Image;
   this.colImage.Width = 222;
   // 
   // colImageDescription
   // 
   this.colImageDescription.Text = Description;
   this.colImageDescription.Width = 253;
   // 
   // groupBox1
   // 
   this.groupBox1.Location = new System.Drawing.Point(648, 8);
   this.groupBox1.Name = groupBox1;
   this.groupBox1.Size = new System.Drawing.Size(336, 568);
   this.groupBox1.TabIndex = 1;
   this.groupBox1.TabStop = false;
   this.groupBox1.DragEnter += new 
System.Windows.Forms.DragEventHandler(this.groupBox1_DragEnter);
   this.groupBox1.DragDrop += new 
System.Windows.Forms.DragEventHandler(this.groupBox1_DragDrop);
   // 
   // 
   // ImageListView
   // 
   this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
   this.ClientSize = new System.Drawing.Size(992, 661);
   this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.textBox1,
this.panel1,
this.groupBox1,
this.listView1});
   this.Name = ImageListView;
   this.Text = ImageListView;
   this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
   this.Load += new System.EventHandler(this.ImageListView_Load);
   this.ResumeLayout(false);   }
  #endregion   private void ImageListView_Load(object sender, System.EventArgs 
e)
  {
   groupBox1.AllowDrop = true; 
   BindImageList();
  }   private void BindImageList()
  {
   try 
   {
DirectoryInfo di = new DirectoryInfo(@D:\Images);
FileSystemInfo[] fsi = di.GetFileSystemInfos();
ImageList il = new ImageList();

string[] items = new string[2];
int index = 0;
foreach (FileSystemInfo f in fsi)
{
 il.Images.Add(new System.Drawing.Bitmap(f.FullName));
 items[0] = f.ToString(); items[1] = f.FullName;
 listView1.SmallImageList = il;
 listView1.Items.Add(new ListViewItem(items,index));
 index += 1;
}} 
   catch (Exception e) 
   {
MessageBox.Show(e.ToString());
   }
  }   public string GetItemText(ListView LVIEW)
  {
   int nTotalSelected = LVIEW.SelectedIndices.Count;
   if ( nTotalSelected = 0 ) 

Doubt in Windows Password Saving

2005-03-02 Thread san_kumar_r
---

New Message on BDOTNET

---
From: san_kumar_r
Message 1 in Discussion

Hi. In some applications, such as Outlook Express, which asks Username and 
Password, I checked the option - Remember my Username and Password. After 
certain time/days, it again asks me for username and password.Is this is a 
functionality/feature in Windows? bye

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDOTNET/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


BDOTNET Announcement - Webchat on ASP.NET Caching Features TODAY at 5.00 pm IST

2005-03-02 Thread Managers of BDOTNET
---

Announcement from Managers of BDOTNET

---

 
Come join the bandwagon to unleash the technology inside out  
Be a part of a live discussion from the convenience of your office/home and 
experience technical and thought-provoking perspectives from a host of peer 
experts. 
Microsoft Community Web Chats are interactive discussions, product 
demonstrations, and question-and-answer sessions. Share your experience on 
various Microsoft Products with technology enthusiasts across the country. 
--
 
Chat Topic : ASP.NET Caching Features 

One of the important factors to improve web application performance and 
scalability is by using caching feature. Caching is the process of storing 
frequently used data, usually data that is costly to generate, for reuse. 
ASP.NET 1.1 comes with different types of caching like output caching, partial 
caching and data caching.

Join this chat to understand how caching features in ASP.NET can improve the 
performance in web applications. In this chat, we will also discuss about some 
of the caching enhancements in ASP.NET 2.0. 
Chat Expert: Saravana P Kumar
March 2, 2005
5.00 pm IST 
How to Participate: 
On the day of the chat, browse to: 
http://www.microsoft.com/india/communities/chat/chatroom.aspx  
Provide your credentials to enter the chat. 
Note: You can also enter the chat room by clicking on Enter Chat Room link on 
the chat room page at: 
http://www.microsoft.com/india/communities/chat/default.aspx 
For transcripts of previous chats, 
http://www.microsoft.com/india/communities/chat/Transcripts.aspx

---


Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact




Re: BreakPoints Not Firing in VS.NET

2005-03-02 Thread WinDotNet
---

New Message on BDOTNET

---
From: WinDotNet
Message 4 in Discussion

Hi, suresh  smith   I checked solution's Configuration manager.. its in debug  
mode only...and all other projects of the solution(actually i'am using 4 
projects in the soln) are also in set to Debug mode   To be make sure I 
also checked for the dlls said by smith.all are intact.   any idea?   
Vinay

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


SQL QUERY - Rows to Columns

2005-03-02 Thread BalajiKrishnan
---

New Message on BDOTNET

---
From: BalajiKrishnan
Message 1 in Discussion

Hi SQL Gurus,   I have a select statment where i need to display the rows as 
columns. Please thru me some inputs on this.   Balaji.

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: SQL QUERY - Rows to Columns

2005-03-02 Thread Luttappi9
---

New Message on BDOTNET

---
From: Luttappi9
Message 2 in Discussion

in access u can use crosstab queries

in sql server

u can simulate cross tab queries using self join...


bineesh



---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: SQL QUERY - Rows to Columns

2005-03-02 Thread Luttappi9
---

New Message on BDOTNET

---
From: Luttappi9
Message 3 in Discussion

see this links

http://sqljunkies.com/WebLog/mattnunn/archive/2003/08/07/173.aspx

http://www.tek-tips.com/viewthread.cfm?qid=1013000

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Anybody worked with ASP and Excel charts ?

2005-03-02 Thread DotNetSaavy (Mr.BabuRaj)
---

New Message on BDOTNET

---
From: DotNetSaavy (Mr.BabuRaj)
Message 1 in Discussion

  Hi all, I am generating a chart using WS.ChartObjects and displaying it in an 
ASP page. The code which generates the chart works well locally on my machine, 
but when I moved the same code to production I get the following error.  
Error Type:
Microsoft VBScript runtime (0x800A03EC)
Unknown runtime error 
At line  
crt.Chart.Export Server.Mappath(Chart/  mstrFileName) 
What may be wrong ??, in the above code mstrFileName is the name of the chart 
generated. 
If you want to know how I have declared the crt object please see below 
Set crt = ws.ChartObjects.Add(5, 50, 500, 350) 
Thanks 
BabuRaj

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: About DataReader in ASP.NET

2005-03-02 Thread Mrinal
---

New Message on BDOTNET

---
From: Mrinal
Message 4 in Discussion

Hi ,   Above given solution is correct but if  that's the case and there's a 
possibility of reader coming empty , then better way will be execute a scalar 
query and in case it passes on a result  0 , then only proceed further else 
exit . always scalar query execution is much faster .   regards ,   Mrinal

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Anybody worked with ASP and Excel charts ?

2005-03-02 Thread shahkalpesh
---

New Message on BDOTNET

---
From: shahkalpesh
Message 2 in Discussion

What does Server.MapPath(...) return ?
does it return a proper image file name ?

moreover, is writing to the directory where the output file will be created, 
allowed ?

Kalpesh

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: ASP.NET +C# DataGrid/Tree

2005-03-02 Thread LovedJohnySmith
---

New Message on BDOTNET

---
From: LovedJohnySmith
Message 2 in Discussion

  Good Day   You can discover solvent for your issue on  Dino Esposito  article 
at MSDN Magazine. The following for tat. 
http://msdn.microsoft.com/msdnmag/issues/03/10/CuttingEdge/default.aspx   I'm 
sure, it will help u.   Thanx and Regards, Smith  

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Symphony Requirement (C#/Winforms)

2005-03-02 Thread sonit20000
---

New Message on BDOTNET

---
From: sonit2
Message 1 in Discussion

Hi there are heavy requirements for C#/Winforms at Symphony Services for 5-8 
yrs.  If you meet this criteria please mail ur cv to [EMAIL PROTECTED]   Note 
Salary will be the best in the industry.   Regards Rachel soni

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Merci beaucoup !!!

2005-03-02 Thread Nasha
---

New Message on BDOTNET

---
From: Nasha
Message 1 in Discussion

 
Hi All,

Its a delight to work with all of you ... great spirit, great effort and 
finally great work.
I am very thankful to all of you who have come forward to help us in the 
creation of .NET Question Bank. Thanks a lot for investing your valuable time 
and effort for this.

We have around 350 + questions in the bank which have been distributed between 
46 volunters. Thatz a mind blowing figure  my mailbox is FU.

To be very honest I did not expect such an outstanding response. I have mailed  
questions ( max 8 in number ) to all the volunters. I have got answers from a 
few of them ... others who have not ... please do not hurry ... U can take time 
upto Sunday ... no issues with that.

Since all these questions need to be reviewed and the number being so high I 
have decided to go for a cross review ... so once again I will b mailing each 
one of you  8 questions to review. I hope its not a burden ... incase you are 
not in a position to do it  please mail me (once again no reasons will be 
asked). As soon as they are reviewed I will put them up on MUG-Bank.

Finally, I feel great doin this  and the credit goes to ALL of you. It bcoz 
of you guys who have put in gr8 effort and time that this is happening. Thanks 
for everything again  I am grateful to each one of you.

If you have any issues or concerns please do not hesitate to come back.

Merci beaucoup !!!

Cheers,
Nasha. 

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


IIS problem

2005-03-02 Thread shan_is_nice
---

New Message on BDOTNET

---
From: shan_is_nice
Message 1 in Discussion

hey group,   when i am trying to run IIS , there is always a
   message,  THE PAGE CAN NOT BE DISPLAYEDwhy 
this is happening ?and why i do not able to run IIS.
   what should i do to correct this error ?   thank 
you,   shankar.

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDOTNET/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: IIS problem

2005-03-02 Thread BDOTNET
---

New Message on BDOTNET

---
From: King John
Message 2 in Discussion

IIS is included with all versions of the Microsoft Windows 2000 operating 
system.
You Install that again.
From your Start Button, go to Settings, and Control Panel
In the Control Panel window select Add/Remove Programs
In the Add/Remove window select Add/Remove Windows Components
In the Windows Component Wizard check Internet Information Services, click next 
and follow the on-screen instructions.


To test that IIS is working.
First of all to test IIS make sure that your web server is running. Check your 
task bar for the newly added IIS icon. Double click on it and press the 'Start' 
button if this isn't already on.
Next type into your browser one of the following 3;
a) http://localhost/
b) http://127.0.0.1
c) http://YourComputerName

You should see some Microsoft information on IIS if it's working correctly.

John Manavalan


---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Anybody worked with ASP and Excel charts ?

2005-03-02 Thread BDOTNET
---

New Message on BDOTNET

---
From: King John
Message 3 in Discussion


This is the code i am using for our project.

John Manavalan

%
Dim BarVal(8)
Dim LineVal(8)
Dim Val(8)
BarVal(1) = 4
BarVal(2) = 5
BarVal(3) = 6
BarVal(4) = 4
BarVal(5) = 5
BarVal(6) = 6
BarVal(7) = 8
BarVal(8) = 11
LineVal(1) = 5
LineVal(2) = 4
LineVal(3) = 6
LineVal(4) = 8
LineVal(5) = 9
LineVal(6) = 10
LineVal(7) = 8
LineVal(8) = 9
Val(1) = 1
Val(2) = 2
Val(3) = 3
Val(4) = 4
Val(5) = 4
Val(6) = 6
Val(7) = 7
Val(8) = 8
Dim ObjChart
Dim ChaCon
Dim ObjCharts
Dim SerCol
Set ObjChart = Server.CreateObject(OWC.Chart)
Set ChaCon = ObjChart.Constants
Set ObjCharts = ObjChart.Charts.Add
'adding my bar
Set SerCol = ObjCharts.SeriesCollection.Add
'adding my line
Set SerCol1 = ObjCharts.SeriesCollection.Add
ObjCharts.Type = ChaCon.chChartTypeColumnClustered
'this is my bar In the graph
SerCol.Caption = Estimated Income 
SerCol.SetData ChaCon.chDimCategories, ChaCon.chDataLiteral, Val
SerCol.SetData ChaCon.chDimValues, ChaCon.chDataLiteral, BarVal
'---
'this is my line in the graph
SerCol1.Caption = Real Income
SerCol1.SetData ChaCon.chDimCategories, ChaCon.chDataLiteral, 
Val
SerCol1.SetData ChaCon.chDimValues, ChaCon.chDataLiteral, 
LineVal
'change from the default bar graph To a line
SerCol1.Type = ChaCon.chChartTypeLine
'
'put a title on this graphic...obviously
' optional
ObjChart.HasChartSpaceTitle=True
ObjChart.ChartSpaceTitle.Caption = Earnings Breakdown
'tell it you want a legend in the graphi
' c
ObjChart.HasChartSpaceLegend = True
ObjChart.ChartSpaceLegend.Position = ChaCon.chLegendPositionRight
'for caching issues on browsers you may
' want to come up with your own
'naming convention and a way to remove o
' ld imagesthis is a rather
'simple issue with many solutions...if y
' ou are still stumped by it
'you can email me and i will show you so
' me of the ways i did this
ImagePath=server.mappath(reports/aspin.gif)

ObjChart.ExportPicture ImagePath,gif, 400, 200
Set ChaCon = nothing
Set ObjCharts = nothing
Set ObjChart = nothing 
%


---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Anybody worked with ASP and Excel charts ?

2005-03-02 Thread BDOTNET
---

New Message on BDOTNET

---
From: King John
Message 4 in Discussion

Hi

This is the code i am using for our project.
I am attaching that.

John Manavalan



---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Anybody worked with ASP and Excel charts ?

2005-03-02 Thread BDOTNET
---

New Message on BDOTNET

---
From: King John
Message 5 in Discussion

Hi

This is the code i am using for our project.
I am attaching that.

http://www.alltimefriends.com/temp/test.txt

John Manavalan



---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Doubt in Windows Password Saving

2005-03-02 Thread BDOTNET
---

New Message on BDOTNET

---
From: King John
Message 2 in Discussion

I  dont think so.
You have to code like that.

Save the Password and time of saving that some where.

John Manavalan

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: SQL QUERY - Rows to Columns

2005-03-02 Thread indian847
---

New Message on BDOTNET

---
From: indian847
Message 4 in Discussion

HI,   Please find an example of how you can achieve ur requirement in sql 
server.   CREATE TABLE ItemAttributes
(
  itemidINT  NOT NULL REFERENCES AuctionItems,
  attribute NVARCHAR(30) NOT NULL,
  value SQL_VARIANT  NOT NULL, 
  PRIMARY KEY (itemid, attribute)
)   INSERT INTO ItemAttributes
  VALUES(1, N'manufacturer', CAST(N'ABC'  AS NVARCHAR(30)))
INSERT INTO ItemAttributes
  VALUES(1, N'type', CAST(N'Pinot Noir'   AS NVARCHAR(15)))
INSERT INTO ItemAttributes
  VALUES(1, N'color',CAST(N'Red'  AS NVARCHAR(15)))
INSERT INTO ItemAttributes
  VALUES(2, N'manufacturer', CAST(N'XYZ'  AS NVARCHAR(30)))
INSERT INTO ItemAttributes
  VALUES(2, N'type', CAST(N'Porto'AS NVARCHAR(15)))
INSERT INTO ItemAttributes
  VALUES(2, N'color',CAST(N'Red'  AS NVARCHAR(15)))
INSERT INTO ItemAttributes
  VALUES(3, N'material', CAST(N'Wood' AS NVARCHAR(15)))
INSERT INTO ItemAttributes
  VALUES(3, N'padding',  CAST(N'Silk' AS NVARCHAR(15)))
INSERT INTO ItemAttributes
  VALUES(4, N'material', CAST(N'Gold' AS NVARCHAR(15)))
INSERT INTO ItemAttributes
  VALUES(4, N'inscription',  CAST(N'One ring ...' AS NVARCHAR(50)))
INSERT INTO ItemAttributes
  VALUES(4, N'size', CAST(10  AS INT))
INSERT INTO ItemAttributes
  VALUES(5, N'artist',   CAST(N'Claude Monet' AS NVARCHAR(30)))
INSERT INTO ItemAttributes
  VALUES(5, N'name', CAST(N'Field of Poppies' AS NVARCHAR(30)))
INSERT INTO ItemAttributes
  VALUES(5, N'type', CAST(N'Oil'  AS NVARCHAR(30)))
INSERT INTO ItemAttributes
  VALUES(5, N'height',   CAST(19.625  AS NUMERIC(9,3)))
INSERT INTO ItemAttributes
  VALUES(5, N'width',CAST(25.625  AS NUMERIC(9,3)))
INSERT INTO ItemAttributes
  VALUES(6, N'artist',   CAST(N'Vincent Van Gogh' AS NVARCHAR(30)))
INSERT INTO ItemAttributes
  VALUES(6, N'name', CAST(N'The Starry Night' AS NVARCHAR(30)))
INSERT INTO ItemAttributes
  VALUES(6, N'type', CAST(N'Oil'  AS NVARCHAR(30)))
INSERT INTO ItemAttributes
  VALUES(6, N'height',   CAST(28.75   AS NUMERIC(9,3)))
INSERT INTO ItemAttributes
  VALUES(6, N'width',CAST(36.25   AS NUMERIC(9,3)))
Go   --When using SQL server 2000, this query will work SELECT
  itemid,
  MAX(CASE WHEN attribute = 'artist'  THEN value END) AS [artist],
  MAX(CASE WHEN attribute = 'name'THEN value END) AS [name],
  MAX(CASE WHEN attribute = 'type'THEN value END) AS [type],
  MAX(CASE WHEN attribute = 'height'  THEN value END) AS [height],
  MAX(CASE WHEN attribute = 'width'   THEN value END) AS [width]
FROM ItemAttributes AS ATR
WHERE itemid IN(5,6)
GROUP BY itemid
Go   --When using Yukon, this query will give you the exact result SELECT *
FROM ItemAttributes AS ATR
  PIVOT
  (
MAX(value)
FOR attribute IN([artist], [name], [type], [height], [width])
  ) AS PVT
WHERE itemid IN(5,6)
Go Hope this helps, Anand

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Download Visual Studio 2005 Prerelease Software

2005-03-02 Thread BDOTNET
---

New Message on BDOTNET

---
From: King John
Message 2 in Discussion

Hi
Can you tell me where i can get a copy of VS.NET 2005 Trial or Beta In 
Bangalore.
How much is the shipment charge if i do online order.

John Manavalan

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Books on Design Patterns

2005-03-02 Thread satyachappidi
---

New Message on BDOTNET

---
From: satyachappidi
Message 18 in Discussion

  Hi,Can please send me that PDF and source code.  thanks for your help. 
Please reply [EMAIL PROTECTED]   regards satya

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Highlight a Row in Datagrid when check box is selected

2005-03-02 Thread BDOTNET
---

New Message on BDOTNET

---
From: King John
Message 5 in Discussion

http://www.codeguru.com/forum/archive/index.php/t-305176.html

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


BDOTNET Announcement - Registration open for B.NET BASH 2005!

2005-03-02 Thread Managers of BDOTNET
---

Announcement from Managers of BDOTNET

---

 Registration open for B.NET BASH 2005!   Register at 
http://www.codethinkers.comAGENDA:1:00 - 2:00 Registration and play 
latest XBOX GAMES (HALO 2)
2:00 - 2:30 Keynote  Entertainment 
2:30 - 3:15 Talk about community  Microsoft Technology. 
3:15 - 3:45 Cake cut/ Snacks 
3:45 - 4:15 Fun Stuff (skit etc.) 
4:30 - 5:30 Tech Talk 
5:30 - 6:30 Quiz / Goodies / B.NET Talent Show (singing/mimicry/contest.. etc) 
6:30 - 7:00 B.NET Connect (show ends, but members can talk with others or can 
make new friends and also play XBOX Games )  
Date:   6th March 2005 (Sunday) 
Time:   1:00 PM - 7:00 PM 
Venue: PES Institute of Technology (PESIT): 
  100 Feet Ring Road, BSK III Stage, Bangalore-560085Map available 
at www.mapmyindia.com (location: PES College,City: Bangalore,State: Karnataka). 
You can also participate in the talents show: 
Send your details to [EMAIL PROTECTED]  or [EMAIL PROTECTED] if you wish to 
participate.
---


Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact




Registration open for B.NET BASH 2005!

2005-03-02 Thread BDOTNET
---

New Message on BDOTNET

---
From: KashiMVP
Message 1 in Discussion


Register at http://www.codethinkers.com  
AGENDA:  
1:00 - 2:00 Registration and also play latest XBOX GAMES (HALO 2)
2:00 - 2:30 Keynote  Entertainment 
2:30 - 3:15 Talk about community  Microsoft Technology. 
3:15 - 3:45 Cake cut/ Snacks 
3:45 - 4:15 Fun Stuff (skit etc.) 
4:30 - 5:30 Tech Talk 
5:30 - 6:30 Quiz / Goodies / B.NET Talent Show
 (singing/mimicry/contest.. etc) 
6:30 - 7:00 B.NET Connect (show ends, but members 
can talk with others or can make new friends and also play XBOX 
Games )  

Date:  6th March 2005 (Sunday) 
Time:  1:00 PM - 7:00 PM 
Venue: PES Institute of Technology (PESIT): 
   100 Feet Ring Road, BSK III Stage, Bangalore-560085  

You can also participate in the talents show: 
Send your details [EMAIL PROTECTED]  or [EMAIL PROTECTED] if you wish to 
participate.
 

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Anybody worked with ASP and Excel charts ?

2005-03-02 Thread DotNetSaavy (Mr.BabuRaj)
---

New Message on BDOTNET

---
From: DotNetSaavy (Mr.BabuRaj)
Message 6 in Discussion

Kalpesh, Yes, the filename returned by Server.Mappath is correct. I have given 
the write permission to the directory where the output file is created. Thanks 
BabuRaj  

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotNet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Excel automation in ASP.Net (C#)

2005-03-02 Thread Akshit56491
---

New Message on BDOTNET

---
From: Akshit56491
Message 2 in Discussion

Hi,
   Please check this may help u.

http://www.asp101.com/articles/jayram/exceldotnet/default.asp


Regards,
Akshit

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Developing Microsoft ASP.NET Server Controls and Components

2005-03-02 Thread Akshit56491
---

New Message on BDOTNET

---
From: Akshit56491
Message 2 in Discussion

Hi,
   I found some articales like this

http://aspnet.4guysfromrolla.com/articles/100103-1.aspx

I found one PDF also for u. Please check
http://www.businessobjects.com/global/pdf/products/crystalenterprise/factsheet_cedotnetservercontrols.pdf

Hope this helps u.

Regards,
Kiran

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: HTTP status 407: Proxy authentication required

2005-03-02 Thread Akshit56491
---

New Message on BDOTNET

---
From: Akshit56491
Message 2 in Discussion

Hi,
Proxy Servers can demand authentication just like web servers do.
When you are on an Intranet environment, IE takes care of sending
your current credentials so you don;t see this in action unless you use a
netmon.

1) If you want to specify credentials to a proxy server, do the following
If you want to use the same settings as IE does
WebProxy wp = GlobalProxySelection.Select as WebProxy;
wp.Credentials = CredentialCache.DefaultCredentials;

or
If you have your own custom proxy that is different from IE
WebProxy wp = new WebProxy()
wp.Credentials = CredentialCache.DefaultCredentials;

2) If you want to set credentials to a server

HttpWebRequest .hr = ...
hr.Credentials = CredentialCache.DefaultCredentials;

Regards,
Kiran

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Highlight a Row in Datagrid when check box is selected

2005-03-02 Thread BDOTNET
---

New Message on BDOTNET

---
From: King John
Message 6 in Discussion

hi
I am attaching a JAVA Script Code.
You can use this in DataGrid or DataList

http://www.alltimefriends.com/temp/tableRowSelect.html

John Manavalan
www.manavalan.com



!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN
http://www.w3.org/TR/html4/loose.dtd;
html
head
titlewww.manavalan.com/title
meta http-equiv=Content-Type content=text/html; charset=iso-8859-1
/head

body bgcolor=#CC
form name=form1 method=post action=
  

   
  Name
  Company
  Address


  input type=checkbox name=checkboxCont value=1 
onClick=highlight(this)
  King John 
  NCRP - ICMR 
  Bangalore


  input type=checkbox name=checkboxCont value=2 
onClick=highlight(this)
  Nimmy
  Mind Tree 
  Bangalore


  input type=checkbox name=checkboxCont value=3 
onClick=highlight(this)
  Sreeja
  HP
  Bangalore


  input type=checkbox name=checkboxCont value=4 
onClick=highlight(this)
  Naveen
  Trigent
  Bangalore

  
  

input type=button name=Button value=Close Me 
onClick=javascript:window.close();
  
/form


  
function highlight(arr) {
   var tr = eval(document.getElementById(\TR + arr.value + \));
   if (arr.checked == true)
tr.style.backgroundColor = lightgreen;
 else
tr.style.backgroundColor = orange;

}
  /script


By John Manavalan

www.manavalan.com
/body
/html





---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: Highlight a Row in Datagrid when check box is selected

2005-03-02 Thread BDOTNET
---

New Message on BDOTNET

---
From: King John
Message 7 in Discussion

hi
I am attaching a JAVA Script Code.
You can use this in DataGrid or DataList

http://www.alltimefriends.com/temp/tableRowSelect.html

John Manavalan
www.manavalan.com

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: About Calendar control in ASP.NET

2005-03-02 Thread BanupriyaVelmurugan
---

New Message on BDOTNET

---
From: BanupriyaVelmurugan
Message 5 in Discussion

Thank you Richi...   It worked   regards Banu

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: BreakPoints Not Firing in VS.NET

2005-03-02 Thread LovedJohnySmith
---

New Message on BDOTNET

---
From: LovedJohnySmith
Message 5 in Discussion

Good Day Vinay   Okay...can you do the following steps with dbgclr.exe(Why i'm 
saying this, it provides debugging services with a graphical interface to help 
application developers find and fix bugs in programs that target the runtime)?. 
  so please follow the following steps:   Start the CLR Debugger; run 
DbgCLR.exe, which is in the GuiDebug directory of your .NET Frameworks 
installation.From the Debug menu, select Program to Debug.   In the 
Program to Debug dialog box, go to the Program box and click the ellipsis 
button (...). The Find Program to Debug dialog box appears.Navigate to the 
directory containing the EXE you want to debug and select the EXE.  Click 
Open.  
This takes you back to the Program to Debug dialog box. Notice that the Working 
directory has been set to the directory containing your EXE.In the 
Arguments box, type any arguments that your program requires.Click OK.  
 From the File menu, choose Open, then click File.   In the Open File 
dialog box, choose the source file you want to open.   Click OK.   To open 
additional source files, repeat steps 8-10 
Please let me know, whether you resolved with this. 
Thanx, 
Smith 
 

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]


Re: About Calendar control in ASP.NET

2005-03-02 Thread BanupriyaVelmurugan
---

New Message on BDOTNET

---
From: BanupriyaVelmurugan
Message 6 in Discussion

Hello all,   Please any one say how to pass the day, month, and year dropdown 
control from the parent page to the calendar popup window.   And how we set the 
date of the calendar to the date selected on the dropdown control previously.   
Also say how to send back and assign the newly selected date from the calendar 
popup window to the parent window.   Note: I replaced the month and year of the 
asx calendar control to dropdown control.   Thanks  Regards Banu

---

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the Remove link below. On the 
pre-addressed e-mail message that opens, simply click Send. Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]