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 ...

1
votes
1 answers

Saving Form Location to DB?

I am trying to save a form location to a database whenever the LocationChanged event is triggered on that form. [code] private void DisplayForm_LocationChanged(object sender, EventArgs e) { DSLocation = t ...

0
votes
1 answers

Unsure of the proper way to use Form.Location...

I am trying to pull coordinates for a form location out of a database and insert them into the Location property: [code] childForm.Location = new Point(/* coordinates go here */); [/code] I have tried doing a direct replacement with ...

1
votes
1 answers

I need a quick bit of help with DataAdapters...

I'm having a bit of trouble understanding DataAdapters and I was hoping for a quick bit of help. At runtime, I'd like Form1 to open a DisplayForm for each row in the database and have each of those DisplayForms be bound to the database and ...

Feedback