Click here to Skip to main content
15,916,945 members
Home / Discussions / C#
   

C#

 
AnswerRe: Problem in retreiving Methods of current class using Reflection Pin
Christian Graus7-Jun-07 1:50
protectorChristian Graus7-Jun-07 1:50 
AnswerRe: Problem in retreiving Methods of current class using Reflection Pin
leppie7-Jun-07 2:27
leppie7-Jun-07 2:27 
GeneralRe: Problem in retreiving Methods of current class using Reflection Pin
Brady Kelly7-Jun-07 3:19
Brady Kelly7-Jun-07 3:19 
AnswerRe: Problem in retreiving Methods of current class using Reflection Pin
szukuro7-Jun-07 4:20
szukuro7-Jun-07 4:20 
Questionquery: Oledb database and a BindingList Pin
sharp source7-Jun-07 1:29
sharp source7-Jun-07 1:29 
AnswerRe: query: Oledb database and a BindingList [modified] Pin
AikinX7-Jun-07 3:06
AikinX7-Jun-07 3:06 
GeneralRe: query: Oledb database and a BindingList Pin
sharp source7-Jun-07 3:35
sharp source7-Jun-07 3:35 
GeneralRe: query: Oledb database and a BindingList Pin
AikinX7-Jun-07 4:20
AikinX7-Jun-07 4:20 
>> And as you say, i need to limit the data getting.
Do you want to get a code with splitting by 1000 (for example) Ids?

>> So restricting the logic of data getting.
I meant "restructuring", sorry. So change the logic of the app. To group some ID into groups...
I need to see you task to give you more ideas.


>> How do i get the BindingList TableId into a table?
>>And after I have a dataset with the two tables... I gues i can figure that out.
No, you will have one table with full data in it.
But you will display only necessary information.
To do that you have to bind you table to DataGridView (for example) through BindingSource:
<br />
            BindingSource bs = new BindingSource(someDataSet, "SomeMember");<br />
            someDataGridView.DataSource = bs;<br />
<br />
<br />
<br />
            // then in an other place you can filter: Filter condition, like: <br />
            bs.Filter = "SomeColumn = 'id1' OR SomeColumn = 'id2' OR ..... ";<br />

Questioncreate dynamic text boxes Pin
tauras817-Jun-07 0:51
tauras817-Jun-07 0:51 
AnswerRe: create dynamic text boxes Pin
Sathesh Sakthivel7-Jun-07 1:01
Sathesh Sakthivel7-Jun-07 1:01 
AnswerRe: create dynamic text boxes [modified] Pin
Chintan.Desai7-Jun-07 1:41
Chintan.Desai7-Jun-07 1:41 
GeneralRe: create dynamic text boxes Pin
AikinX7-Jun-07 2:29
AikinX7-Jun-07 2:29 
AnswerRe: create dynamic text boxes Pin
AikinX7-Jun-07 2:24
AikinX7-Jun-07 2:24 
QuestionHello Is there is away to convert GraphicsPath to Image ? Pin
Epsilone37-Jun-07 0:36
Epsilone37-Jun-07 0:36 
AnswerRe: Hello Is there is away to convert GraphicsPath to Image ? Pin
szukuro7-Jun-07 1:50
szukuro7-Jun-07 1:50 
QuestionUSB Scanner and keyboard Pin
AmitG777-Jun-07 0:29
AmitG777-Jun-07 0:29 
AnswerRe: USB Scanner and keyboard Pin
Dave Kreskowiak7-Jun-07 4:25
mveDave Kreskowiak7-Jun-07 4:25 
QuestionSystem.EventHandler Pin
Muammar©7-Jun-07 0:17
Muammar©7-Jun-07 0:17 
AnswerRe: System.EventHandler Pin
szukuro7-Jun-07 1:38
szukuro7-Jun-07 1:38 
GeneralRe: System.EventHandler Pin
Muammar©7-Jun-07 3:23
Muammar©7-Jun-07 3:23 
QuestionFileMaker Processing Pin
M. J. Jaya Chitra7-Jun-07 0:16
M. J. Jaya Chitra7-Jun-07 0:16 
AnswerRe: FileMaker Processing Pin
Muammar©7-Jun-07 0:20
Muammar©7-Jun-07 0:20 
GeneralRe: FileMaker Processing Pin
M. J. Jaya Chitra7-Jun-07 0:28
M. J. Jaya Chitra7-Jun-07 0:28 
GeneralRe: FileMaker Processing Pin
M. J. Jaya Chitra7-Jun-07 0:50
M. J. Jaya Chitra7-Jun-07 0:50 
GeneralRe: FileMaker Processing Pin
Muammar©7-Jun-07 1:02
Muammar©7-Jun-07 1:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.