Re: [DotNetDevelopment] Re: Regarding Gridview

2011-05-13 Thread Vicky .................
lf. > > The answer to your question is no, it's not possible. This because a > Dataset counts as a Datasource and only a single datasource can be > specified for any data control. Anyway, the DGV would have no idea how > to display the data even if multiple sources were possible

Re: [DotNetDevelopment] Re: Regarding Gridview

2011-05-12 Thread Vicky .................
1:15 PM, Cerebrus wrote: > Assuming it were possible, how would you display the two datasets at > the same time? What kind of UI are you planning? > > On May 12, 10:31 am, "Vicky ." > wrote: > > Hello Guys, > > > > Is it possible to at

[DotNetDevelopment] Regarding Gridview

2011-05-11 Thread Vicky .................
Hello Guys, Is it possible to attach a Datagridview with two different dataset in c# Windows Application ? Thanx -- You received this message because you are subscribed to the Google Groups "DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web Services,.NET Remoting" group. To po

Re: [DotNetDevelopment] Hi i need help from Dotnet Developers

2011-04-29 Thread Vicky .................
Hello Buddy, I also suffer from exact same situation. But last month i join as a programmer. So keep trying. Best Of luck for your future. On Mon, Apr 18, 2011 at 6:49 PM, mail oo wrote: > HI everybody > > this is one of IT guys from chennai .i need your help .my postgraugde > is completed in

[DotNetDevelopment] regarding print data gridview

2011-04-23 Thread Vicky .................
Hello Everyone, how to print datagridview header text along with data. I m able to print gridview values using printdocument. Code is... using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Drawing.Printing; using Syst

Re: [DotNetDevelopment] How to add Footer in datagridview

2011-04-20 Thread Vicky .................
for sum of all columns value. On 4/20/11, Stephen Russell wrote: > On Tue, Apr 19, 2011 at 12:44 AM, Vicky . > wrote: >> Hello everyone >> >> How to add Footer in datagridview in windows application. >> > - > What

[DotNetDevelopment] How to add Footer in datagridview

2011-04-18 Thread Vicky .................
Hello everyone How to add Footer in datagridview in windows application. -- You received this message because you are subscribed to the Google Groups "DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web Services,.NET Remoting" group. To post to this group, send email to dotnetdeve

Re: [DotNetDevelopment] Re: Combobox event

2011-04-17 Thread Vicky .................
branch_name.SelectedIndex = -1; not working On Sun, Apr 17, 2011 at 1:14 AM, Steve H wrote: > That is odd I would have thought the branch_name.SelectedIndex = -1; > would have done what your talking about. > > > On Apr 16, 4:25 am, "Vicky ." >

[DotNetDevelopment] Combobox event

2011-04-16 Thread Vicky .................
Hello everyone, I m working on c# windows application. I have two combobox for 1. Bank 2. Branch My question is when i select a bank from bank_name combobox relevent branches show in branc_name combobox. I m using private void Dispatch_Load(object sender, EventArgs e) { d

[DotNetDevelopment] generate pdf report

2011-03-29 Thread Vicky .................
hello everyone, how to export dataset data into pdf report without using third party control in windows application using c#. Thanx -- You received this message because you are subscribed to the Google Groups "DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web Services,.NET Remo

[DotNetDevelopment] Crystal report

2011-03-28 Thread Vicky .................
Hello everyone, I m new for Crystal report. How i use Crystal report in my Windows Application. Thanx -- You received this message because you are subscribed to the Google Groups "DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web Services,.NET Remoting" group. To post to this g

[DotNetDevelopment] RDLC rendering different in Excel - SSRS 2005

2009-08-06 Thread Vicky Joshi
Hi Everyone, Iam having a problem in SSRS 2005. Iam basically using RDLC binded to Report Viewer to display Table Reports, getting data from Database. It works perfectly fine with PDF, though need to increase Report Width to get in one single page but when Exported to Excel, it displays different c

[DotNetDevelopment] Re: Please help me to get this job! -- suggestions on research aspect in ASP.NET

2009-03-31 Thread Vicky Joshi
Hi Cerebrus, That was gud one.. Regards Vignesh.R.Joshi On 3/30/09, Cerebrus wrote: > > > You're most welcome, Alex! It has been my pleasure contributing to > this discussion and it seems to have hit a chord with the group > members as well. We don't normally see so much activity within a > si

[DotNetDevelopment] Re: Reapeter

2009-03-18 Thread Vicky Joshi
Hi Vikas, You can probably try this. void showItem ( Object src, RepeaterCommandEventArgs e ) { items.Text = e.Item.ItemType.ToString ( ) + " " + e.Item.ItemIndex.ToString ( ) + ", " + ( ( LinkButton ) e.CommandSource ).Text + ""; } Regards Vignesh.R.Joshi On Tue, Mar 17, 2

[DotNetDevelopment] Re: importing excel into mssql

2009-03-18 Thread Vicky Joshi
You could buy some Books and start from there Regards Vignesh.R.Joshi On Tue, Mar 17, 2009 at 2:09 PM, aadi wrote: > > pls some one guide step by step to import or convert excel sheet data > into mssql database > thanks and regds > annadurai >

[DotNetDevelopment] Re: Reapeter

2009-03-18 Thread Vicky Joshi
Hi Vikas, Register ItemDataBound in Page Init Event.. override protected void OnInit(EventArgs e) { base.OnInit(e); rptData.ItemDataBound += new RepeaterItemEventHandler(rptchk_ItemDataBound); } LinkButton in Repeater: Show Regards Vignesh.R.Joshi On Wed, Mar 18, 2009 at 10:11 A