"Продвинутое" заполнение шаблона word - C#

Узнай цену своей работы

Формулировка задачи:

Ну, сразу к делу: Существует шаблон Word с закладками и поля в программке, из которых нужно брать инфу. Если поле пустое - это пустое значение переписывается в Word: Пример 1. Текст текст 234 1234 342 3124 2. _ _ _ _ _ _ _(это пустые места, показал для наглядности "_") 3. Текст текст 123 1234 54 1234 Шаблон заполняется вот так:
Листинг программы
  1. int[] a;
  2. a = new int[30];
  3. for (int i = 0; i < 30; i++)
  4. {
  5. a[i] = 0;
  6. }
  7. #region 1
  8. if (Quantity_1.Text != "0" && Weight_1.Text != "0" && cB1.Checked == true)
  9. {
  10. oDoc.Bookmarks["Type1"].Range.Text = Element_type_dropdown_1.Text;
  11. oDoc.Bookmarks["Size1"].Range.Text = Element_dimension_type_dropdown_1.Text;
  12. oDoc.Bookmarks["Quantity1"].Range.Text = Quantity_1.Text;
  13. oDoc.Bookmarks["WeightPiece1"].Range.Text = Weight_for_piece_1.Text;
  14. oDoc.Bookmarks["Weight1"].Range.Text = Weight_1.Text;
  15. oDoc.Bookmarks["Rate1"].Range.Text = Rate_1.Text;
  16. oDoc.Bookmarks["Area1"].Range.Text = Area_1.Text;
  17. a[1] = 1;
  18. }
  19. #endregion
  20. #region 2
  21. if (Quantity_2.Text != "0" && Weight_2.Text != "0" && cB2.Checked == true)
  22. {
  23. if (a[1] != 1)
  24. {
  25. oDoc.Bookmarks["Type1"].Range.Text = Element_type_dropdown_2.Text;
  26. oDoc.Bookmarks["Size1"].Range.Text = Element_dimension_type_dropdown_2.Text;
  27. oDoc.Bookmarks["Quantity1"].Range.Text = Quantity_2.Text;
  28. oDoc.Bookmarks["WeightPiece1"].Range.Text = Weight_for_piece_2.Text;
  29. oDoc.Bookmarks["Weight1"].Range.Text = Weight_2.Text;
  30. oDoc.Bookmarks["Rate1"].Range.Text = Rate_2.Text;
  31. oDoc.Bookmarks["Area1"].Range.Text = Area_2.Text;
  32. a[1] = 2;
  33. }
  34. else
  35. {
  36. oDoc.Bookmarks["Type2"].Range.Text = Element_type_dropdown_2.Text;
  37. oDoc.Bookmarks["Size2"].Range.Text = Element_dimension_type_dropdown_2.Text;
  38. oDoc.Bookmarks["Quantity2"].Range.Text = Quantity_2.Text;
  39. oDoc.Bookmarks["WeightPiece2"].Range.Text = Weight_for_piece_2.Text;
  40. oDoc.Bookmarks["Weight2"].Range.Text = Weight_2.Text;
  41. oDoc.Bookmarks["Rate2"].Range.Text = Rate_2.Text;
  42. oDoc.Bookmarks["Area2"].Range.Text = Area_2.Text;
  43. a[2] = 2;
  44. }
  45. }
  46. #endregion
  47. #region 3
  48. if (Quantity_3.Text != "0" && Weight_3.Text != "0" && cB3.Checked == true)
  49. {
  50. if (a[1] != 1 && a[1] != 2)
  51. {
  52. oDoc.Bookmarks["Type1"].Range.Text = Element_type_dropdown_3.Text;
  53. oDoc.Bookmarks["Size1"].Range.Text = Element_dimension_type_dropdown_3.Text;
  54. oDoc.Bookmarks["Quantity1"].Range.Text = Quantity_3.Text;
  55. oDoc.Bookmarks["WeightPiece1"].Range.Text = Weight_for_piece_3.Text;
  56. oDoc.Bookmarks["Weight1"].Range.Text = Weight_3.Text;
  57. oDoc.Bookmarks["Rate1"].Range.Text = Rate_3.Text;
  58. oDoc.Bookmarks["Area1"].Range.Text = Area_3.Text;
  59. }
  60. else if (a[2] != 2)
  61. {
  62. oDoc.Bookmarks["Type2"].Range.Text = Element_type_dropdown_3.Text;
  63. oDoc.Bookmarks["Size2"].Range.Text = Element_dimension_type_dropdown_3.Text;
  64. oDoc.Bookmarks["Quantity2"].Range.Text = Quantity_3.Text;
  65. oDoc.Bookmarks["WeightPiece2"].Range.Text = Weight_for_piece_3.Text;
  66. oDoc.Bookmarks["Weight2"].Range.Text = Weight_3.Text;
  67. oDoc.Bookmarks["Rate2"].Range.Text = Rate_3.Text;
  68. oDoc.Bookmarks["Area2"].Range.Text = Area_3.Text;
  69. }
  70. else
  71. {
  72. oDoc.Bookmarks["Type3"].Range.Text = Element_type_dropdown_3.Text;
  73. oDoc.Bookmarks["Size3"].Range.Text = Element_dimension_type_dropdown_3.Text;
  74. oDoc.Bookmarks["Quantity3"].Range.Text = Quantity_3.Text;
  75. oDoc.Bookmarks["WeightPiece3"].Range.Text = Weight_for_piece_3.Text;
  76. oDoc.Bookmarks["Weight3"].Range.Text = Weight_3.Text;
  77. oDoc.Bookmarks["Rate3"].Range.Text = Rate_3.Text;
  78. oDoc.Bookmarks["Area3"].Range.Text = Area_3.Text;
  79. }
  80. }
  81. #endregion
  82. if (Quantity_4.Text != "0" && Weight_4.Text != "0" && cB4.Checked == true)
  83. {
  84. oDoc.Bookmarks["Type4"].Range.Text = Element_type_dropdown_4.Text;
  85. oDoc.Bookmarks["Size4"].Range.Text = Element_dimension_type_dropdown_4.Text;
  86. oDoc.Bookmarks["Quantity4"].Range.Text = Quantity_4.Text;
  87. oDoc.Bookmarks["WeightPiece4"].Range.Text = Weight_for_piece_4.Text;
  88. oDoc.Bookmarks["Weight4"].Range.Text = Weight_4.Text;
  89. oDoc.Bookmarks["Rate4"].Range.Text = Rate_4.Text;
  90. oDoc.Bookmarks["Area4"].Range.Text = Area_4.Text;
  91. }
  92. if (Quantity_5.Text != "0" && Weight_5.Text != "0" && cB5.Checked == true)
  93. {
  94. oDoc.Bookmarks["Type5"].Range.Text = Element_type_dropdown_5.Text;
  95. oDoc.Bookmarks["Size5"].Range.Text = Element_dimension_type_dropdown_5.Text;
  96. oDoc.Bookmarks["Quantity5"].Range.Text = Quantity_5.Text;
  97. oDoc.Bookmarks["WeightPiece5"].Range.Text = Weight_for_piece_5.Text;
  98. oDoc.Bookmarks["Weight5"].Range.Text = Weight_5.Text;
  99. oDoc.Bookmarks["Rate5"].Range.Text = Rate_5.Text;
  100. oDoc.Bookmarks["Area5"].Range.Text = Area_5.Text;
  101. }
  102. if (Quantity_6.Text != "0" && Weight_6.Text != "0" && cB6.Checked == true)
  103. {
  104. oDoc.Bookmarks["Type6"].Range.Text = Element_type_dropdown_6.Text;
  105. oDoc.Bookmarks["Size6"].Range.Text = Element_dimension_type_dropdown_6.Text;
  106. oDoc.Bookmarks["Quantity6"].Range.Text = Quantity_6.Text;
  107. oDoc.Bookmarks["WeightPiece6"].Range.Text = Weight_for_piece_6.Text;
  108. oDoc.Bookmarks["Weight6"].Range.Text = Weight_6.Text;
  109. oDoc.Bookmarks["Rate6"].Range.Text = Rate_6.Text;
  110. oDoc.Bookmarks["Area6"].Range.Text = Area_6.Text;
  111. }
  112. if (Quantity_7.Text != "0" && Weight_7.Text != "0" && cB7.Checked == true)
  113. {
  114. oDoc.Bookmarks["Type7"].Range.Text = Element_type_dropdown_7.Text;
  115. oDoc.Bookmarks["Size7"].Range.Text = Element_dimension_type_dropdown_7.Text;
  116. oDoc.Bookmarks["Quantity7"].Range.Text = Quantity_7.Text;
  117. oDoc.Bookmarks["WeightPiece7"].Range.Text = Weight_for_piece_7.Text;
  118. oDoc.Bookmarks["Weight7"].Range.Text = Weight_7.Text;
  119. oDoc.Bookmarks["Rate7"].Range.Text = Rate_7.Text;
  120. oDoc.Bookmarks["Area7"].Range.Text = Area_7.Text;
  121. }
  122. if (Quantity_8.Text != "0" && Weight_8.Text != "0" && cB8.Checked == true)
  123. {
  124. oDoc.Bookmarks["Type8"].Range.Text = Element_type_dropdown_8.Text;
  125. oDoc.Bookmarks["Size8"].Range.Text = Element_dimension_type_dropdown_8.Text;
  126. oDoc.Bookmarks["Quantity8"].Range.Text = Quantity_8.Text;
  127. oDoc.Bookmarks["WeightPiece8"].Range.Text = Weight_for_piece_8.Text;
  128. oDoc.Bookmarks["Weight8"].Range.Text = Weight_8.Text;
  129. oDoc.Bookmarks["Rate8"].Range.Text = Rate_8.Text;
  130. oDoc.Bookmarks["Area8"].Range.Text = Area_8.Text;
  131. }
  132. if (Quantity_9.Text != "0" && Weight_9.Text != "0" && cB9.Checked == true)
  133. {
  134. oDoc.Bookmarks["Type9"].Range.Text = Element_type_dropdown_9.Text;
  135. oDoc.Bookmarks["Size9"].Range.Text = Element_dimension_type_dropdown_9.Text;
  136. oDoc.Bookmarks["Quantity9"].Range.Text = Quantity_9.Text;
  137. oDoc.Bookmarks["WeightPiece9"].Range.Text = Weight_for_piece_9.Text;
  138. oDoc.Bookmarks["Weight9"].Range.Text = Weight_9.Text;
  139. oDoc.Bookmarks["Rate9"].Range.Text = Rate_9.Text;
  140. oDoc.Bookmarks["Area9"].Range.Text = Area_9.Text;
  141. }
  142. if (Quantity_10.Text != "0" && Weight_10.Text != "0" && cB10.Checked == true)
  143. {
  144. oDoc.Bookmarks["Type10"].Range.Text = Element_type_dropdown_10.Text;
  145. oDoc.Bookmarks["Size10"].Range.Text = Element_dimension_type_dropdown_10.Text;
  146. oDoc.Bookmarks["Quantity10"].Range.Text = Quantity_10.Text;
  147. oDoc.Bookmarks["WeightPiece10"].Range.Text = Weight_for_piece_10.Text;
  148. oDoc.Bookmarks["Weight10"].Range.Text = Weight_10.Text;
  149. oDoc.Bookmarks["Rate10"].Range.Text = Rate_10.Text;
  150. oDoc.Bookmarks["Area10"].Range.Text = Area_10.Text;
  151. }
  152. if (Quantity_11.Text != "0" && Weight_11.Text != "0" && cB11.Checked == true)
  153. {
  154. oDoc.Bookmarks["Type11"].Range.Text = Element_type_dropdown_11.Text;
  155. oDoc.Bookmarks["Size11"].Range.Text = Element_dimension_type_dropdown_11.Text;
  156. oDoc.Bookmarks["Quantity11"].Range.Text = Quantity_11.Text;
  157. oDoc.Bookmarks["WeightPiece11"].Range.Text = Weight_for_piece_11.Text;
  158. oDoc.Bookmarks["Weight11"].Range.Text = Weight_11.Text;
  159. oDoc.Bookmarks["Rate11"].Range.Text = Rate_11.Text;
  160. oDoc.Bookmarks["Area11"].Range.Text = Area_11.Text;
  161. }
  162. if (Quantity_12.Text != "0" && Weight_12.Text != "0" && cB12.Checked == true)
  163. {
  164. oDoc.Bookmarks["Type12"].Range.Text = Element_type_dropdown_12.Text;
  165. oDoc.Bookmarks["Size12"].Range.Text = Element_dimension_type_dropdown_12.Text;
  166. oDoc.Bookmarks["Quantity12"].Range.Text = Quantity_12.Text;
  167. oDoc.Bookmarks["WeightPiece12"].Range.Text = Weight_for_piece_12.Text;
  168. oDoc.Bookmarks["Weight12"].Range.Text = Weight_12.Text;
  169. oDoc.Bookmarks["Rate12"].Range.Text = Rate_12.Text;
  170. oDoc.Bookmarks["Area12"].Range.Text = Area_12.Text;
  171. }
  172. if (Quantity_13.Text != "0" && Weight_13.Text != "0" && cB13.Checked == true)
  173. {
  174. oDoc.Bookmarks["Type13"].Range.Text = Element_type_dropdown_13.Text;
  175. oDoc.Bookmarks["Size13"].Range.Text = Element_dimension_type_dropdown_13.Text;
  176. oDoc.Bookmarks["Quantity13"].Range.Text = Quantity_13.Text;
  177. oDoc.Bookmarks["WeightPiece13"].Range.Text = Weight_for_piece_13.Text;
  178. oDoc.Bookmarks["Weight13"].Range.Text = Weight_13.Text;
  179. oDoc.Bookmarks["Rate13"].Range.Text = Rate_13.Text;
  180. oDoc.Bookmarks["Area13"].Range.Text = Area_13.Text;
  181. }
  182. if (Quantity_14.Text != "0" && Weight_14.Text != "0" && cB14.Checked == true)
  183. {
  184. oDoc.Bookmarks["Type14"].Range.Text = Element_type_dropdown_14.Text;
  185. oDoc.Bookmarks["Size14"].Range.Text = Element_dimension_type_dropdown_14.Text;
  186. oDoc.Bookmarks["Quantity14"].Range.Text = Quantity_14.Text;
  187. oDoc.Bookmarks["WeightPiece14"].Range.Text = Weight_for_piece_14.Text;
  188. oDoc.Bookmarks["Weight14"].Range.Text = Weight_14.Text;
  189. oDoc.Bookmarks["Rate14"].Range.Text = Rate_14.Text;
  190. oDoc.Bookmarks["Area14"].Range.Text = Area_14.Text;
  191. }
  192. if (Quantity_15.Text != "0" && Weight_15.Text != "0" && cB15.Checked == true)
  193. {
  194. oDoc.Bookmarks["Type15"].Range.Text = Element_type_dropdown_15.Text;
  195. oDoc.Bookmarks["Size15"].Range.Text = Element_dimension_type_dropdown_15.Text;
  196. oDoc.Bookmarks["Quantity15"].Range.Text = Quantity_15.Text;
  197. oDoc.Bookmarks["WeightPiece15"].Range.Text = Weight_for_piece_15.Text;
  198. oDoc.Bookmarks["Weight15"].Range.Text = Weight_15.Text;
  199. oDoc.Bookmarks["Rate15"].Range.Text = Rate_15.Text;
  200. oDoc.Bookmarks["Area15"].Range.Text = Area_15.Text;
  201. }
  202. if (Quantity_16.Text != "0" && Weight_16.Text != "0" && cB16.Checked == true)
  203. {
  204. oDoc.Bookmarks["Type16"].Range.Text = Element_type_dropdown_16.Text;
  205. oDoc.Bookmarks["Size16"].Range.Text = Element_dimension_type_dropdown_16.Text;
  206. oDoc.Bookmarks["Quantity16"].Range.Text = Quantity_16.Text;
  207. oDoc.Bookmarks["WeightPiece16"].Range.Text = Weight_for_piece_16.Text;
  208. oDoc.Bookmarks["Weight16"].Range.Text = Weight_16.Text;
  209. oDoc.Bookmarks["Rate16"].Range.Text = Rate_16.Text;
  210. oDoc.Bookmarks["Area16"].Range.Text = Area_16.Text;
  211. }
  212. if (Quantity_17.Text != "0" && Weight_17.Text != "0" && cB17.Checked == true)
  213. {
  214. oDoc.Bookmarks["Type17"].Range.Text = Element_type_dropdown_17.Text;
  215. oDoc.Bookmarks["Size17"].Range.Text = Element_dimension_type_dropdown_17.Text;
  216. oDoc.Bookmarks["Quantity17"].Range.Text = Quantity_17.Text;
  217. oDoc.Bookmarks["WeightPiece17"].Range.Text = Weight_for_piece_17.Text;
  218. oDoc.Bookmarks["Weight17"].Range.Text = Weight_17.Text;
  219. oDoc.Bookmarks["Rate17"].Range.Text = Rate_17.Text;
  220. oDoc.Bookmarks["Area17"].Range.Text = Area_17.Text;
  221. }
  222. if (Quantity_18.Text != "0" && Weight_18.Text != "0" && cB18.Checked == true)
  223. {
  224. oDoc.Bookmarks["Type18"].Range.Text = Element_type_dropdown_18.Text;
  225. oDoc.Bookmarks["Size18"].Range.Text = Element_dimension_type_dropdown_18.Text;
  226. oDoc.Bookmarks["Quantity18"].Range.Text = Quantity_18.Text;
  227. oDoc.Bookmarks["WeightPiece18"].Range.Text = Weight_for_piece_18.Text;
  228. oDoc.Bookmarks["Weight18"].Range.Text = Weight_18.Text;
  229. oDoc.Bookmarks["Rate18"].Range.Text = Rate_18.Text;
  230. oDoc.Bookmarks["Area18"].Range.Text = Area_18.Text;
  231. }
  232. if (Quantity_19.Text != "0" && Weight_19.Text != "0" && cB19.Checked == true)
  233. {
  234. oDoc.Bookmarks["Type19"].Range.Text = Element_type_dropdown_19.Text;
  235. oDoc.Bookmarks["Size19"].Range.Text = Element_dimension_type_dropdown_19.Text;
  236. oDoc.Bookmarks["Quantity19"].Range.Text = Quantity_19.Text;
  237. oDoc.Bookmarks["WeightPiece19"].Range.Text = Weight_for_piece_19.Text;
  238. oDoc.Bookmarks["Weight19"].Range.Text = Weight_19.Text;
  239. oDoc.Bookmarks["Rate19"].Range.Text = Rate_19.Text;
  240. oDoc.Bookmarks["Area19"].Range.Text = Area_19.Text;
  241. }
  242. if (Quantity_20.Text != "0" && Weight_20.Text != "0" && cB20.Checked == true)
  243. {
  244. oDoc.Bookmarks["Type20"].Range.Text = Element_type_dropdown_20.Text;
  245. oDoc.Bookmarks["Size20"].Range.Text = Element_dimension_type_dropdown_20.Text;
  246. oDoc.Bookmarks["Quantity20"].Range.Text = Quantity_20.Text;
  247. oDoc.Bookmarks["WeightPiece20"].Range.Text = Weight_for_piece_20.Text;
  248. oDoc.Bookmarks["Weight20"].Range.Text = Weight_20.Text;
  249. oDoc.Bookmarks["Rate20"].Range.Text = Rate_20.Text;
  250. oDoc.Bookmarks["Area20"].Range.Text = Area_20.Text;
  251. }
  252. if (Quantity_21.Text != "0" && Weight_21.Text != "0" && cB21.Checked == true)
  253. {
  254. oDoc.Bookmarks["Type21"].Range.Text = Element_type_dropdown_21.Text;
  255. oDoc.Bookmarks["Size21"].Range.Text = Element_dimension_type_dropdown_21.Text;
  256. oDoc.Bookmarks["Quantity21"].Range.Text = Quantity_21.Text;
  257. oDoc.Bookmarks["WeightPiece21"].Range.Text = Weight_for_piece_21.Text;
  258. oDoc.Bookmarks["Weight21"].Range.Text = Weight_21.Text;
  259. oDoc.Bookmarks["Rate21"].Range.Text = Rate_21.Text;
  260. oDoc.Bookmarks["Area21"].Range.Text = Area_21.Text;
  261. }
  262. if (Quantity_22.Text != "0" && Weight_22.Text != "0" && cB22.Checked == true)
  263. {
  264. oDoc.Bookmarks["Type22"].Range.Text = Element_type_dropdown_22.Text;
  265. oDoc.Bookmarks["Size22"].Range.Text = Element_dimension_type_dropdown_22.Text;
  266. oDoc.Bookmarks["Quantity22"].Range.Text = Quantity_22.Text;
  267. oDoc.Bookmarks["WeightPiece22"].Range.Text = Weight_for_piece_22.Text;
  268. oDoc.Bookmarks["Weight22"].Range.Text = Weight_22.Text;
  269. oDoc.Bookmarks["Rate22"].Range.Text = Rate_22.Text;
  270. oDoc.Bookmarks["Area22"].Range.Text = Area_22.Text;
  271. }
  272. if (Quantity_23.Text != "0" && Weight_23.Text != "0" && cB23.Checked == true)
  273. {
  274. oDoc.Bookmarks["Type23"].Range.Text = Element_type_dropdown_23.Text;
  275. oDoc.Bookmarks["Size23"].Range.Text = Element_dimension_type_dropdown_23.Text;
  276. oDoc.Bookmarks["Quantity23"].Range.Text = Quantity_23.Text;
  277. oDoc.Bookmarks["WeightPiece23"].Range.Text = Weight_for_piece_23.Text;
  278. oDoc.Bookmarks["Weight23"].Range.Text = Weight_23.Text;
  279. oDoc.Bookmarks["Rate23"].Range.Text = Rate_23.Text;
  280. oDoc.Bookmarks["Area23"].Range.Text = Area_23.Text;
  281. }
  282. if (Quantity_24.Text != "0" && Weight_24.Text != "0" && cB24.Checked == true)
  283. {
  284. oDoc.Bookmarks["Type24"].Range.Text = Element_type_dropdown_24.Text;
  285. oDoc.Bookmarks["Size24"].Range.Text = Element_dimension_type_dropdown_24.Text;
  286. oDoc.Bookmarks["Quantity24"].Range.Text = Quantity_24.Text;
  287. oDoc.Bookmarks["WeightPiece24"].Range.Text = Weight_for_piece_24.Text;
  288. oDoc.Bookmarks["Weight24"].Range.Text = Weight_24.Text;
  289. oDoc.Bookmarks["Rate24"].Range.Text = Rate_24.Text;
  290. oDoc.Bookmarks["Area24"].Range.Text = Area_24.Text;
  291. }
  292. if (Quantity_25.Text != "0" && Weight_25.Text != "0" && cB25.Checked == true)
  293. {
  294. oDoc.Bookmarks["Type25"].Range.Text = Element_type_dropdown_25.Text;
  295. oDoc.Bookmarks["Size25"].Range.Text = Element_dimension_type_dropdown_25.Text;
  296. oDoc.Bookmarks["Quantity25"].Range.Text = Quantity_25.Text;
  297. oDoc.Bookmarks["WeightPiece25"].Range.Text = Weight_for_piece_25.Text;
  298. oDoc.Bookmarks["Weight25"].Range.Text = Weight_25.Text;
  299. oDoc.Bookmarks["Rate25"].Range.Text = Rate_25.Text;
  300. oDoc.Bookmarks["Area25"].Range.Text = Area_25.Text;
  301. }
  302. if (Quantity_26.Text != "0" && Weight_26.Text != "0" && cB26.Checked == true)
  303. {
  304. oDoc.Bookmarks["Type26"].Range.Text = Element_type_dropdown_26.Text;
  305. oDoc.Bookmarks["Size26"].Range.Text = Element_dimension_type_dropdown_26.Text;
  306. oDoc.Bookmarks["Quantity26"].Range.Text = Quantity_26.Text;
  307. oDoc.Bookmarks["WeightPiece26"].Range.Text = Weight_for_piece_26.Text;
  308. oDoc.Bookmarks["Weight26"].Range.Text = Weight_26.Text;
  309. oDoc.Bookmarks["Rate26"].Range.Text = Rate_26.Text;
  310. oDoc.Bookmarks["Area26"].Range.Text = Area_26.Text;
  311. }
  312. if (Quantity_27.Text != "0" && Weight_27.Text != "0" && cB27.Checked == true)
  313. {
  314. oDoc.Bookmarks["Type27"].Range.Text = Element_type_dropdown_27.Text;
  315. oDoc.Bookmarks["Size27"].Range.Text = Element_dimension_type_dropdown_27.Text;
  316. oDoc.Bookmarks["Quantity27"].Range.Text = Quantity_27.Text;
  317. oDoc.Bookmarks["WeightPiece27"].Range.Text = Weight_for_piece_27.Text;
  318. oDoc.Bookmarks["Weight27"].Range.Text = Weight_27.Text;
  319. oDoc.Bookmarks["Rate27"].Range.Text = Rate_27.Text;
  320. oDoc.Bookmarks["Area27"].Range.Text = Area_27.Text;
  321. }
  322. if (Quantity_28.Text != "0" && Weight_28.Text != "0" && cB28.Checked == true)
  323. {
  324. oDoc.Bookmarks["Type28"].Range.Text = Element_type_dropdown_28.Text;
  325. oDoc.Bookmarks["Size28"].Range.Text = Element_dimension_type_dropdown_28.Text;
  326. oDoc.Bookmarks["Quantity28"].Range.Text = Quantity_28.Text;
  327. oDoc.Bookmarks["WeightPiece28"].Range.Text = Weight_for_piece_28.Text;
  328. oDoc.Bookmarks["Weight28"].Range.Text = Weight_28.Text;
  329. oDoc.Bookmarks["Rate28"].Range.Text = Rate_28.Text;
  330. oDoc.Bookmarks["Area28"].Range.Text = Area_28.Text;
  331. }
  332. if (Quantity_29.Text != "0" && Weight_29.Text != "0" && cB29.Checked == true)
  333. {
  334. oDoc.Bookmarks["Type29"].Range.Text = Element_type_dropdown_29.Text;
  335. oDoc.Bookmarks["Size29"].Range.Text = Element_dimension_type_dropdown_29.Text;
  336. oDoc.Bookmarks["Quantity29"].Range.Text = Quantity_29.Text;
  337. oDoc.Bookmarks["WeightPiece29"].Range.Text = Weight_for_piece_29.Text;
  338. oDoc.Bookmarks["Weight29"].Range.Text = Weight_29.Text;
  339. oDoc.Bookmarks["Rate29"].Range.Text = Rate_29.Text;
  340. oDoc.Bookmarks["Area29"].Range.Text = Area_29.Text;
  341. }
  342. if (Quantity_30.Text != "0" && Weight_30.Text != "0" && cB30.Checked == true)
  343. {
  344. oDoc.Bookmarks["Type30"].Range.Text = Element_type_dropdown_30.Text;
  345. oDoc.Bookmarks["Size30"].Range.Text = Element_dimension_type_dropdown_30.Text;
  346. oDoc.Bookmarks["Quantity30"].Range.Text = Quantity_30.Text;
  347. oDoc.Bookmarks["WeightPiece30"].Range.Text = Weight_for_piece_30.Text;
  348. oDoc.Bookmarks["Weight30"].Range.Text = Weight_30.Text;
  349. oDoc.Bookmarks["Rate30"].Range.Text = Rate_30.Text;
  350. oDoc.Bookmarks["Area30"].Range.Text = Area_30.Text;
  351. }
Для первых 3х элементов написал "продвинутое" заполнение. Т.е. у каждой строки Word есть индекс строки из программы, которой была заполнена строка Word. И, наконец, вопрос: Есть ли возможность упростить проверку? Т.К. для 29й строки нужно будет писать 29 if(в моем исполнении), а это утомительно...

Решение задачи: «"Продвинутое" заполнение шаблона word»

textual
Листинг программы
  1. Word.Table table = wordDoc.Tables[2];
  2.             //для каждой строчки с данными
  3.             for (int i=0; i<xml.Tables[4].Rows.Count;i++)
  4.             {
  5.                 table.Rows.Add(table.Rows[i+2]);
  6.                 toolStripStatusLabel1.Text = "Записано: " + i;
  7.             }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

11   голосов , оценка 4.182 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы