DotNetNewsgroup.com  
web access to complete list of Microsoft.NET newsgroups
   home   |   control panel login   |   archive  |  
 
  carried group
academic
adonet
aspnet
aspnet.announcements
aspnet.buildingcontrols
aspnet.caching
aspnet.datagridcontrol
aspnet.mobile
aspnet.security
aspnet.webcontrols
aspnet.webservices
assignment_manager
datatools
dotnet.distributed_apps
dotnet.general
dotnet.myservices
dotnet.nternationalization
dotnet.scripting
dotnet.security
dotnet.vjsharp
dotnet.vsa
dotnet.xml
dotnetfaqs
framework
framework.clr
framework.compactframework
framework.component_services
framework.controls
framework.databinding
framework.drawing
framework.enhancements
framework.interop
framework.odbcnet
framework.performance
framework.remoting
framework.sdk
framework.setup
framework.webservices
framework.windowsforms
framework.wmi
frwk.windowsforms.designtime
lang.csharp
lang.jscript
lang.vb
lang.vb.controls
lang.vb.data
lang.vb.upgrade
lang.vc
lang.vc.libraries
  
 
start date: Wed, 8 Aug 2007 09:56:24 -0500,    posted on: microsoft.public.dotnet.framework.aspnet.buildingcontrols        back       

Thread Index
  1    Sergio E. gruporemp[ARROBA]hotmail.com
          2    Sergey Poberezovskiy
          3    Sergey Poberezovskiy
                 4    Sergio E. gruporemp[ARROBA]hotmail.com
                 5    Sergio E. gruporemp[ARROBA]hotmail.com
                 6    Sergey Poberezovskiy
                 7    Sergey Poberezovskiy
                        8    Sergio E. gruporemp[ARROBA]hotmail.com
                        9    Sergio E. gruporemp[ARROBA]hotmail.com


get data that fills a gridviewocontrol inside it (i'm extendig the gridview)   
Hi, I'm extending the gridview control and I need the data that fills it
because I need get a subset of the results to do an operation.

Thanks!

-- 
Greetings,
Sergio E.
DCE2005 - 2*


-- 
Saludos,
Sergio E.
DCE2005 - 2*
Date:Wed, 8 Aug 2007 09:56:24 -0500   Author:  

RE: get data that fills a gridviewocontrol inside it (i'm extendig the   
override DataSource method

"Sergio E." wrote:


> Hi, I'm extending the gridview control and I need the data that fills it
> because I need get a subset of the results to do an operation.
> 
> Thanks!
> 
> -- 
> Greetings,
> Sergio E.
> DCE2005 - 2*
> 
> 
> -- 
> Saludos,
> Sergio E.
> DCE2005 - 2*
> 
> 
> 
> 
Date:Wed, 8 Aug 2007 19:28:00 -0700   Author:  

RE: get data that fills a gridviewocontrol inside it (i'm extendig the   
override DataSource method

"Sergio E." wrote:


> Hi, I'm extending the gridview control and I need the data that fills it
> because I need get a subset of the results to do an operation.
> 
> Thanks!
> 
> -- 
> Greetings,
> Sergio E.
> DCE2005 - 2*
> 
> 
> -- 
> Saludos,
> Sergio E.
> DCE2005 - 2*
> 
> 
> 
> 
Date:Wed, 8 Aug 2007 19:28:00 -0700   Author:  

Re: get data that fills a gridviewocontrol inside it (i'm extendig the   
hi, thank you for the answer, but i found a little problem, there is no 
datasource method only a property, and I don't know how to manage it because 
i uses an object.

if you can clarify it for me i reallly apreciate it. thanks again
-- 
greeting,
Sergio E.
DCE2005 - 2*


"Sergey Poberezovskiy"  
escribi en el mensaje 
news:1EDAD394-BC90-4B75-B29D-A8E59CA7F20D@microsoft.com...

> override DataSource method
>
> "Sergio E." wrote:
>
>> Hi, I'm extending the gridview control and I need the data that fills it
>> because I need get a subset of the results to do an operation.
>>
>> Thanks!
>>
>> -- 
>> Greetings,
>> Sergio E.
>> DCE2005 - 2*
>>
>>
>> -- 
>> Saludos,
>> Sergio E.
>> DCE2005 - 2*
>>
>>
>>
>> 
Date:Thu, 9 Aug 2007 14:17:52 -0500   Author:  

Re: get data that fills a gridviewocontrol inside it (i'm extendig the   
hi, thank you for the answer, but i found a little problem, there is no 
datasource method only a property, and I don't know how to manage it because 
i uses an object.

if you can clarify it for me i reallly apreciate it. thanks again
-- 
greeting,
Sergio E.
DCE2005 - 2*


"Sergey Poberezovskiy"  
escribi en el mensaje 
news:1EDAD394-BC90-4B75-B29D-A8E59CA7F20D@microsoft.com...

> override DataSource method
>
> "Sergio E." wrote:
>
>> Hi, I'm extending the gridview control and I need the data that fills it
>> because I need get a subset of the results to do an operation.
>>
>> Thanks!
>>
>> -- 
>> Greetings,
>> Sergio E.
>> DCE2005 - 2*
>>
>>
>> -- 
>> Saludos,
>> Sergio E.
>> DCE2005 - 2*
>>
>>
>>
>> 
Date:Thu, 9 Aug 2007 14:17:52 -0500   Author:  

Re: get data that fills a gridviewocontrol inside it (i'm extendig   
My bad: - sure it is a property. But you can still override it:

public override object DataSource
{
	get { return base.DataSource; }
	set
	{
		//	you can put some validating code here
		base.DataSource = value;
	}
}


"Sergio E." wrote:


> hi, thank you for the answer, but i found a little problem, there is no 
> datasource method only a property, and I don't know how to manage it because 
> i uses an object.
> 
> if you can clarify it for me i reallly apreciate it. thanks again
> -- 
> greeting,
> Sergio E.
> DCE2005 - 2*
> 
> 
> "Sergey Poberezovskiy"  
> escribió en el mensaje 
> news:1EDAD394-BC90-4B75-B29D-A8E59CA7F20D@microsoft.com...
> > override DataSource method
> >
> > "Sergio E." wrote:
> >
> >> Hi, I'm extending the gridview control and I need the data that fills it
> >> because I need get a subset of the results to do an operation.
> >>
> >> Thanks!
> >>
> >> -- 
> >> Greetings,
> >> Sergio E.
> >> DCE2005 - 2*
> >>
> >>
> >> -- 
> >> Saludos,
> >> Sergio E.
> >> DCE2005 - 2*
> >>
> >>
> >>
> >> 
> 
> 
> 
Date:Thu, 9 Aug 2007 16:30:09 -0700   Author:  

Re: get data that fills a gridviewocontrol inside it (i'm extendig   
My bad: - sure it is a property. But you can still override it:

public override object DataSource
{
	get { return base.DataSource; }
	set
	{
		//	you can put some validating code here
		base.DataSource = value;
	}
}


"Sergio E." wrote:


> hi, thank you for the answer, but i found a little problem, there is no 
> datasource method only a property, and I don't know how to manage it because 
> i uses an object.
> 
> if you can clarify it for me i reallly apreciate it. thanks again
> -- 
> greeting,
> Sergio E.
> DCE2005 - 2*
> 
> 
> "Sergey Poberezovskiy"  
> escribió en el mensaje 
> news:1EDAD394-BC90-4B75-B29D-A8E59CA7F20D@microsoft.com...
> > override DataSource method
> >
> > "Sergio E." wrote:
> >
> >> Hi, I'm extending the gridview control and I need the data that fills it
> >> because I need get a subset of the results to do an operation.
> >>
> >> Thanks!
> >>
> >> -- 
> >> Greetings,
> >> Sergio E.
> >> DCE2005 - 2*
> >>
> >>
> >> -- 
> >> Saludos,
> >> Sergio E.
> >> DCE2005 - 2*
> >>
> >>
> >>
> >> 
> 
> 
> 
Date:Thu, 9 Aug 2007 16:30:09 -0700   Author:  

Re: get data that fills a gridviewocontrol inside it (i'm extendig   
thank you!

-- 
Saludos,
Sergio E.
DCE2005 - 2*


"Sergey Poberezovskiy"  
escribi en el mensaje 
news:2FDC5B19-7278-44E3-9B2C-61DBBC6C7B94@microsoft.com...

> My bad: - sure it is a property. But you can still override it:
>
> public override object DataSource
> {
> get { return base.DataSource; }
> set
> {
> // you can put some validating code here
> base.DataSource = value;
> }
> }
>
>
> "Sergio E." wrote:
>
>> hi, thank you for the answer, but i found a little problem, there is no
>> datasource method only a property, and I don't know how to manage it 
>> because
>> i uses an object.
>>
>> if you can clarify it for me i reallly apreciate it. thanks again
>> -- 
>> greeting,
>> Sergio E.
>> DCE2005 - 2*
>>
>>
>> "Sergey Poberezovskiy" 
>> escribi en el mensaje
>> news:1EDAD394-BC90-4B75-B29D-A8E59CA7F20D@microsoft.com...
>> > override DataSource method
>> >
>> > "Sergio E." wrote:
>> >
>> >> Hi, I'm extending the gridview control and I need the data that fills 
>> >> it
>> >> because I need get a subset of the results to do an operation.
>> >>
>> >> Thanks!
>> >>
>> >> -- 
>> >> Greetings,
>> >> Sergio E.
>> >> DCE2005 - 2*
>> >>
>> >>
>> >> -- 
>> >> Saludos,
>> >> Sergio E.
>> >> DCE2005 - 2*
>> >>
>> >>
>> >>
>> >>
>>
>>
>> 
Date:Fri, 10 Aug 2007 07:12:22 -0500   Author:  

Re: get data that fills a gridviewocontrol inside it (i'm extendig   
thank you!

-- 
Saludos,
Sergio E.
DCE2005 - 2*


"Sergey Poberezovskiy"  
escribi en el mensaje 
news:2FDC5B19-7278-44E3-9B2C-61DBBC6C7B94@microsoft.com...

> My bad: - sure it is a property. But you can still override it:
>
> public override object DataSource
> {
> get { return base.DataSource; }
> set
> {
> // you can put some validating code here
> base.DataSource = value;
> }
> }
>
>
> "Sergio E." wrote:
>
>> hi, thank you for the answer, but i found a little problem, there is no
>> datasource method only a property, and I don't know how to manage it 
>> because
>> i uses an object.
>>
>> if you can clarify it for me i reallly apreciate it. thanks again
>> -- 
>> greeting,
>> Sergio E.
>> DCE2005 - 2*
>>
>>
>> "Sergey Poberezovskiy" 
>> escribi en el mensaje
>> news:1EDAD394-BC90-4B75-B29D-A8E59CA7F20D@microsoft.com...
>> > override DataSource method
>> >
>> > "Sergio E." wrote:
>> >
>> >> Hi, I'm extending the gridview control and I need the data that fills 
>> >> it
>> >> because I need get a subset of the results to do an operation.
>> >>
>> >> Thanks!
>> >>
>> >> -- 
>> >> Greetings,
>> >> Sergio E.
>> >> DCE2005 - 2*
>> >>
>> >>
>> >> -- 
>> >> Saludos,
>> >> Sergio E.
>> >> DCE2005 - 2*
>> >>
>> >>
>> >>
>> >>
>>
>>
>> 
Date:Fri, 10 Aug 2007 07:12:22 -0500   Author:  

Google
 
Web dotnetnewsgroup.com


COPYRIGHT ?2005, EUROFRONT WORLDWIDE LTD., ALL RIGHT RESERVE  |   Contact us