Click here to Skip to main content
15,894,405 members
Home / Discussions / C#
   

C#

 
GeneralRe: Data Grid Pin
jaypatel5128-Mar-09 5:30
jaypatel5128-Mar-09 5:30 
AnswerRe: Data Grid Pin
jaypatel5128-Mar-09 5:31
jaypatel5128-Mar-09 5:31 
QuestionAbout Datetime format( I want Date) Pin
shavil5-Mar-09 19:44
shavil5-Mar-09 19:44 
AnswerRe: About Datetime format( I want Date) Pin
Mycroft Holmes5-Mar-09 20:05
professionalMycroft Holmes5-Mar-09 20:05 
AnswerRe: About Datetime format( I want Date) Pin
Dragonfly_Lee5-Mar-09 22:21
Dragonfly_Lee5-Mar-09 22:21 
RantRe: About Datetime format( I want Date) Pin
Smithers-Jones6-Mar-09 6:29
Smithers-Jones6-Mar-09 6:29 
QuestionProblem in creating ApplicationClass with ExcelObjectLibrary Pin
Ramkithepower5-Mar-09 19:10
Ramkithepower5-Mar-09 19:10 
AnswerRe: Problem in creating ApplicationClass with ExcelObjectLibrary Pin
Mycroft Holmes5-Mar-09 20:03
professionalMycroft Holmes5-Mar-09 20:03 
QuestionOpening a File with setting Focus to specific Line Number Pin
TheOneProgrammer5-Mar-09 18:58
TheOneProgrammer5-Mar-09 18:58 
Questionhow can we send an email over exchange server using C# Pin
anupmadathil5-Mar-09 17:58
anupmadathil5-Mar-09 17:58 
AnswerRe: how can we send an email over exchange server using C# Pin
Yusuf5-Mar-09 18:30
Yusuf5-Mar-09 18:30 
GeneralRe: how can we send an email over exchange server using C# Pin
anupmadathil5-Mar-09 21:32
anupmadathil5-Mar-09 21:32 
GeneralRe: how can we send an email over exchange server using C# Pin
Yusuf6-Mar-09 3:41
Yusuf6-Mar-09 3:41 
GeneralRe: how can we send an email over exchange server using C# Pin
kedarkarthik29-Dec-09 19:20
kedarkarthik29-Dec-09 19:20 
QuestionSelect free port automatically Pin
yesu prakash5-Mar-09 17:34
yesu prakash5-Mar-09 17:34 
AnswerRe: Select free port automatically Pin
ABitSmart5-Mar-09 18:58
ABitSmart5-Mar-09 18:58 
AnswerRe: Select free port automatically Pin
Bharat Jain5-Mar-09 19:48
Bharat Jain5-Mar-09 19:48 
Questioncomponents and verbs Pin
damichab5-Mar-09 16:39
damichab5-Mar-09 16:39 
AnswerRe: components and verbs Pin
0x3c06-Mar-09 2:13
0x3c06-Mar-09 2:13 
GeneralRe: components and verbs Pin
damichab6-Mar-09 12:40
damichab6-Mar-09 12:40 
Questionhow to open a form when click on custom property item in propertygridview. Pin
dilipmca045-Mar-09 16:33
dilipmca045-Mar-09 16:33 
AnswerRe: how to open a form when click on custom property item in propertygridview. Pin
Dragonfly_Lee5-Mar-09 17:55
Dragonfly_Lee5-Mar-09 17:55 
Questionhow to open a form when click on custom property item in propertygridview Pin
dilipmca045-Mar-09 16:29
dilipmca045-Mar-09 16:29 
Questionnested lists problem Pin
VitroBlue5-Mar-09 15:42
VitroBlue5-Mar-09 15:42 
hello
i have an assignment (don't run!) about a computer vision system for a robot.
My team and i are stuck on it, because this is the very first time in our lives we use c# (please, don't run!. We do have basic programming knowledge, tho, so we are not totally lost. The point is we need to manage the webcam images data in a list of list; we know it's possible to do this but we are not so sure of how.

List<PixelData> Shape = new List<PixelData>();
List<List<PixelData>> ShapeList = new List<List<PixelData>>();
ShapeList.Add(Shape);
Shape = ShapeList.IndexOf(List<PixelData>, 2);


(we are testing code, that's why it might not seem to make sense.)

as we track down a binary bitmap, we need to identify shapes and we will never know how many shapes are we going to find on each bitmap; so, as a start, we want the list of shapes, but each shape is actually a list of the pixels that build it up... (am i clear?)
the questions:
gt;do we need to give a name to every list of datapixels inside the mayor list? how do we do that?
gt;how do we retrieve each shape (list of datapixels from the main list) as a whole and then each shape data (datapixels from every list)?
gt;... does the little bit of code makes any sense at all Cry | :(( ?

please please help.
tnx

atte: my classteam and i
VB
AnswerRe: nested lists problem Pin
Christian Graus5-Mar-09 15:55
protectorChristian Graus5-Mar-09 15:55 

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.