blah blah blah is here! blah blah » Close

0
votes
1 answers

Accessing array from multiple threads

Let's say I have two arrays: int[] array1 = new int[2000000]; int[] array2 = new int[2000000]; I stick some values into the arrays and then want to add the contents of array2 to array1 like so: for(int i = 0; i < 2000000; ++i) ...

0
votes
1 answers

Transaction Debit Credit in C# WinForm Ms Access

please tell how to Data calculate Debit Credit in WinForm C# database Ms Access.

0
votes
1 answers

Nobody knows DataGridView.

I created a DGV and linked it with an mdb file, but I don't know what I should be doing to identify the changed cells? Bcoz I need to update the mdb file when the DGV cell is changed in the winForm. I've been reading thru http://msdn.micro ...

0
votes
0 answers

add new columns in Access

i want to add columns to Access database if anyone know how to do that please give me the code .

0
votes
2 answers

Accessing variables from different classes in Windows Application

Hi, I have a Windows Application which contains quite a few classes and code files. Now, I want to access a variable to display it on the form. How can I do it. The variable is declared in a public function called doTestEnc() in th ...

1
votes
3 answers

saving images in microsoft access db

Arek
15

Hello All, I've created an Inventory database, and now I've been asked to add images. The Inventory application is written in C#.net and I'm using an Access database. My problem is, that I don't know how to accomplish this. Can so ...

Feedback