So this is a program that simulates the game ChainFactor (www.chainfactor.com) and as much as I'd like to, I can't seem to get it working.
The problem is that after the first run, the controls don't always overlap and disappear as I would like:
for (int w = 1; w <= k; w++)
{
Format.tabla[solw[w], solq[w]].Visible = false;
Format.tabla[solw[w], solq[w]] = null;
Format.tabla[solw[w], solq[w]] = new Disk();
Format.tabla[solw[w], solq[w]].Visible = true;
Controls.Add(Format.tabla[solw[w], solq[w]]);
for (int q = solw[w] - 1; q > 7-nrc[solq[w]]; q--)
{
Format.tabla[q + 1, solq[w]].number = Format.tabla[q,solq[w]].number;
Format.tabla[q + 1, solq[w]].Image = Format.tabla[q, solq[w]].Image;
Point P = new Point();
P = Format.tabla[q , solq[w]].Location;
// MessageBox.Show(Format.tabla[q, solq[w]].number.ToString());
// MessageBox.Show(Format.tabla[q+1, solq[w]].number.ToString());
for (int i = 0; i < 92; i++)
{
P.Y++;
Format.tabla[q, solq[w]].Location = P;
Format.tabla[q, solq[w]].BringToFront();
Format.tabla[q, solq[w]].Refresh();
}
Format.tabla[q + 1, solq[w]].Location = Format.tabla[q, solq[w]].Location;
Format.tabla[q, solq[w]] = null;
Format.tabla[q, solq[w]] = new Disk();
Format.tabla[q, solq[w]].Visible = false;
Format.tabla[q+1, solq[w]].Visible = true;
Controls.Add(Format.tabla[q+1, solq[w]]);
Format.tabla[q + 1, solq[w]].BringToFront();
}
nrc[solq[w]]--;
for (int z = w + 1; z <= k; z++)
{
if (solq[w] == solq[z])
{
if(solw[z]!=7 && solw[z] < solw[w])
solw[z]++;
}
}
So I have basically tried to find the control that disappears (in solw - line of the control, solq -column of the control) and then drag all its column down with one position.
After the first time I use one column, the next time I try to put a disk that would make any other disk from the same column dissapear are simply staying on the screen, even though I get their visibility set to false.
UPDATE: After a few changes the only problem that I have is that disks overlap when there are bound to disappear two or more. I get half of the upper disk and half of the bottom disk. (I think that the roots of the problem is still the one that the control does not disappear as it should)
Refresh()constantly. – Ed S. Apr 16 '12 at 22:09Diskis. Also, names likew,k,solq,nrc, andzmake your code very hard to understand. – Dour High Arch Apr 17 '12 at 0:31