Click here to Skip to main content
15,895,606 members
Home / Discussions / C#
   

C#

 
AnswerRe: Saving Data on a Form Pin
AspDotNetDev17-Feb-10 18:33
protectorAspDotNetDev17-Feb-10 18:33 
GeneralRe: Saving Data on a Form Pin
thomas_anderson17-Feb-10 20:23
thomas_anderson17-Feb-10 20:23 
GeneralRe: Saving Data on a Form Pin
Richard MacCutchan17-Feb-10 21:46
mveRichard MacCutchan17-Feb-10 21:46 
GeneralRe: Saving Data on a Form Pin
thomas_anderson20-Feb-10 11:28
thomas_anderson20-Feb-10 11:28 
GeneralRe: Saving Data on a Form Pin
AspDotNetDev17-Feb-10 21:47
protectorAspDotNetDev17-Feb-10 21:47 
GeneralRe: Saving Data on a Form Pin
thomas_anderson20-Feb-10 11:29
thomas_anderson20-Feb-10 11:29 
QuestionReading from parallel port using c# Pin
A k ch17-Feb-10 17:41
A k ch17-Feb-10 17:41 
Questionplease forgive me for i know this is basic but i simply don't know how to add stuff a list like this Pin
tonyonlinux17-Feb-10 15:20
tonyonlinux17-Feb-10 15:20 
I'm wanting to add all the values i get from my for statements into a list of type string. I tried the following but i get a casting error Frown | :(
List<string> str = new List<string>();
            
            int rCount = 0;//row counter
            int cCount = 0;//column counter

            range = xlWorkSheet.UsedRange;

            for (rCount = 1; rCount <= range.Rows.Count; rCount++)
            {
                for (cCount = 1; cCount <= range.Columns.Count; cCount++)
                {
                    str = (List<string>)(range.Cells[rCount, cCount] as Excel.Range).Value2;
                    
                }
            }

one day I hope to not be the one asking the questions but the one answering them. Until then please forgive me for my basic questions Frown | :(
AnswerRe: please forgive me for i know this is basic but i simply don't know how to add stuff a list like this Pin
Dan Mos17-Feb-10 15:30
Dan Mos17-Feb-10 15:30 
GeneralRe: please forgive me for i know this is basic but i simply don't know how to add stuff a list like this Pin
tonyonlinux17-Feb-10 15:35
tonyonlinux17-Feb-10 15:35 
GeneralRe: please forgive me for i know this is basic but i simply don't know how to add stuff a list like this Pin
Dan Mos17-Feb-10 15:37
Dan Mos17-Feb-10 15:37 
GeneralRe: please forgive me for i know this is basic but i simply don't know how to add stuff a list like this Pin
tonyonlinux17-Feb-10 15:54
tonyonlinux17-Feb-10 15:54 
GeneralRe: please forgive me for i know this is basic but i simply don't know how to add stuff a list like this [modified] Pin
Dan Mos17-Feb-10 16:21
Dan Mos17-Feb-10 16:21 
GeneralRe: please forgive me for i know this is basic but i simply don't know how to add stuff a list like this Pin
tonyonlinux17-Feb-10 19:33
tonyonlinux17-Feb-10 19:33 
GeneralRe: please forgive me for i know this is basic but i simply don't know how to add stuff a list like this Pin
Dan Mos17-Feb-10 20:03
Dan Mos17-Feb-10 20:03 
GeneralRe: please forgive me for i know this is basic but i simply don't know how to add stuff a list like this Pin
tonyonlinux18-Feb-10 2:01
tonyonlinux18-Feb-10 2:01 
GeneralRe: please forgive me for i know this is basic but i simply don't know how to add stuff a list like this Pin
Dan Mos18-Feb-10 2:50
Dan Mos18-Feb-10 2:50 
GeneralRe: please forgive me for i know this is basic but i simply don't know how to add stuff a list like this Pin
tonyonlinux18-Feb-10 9:19
tonyonlinux18-Feb-10 9:19 
NewsBookStore GPLv3 Project Pin
User 691845417-Feb-10 14:22
User 691845417-Feb-10 14:22 
GeneralRe: BookStore GPLv3 Project Pin
Not Active17-Feb-10 14:50
mentorNot Active17-Feb-10 14:50 
GeneralRe: BookStore GPLv3 Project Pin
Mycroft Holmes17-Feb-10 17:15
professionalMycroft Holmes17-Feb-10 17:15 
GeneralRe: BookStore GPLv3 Project Pin
User 691845417-Feb-10 17:35
User 691845417-Feb-10 17:35 
GeneralRe: BookStore GPLv3 Project Pin
Anubhava Dimri17-Feb-10 17:37
Anubhava Dimri17-Feb-10 17:37 
Questioncustom pipeline - biztalk 2009 - how to loop through Ibasemessage.bodypart Pin
challa_praveena17-Feb-10 13:02
challa_praveena17-Feb-10 13:02 
AnswerRe: custom pipeline - biztalk 2009 - how to loop through Ibasemessage.bodypart Pin
Mirko198017-Feb-10 22:48
Mirko198017-Feb-10 22:48 

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.