كيف امنع تقلص العنصر  gird  عند جلب البيانات من مستند
نصي حيث يحافظ على ابعاده كما تم اختيارها و يترك الخانات الشاغرة
شاغرة
					نصي حيث يحافظ على ابعاده كما تم اختيارها و يترك الخانات الشاغرة
شاغرة
result = Grid.GetCellText("Grid1", 1, 1);
result2 = Grid.GetCellText("Grid1", 1, 2);
totaal =result+result2
Grid.SetCellText("Grid1", 1, 3, ""..totaal.."", true);
X=Input.GetText("Input1");
result = Grid.GetCellText("Grid1", X, 1);
result2 = Grid.GetCellText("Grid1", X, 2);
totaal =result+result2
Grid.SetCellText("Grid1", X, 3, ""..totaal.."", true);
تعليق