blah blah blah is here! blah blah » Close

1
votes
1 answers

Creating a custom solution to link a new instance of a form to a DB?

I'm using VS2010 with .NET4 Hi all, I'm working on a program that spawns a childform for each row in a database at runtime. This required some custom solutions and prevented me from using the built-in database interactions. All of that ...

0
votes
1 answers

C# - Binding data on instance?

I have a small 'rolodex' program that opens a form for each person in my database at runtime (each person is a row in the db). I have that part working (thanks to some help from the lovely people here!), but I have a new problem. I am no lo ...

1
votes
1 answers

Copying instance variables to a new class

Suppose I have this class: [code]public class MyClass { public int ID; public string Name; private string Buffer; public string DontCopyThisData; public string GetIDAndName() { return ID.ToString() + ":" + ...

Feedback