Click here to Skip to main content
15,892,575 members
Home / Discussions / C#
   

C#

 
GeneralRe: treenodecollection nodes not working as expected with created class Pin
tonyonlinux18-Feb-10 13:18
tonyonlinux18-Feb-10 13:18 
GeneralRe: treenodecollection nodes not working as expected with created class Pin
Dan Mos18-Feb-10 13:34
Dan Mos18-Feb-10 13:34 
GeneralRe: treenodecollection nodes not working as expected with created class Pin
tonyonlinux19-Feb-10 17:00
tonyonlinux19-Feb-10 17:00 
QuestionHow to set a property in a collection based on the join? Pin
sri_346417-Feb-10 20:04
sri_346417-Feb-10 20:04 
AnswerRe: How to set a property in a collection based on the join? Pin
Dan Mos17-Feb-10 20:36
Dan Mos17-Feb-10 20:36 
QuestionSaving Data on a Form Pin
thomas_anderson17-Feb-10 18:00
thomas_anderson17-Feb-10 18:00 
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 
in my parent form i created an array string with values. i passed that array to the child form's constructor. then i created instance array in the child form and i set that equal to the array passed from the constructor so i can use it. i used it to display the passed string value in my combo box. i also created a public string variable. then on button click i set the public string variable equal to the newly selected item from combo box. i go back to my parent form and my code looks something like this:

private void updateProductInfo_Click(object sender, EventArgs e)
{
productStatus = false;
ProductForm pFTwo = new ProductForm(this, category);
pFTwo.Show();
if (pFTwo.updateStatus == true)
{
category[pFTwo.aProductCategoryIndex] = pFTwo.aProductCategory;
}
}

as u can see my public variables from my child form is "aProductCategory". but nothing is happening when i reopen my child form. the combo box value is still the same
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 
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 

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.