Resources.Designer.cs 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. //
  5. // Changes to this file may cause incorrect behavior and will be lost if
  6. // the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace PRSDesktop {
  10. using System;
  11. /// <summary>
  12. /// A strongly-typed resource class, for looking up localized strings, etc.
  13. /// </summary>
  14. // This class was auto-generated by the StronglyTypedResourceBuilder
  15. // class via a tool like ResGen or Visual Studio.
  16. // To add or remove a member, edit your .ResX file then rerun ResGen
  17. // with the /str option, or rebuild your VS project.
  18. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
  19. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  20. [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
  21. internal class Resources {
  22. private static global::System.Resources.ResourceManager resourceMan;
  23. private static global::System.Globalization.CultureInfo resourceCulture;
  24. [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
  25. internal Resources() {
  26. }
  27. /// <summary>
  28. /// Returns the cached ResourceManager instance used by this class.
  29. /// </summary>
  30. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  31. internal static global::System.Resources.ResourceManager ResourceManager {
  32. get {
  33. if (object.ReferenceEquals(resourceMan, null)) {
  34. global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PRSDesktop.Resources", typeof(Resources).Assembly);
  35. resourceMan = temp;
  36. }
  37. return resourceMan;
  38. }
  39. }
  40. /// <summary>
  41. /// Overrides the current thread's CurrentUICulture property for all
  42. /// resource lookups using this strongly typed resource class.
  43. /// </summary>
  44. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  45. internal static global::System.Globalization.CultureInfo Culture {
  46. get {
  47. return resourceCulture;
  48. }
  49. set {
  50. resourceCulture = value;
  51. }
  52. }
  53. /// <summary>
  54. /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream.
  55. /// </summary>
  56. internal static System.IO.UnmanagedMemoryStream add1 {
  57. get {
  58. return ResourceManager.GetStream("add1", resourceCulture);
  59. }
  60. }
  61. /// <summary>
  62. /// Looks up a localized resource of type System.Drawing.Bitmap.
  63. /// </summary>
  64. internal static System.Drawing.Bitmap anonymous {
  65. get {
  66. object obj = ResourceManager.GetObject("anonymous", resourceCulture);
  67. return ((System.Drawing.Bitmap)(obj));
  68. }
  69. }
  70. /// <summary>
  71. /// Looks up a localized resource of type System.Drawing.Bitmap.
  72. /// </summary>
  73. internal static System.Drawing.Bitmap appicon {
  74. get {
  75. object obj = ResourceManager.GetObject("appicon", resourceCulture);
  76. return ((System.Drawing.Bitmap)(obj));
  77. }
  78. }
  79. /// <summary>
  80. /// Looks up a localized resource of type System.Drawing.Bitmap.
  81. /// </summary>
  82. internal static System.Drawing.Bitmap archive {
  83. get {
  84. object obj = ResourceManager.GetObject("archive", resourceCulture);
  85. return ((System.Drawing.Bitmap)(obj));
  86. }
  87. }
  88. /// <summary>
  89. /// Looks up a localized resource of type System.Drawing.Bitmap.
  90. /// </summary>
  91. internal static System.Drawing.Bitmap assignments {
  92. get {
  93. object obj = ResourceManager.GetObject("assignments", resourceCulture);
  94. return ((System.Drawing.Bitmap)(obj));
  95. }
  96. }
  97. /// <summary>
  98. /// Looks up a localized resource of type System.Drawing.Bitmap.
  99. /// </summary>
  100. internal static System.Drawing.Bitmap attachment {
  101. get {
  102. object obj = ResourceManager.GetObject("attachment", resourceCulture);
  103. return ((System.Drawing.Bitmap)(obj));
  104. }
  105. }
  106. /// <summary>
  107. /// Looks up a localized resource of type System.Drawing.Bitmap.
  108. /// </summary>
  109. internal static System.Drawing.Bitmap attendance {
  110. get {
  111. object obj = ResourceManager.GetObject("attendance", resourceCulture);
  112. return ((System.Drawing.Bitmap)(obj));
  113. }
  114. }
  115. /// <summary>
  116. /// Looks up a localized resource of type System.Drawing.Bitmap.
  117. /// </summary>
  118. internal static System.Drawing.Bitmap audiorecording {
  119. get {
  120. object obj = ResourceManager.GetObject("audiorecording", resourceCulture);
  121. return ((System.Drawing.Bitmap)(obj));
  122. }
  123. }
  124. /// <summary>
  125. /// Looks up a localized resource of type System.Drawing.Bitmap.
  126. /// </summary>
  127. internal static System.Drawing.Bitmap autoupdate {
  128. get {
  129. object obj = ResourceManager.GetObject("autoupdate", resourceCulture);
  130. return ((System.Drawing.Bitmap)(obj));
  131. }
  132. }
  133. /// <summary>
  134. /// Looks up a localized resource of type System.Drawing.Bitmap.
  135. /// </summary>
  136. internal static System.Drawing.Bitmap back {
  137. get {
  138. object obj = ResourceManager.GetObject("back", resourceCulture);
  139. return ((System.Drawing.Bitmap)(obj));
  140. }
  141. }
  142. /// <summary>
  143. /// Looks up a localized resource of type System.Drawing.Bitmap.
  144. /// </summary>
  145. internal static System.Drawing.Bitmap barcode {
  146. get {
  147. object obj = ResourceManager.GetObject("barcode", resourceCulture);
  148. return ((System.Drawing.Bitmap)(obj));
  149. }
  150. }
  151. /// <summary>
  152. /// Looks up a localized resource of type System.Drawing.Bitmap.
  153. /// </summary>
  154. internal static System.Drawing.Bitmap bill {
  155. get {
  156. object obj = ResourceManager.GetObject("bill", resourceCulture);
  157. return ((System.Drawing.Bitmap)(obj));
  158. }
  159. }
  160. /// <summary>
  161. /// Looks up a localized resource of type System.Drawing.Bitmap.
  162. /// </summary>
  163. internal static System.Drawing.Bitmap bookmark {
  164. get {
  165. object obj = ResourceManager.GetObject("bookmark", resourceCulture);
  166. return ((System.Drawing.Bitmap)(obj));
  167. }
  168. }
  169. /// <summary>
  170. /// Looks up a localized resource of type System.Drawing.Bitmap.
  171. /// </summary>
  172. internal static System.Drawing.Bitmap box {
  173. get {
  174. object obj = ResourceManager.GetObject("box", resourceCulture);
  175. return ((System.Drawing.Bitmap)(obj));
  176. }
  177. }
  178. /// <summary>
  179. /// Looks up a localized resource of type System.Drawing.Bitmap.
  180. /// </summary>
  181. internal static System.Drawing.Bitmap box_sml {
  182. get {
  183. object obj = ResourceManager.GetObject("box_sml", resourceCulture);
  184. return ((System.Drawing.Bitmap)(obj));
  185. }
  186. }
  187. /// <summary>
  188. /// Looks up a localized resource of type System.Drawing.Bitmap.
  189. /// </summary>
  190. internal static System.Drawing.Bitmap bug {
  191. get {
  192. object obj = ResourceManager.GetObject("bug", resourceCulture);
  193. return ((System.Drawing.Bitmap)(obj));
  194. }
  195. }
  196. /// <summary>
  197. /// Looks up a localized resource of type System.Drawing.Bitmap.
  198. /// </summary>
  199. internal static System.Drawing.Bitmap certificate {
  200. get {
  201. object obj = ResourceManager.GetObject("certificate", resourceCulture);
  202. return ((System.Drawing.Bitmap)(obj));
  203. }
  204. }
  205. /// <summary>
  206. /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream.
  207. /// </summary>
  208. internal static System.IO.UnmanagedMemoryStream change {
  209. get {
  210. return ResourceManager.GetStream("change", resourceCulture);
  211. }
  212. }
  213. /// <summary>
  214. /// Looks up a localized resource of type System.Drawing.Bitmap.
  215. /// </summary>
  216. internal static System.Drawing.Bitmap checklist {
  217. get {
  218. object obj = ResourceManager.GetObject("checklist", resourceCulture);
  219. return ((System.Drawing.Bitmap)(obj));
  220. }
  221. }
  222. /// <summary>
  223. /// Looks up a localized resource of type System.Drawing.Bitmap.
  224. /// </summary>
  225. internal static System.Drawing.Bitmap circle {
  226. get {
  227. object obj = ResourceManager.GetObject("circle", resourceCulture);
  228. return ((System.Drawing.Bitmap)(obj));
  229. }
  230. }
  231. /// <summary>
  232. /// Looks up a localized resource of type System.Drawing.Bitmap.
  233. /// </summary>
  234. internal static System.Drawing.Bitmap clock {
  235. get {
  236. object obj = ResourceManager.GetObject("clock", resourceCulture);
  237. return ((System.Drawing.Bitmap)(obj));
  238. }
  239. }
  240. /// <summary>
  241. /// Looks up a localized resource of type System.Drawing.Bitmap.
  242. /// </summary>
  243. internal static System.Drawing.Bitmap clock_sml {
  244. get {
  245. object obj = ResourceManager.GetObject("clock_sml", resourceCulture);
  246. return ((System.Drawing.Bitmap)(obj));
  247. }
  248. }
  249. /// <summary>
  250. /// Looks up a localized resource of type System.Drawing.Bitmap.
  251. /// </summary>
  252. internal static System.Drawing.Bitmap clone {
  253. get {
  254. object obj = ResourceManager.GetObject("clone", resourceCulture);
  255. return ((System.Drawing.Bitmap)(obj));
  256. }
  257. }
  258. /// <summary>
  259. /// Looks up a localized resource of type System.Drawing.Bitmap.
  260. /// </summary>
  261. internal static System.Drawing.Bitmap consignment {
  262. get {
  263. object obj = ResourceManager.GetObject("consignment", resourceCulture);
  264. return ((System.Drawing.Bitmap)(obj));
  265. }
  266. }
  267. /// <summary>
  268. /// Looks up a localized resource of type System.Drawing.Bitmap.
  269. /// </summary>
  270. internal static System.Drawing.Bitmap consignmenttype {
  271. get {
  272. object obj = ResourceManager.GetObject("consignmenttype", resourceCulture);
  273. return ((System.Drawing.Bitmap)(obj));
  274. }
  275. }
  276. /// <summary>
  277. /// Looks up a localized resource of type System.Drawing.Bitmap.
  278. /// </summary>
  279. internal static System.Drawing.Bitmap contacttype {
  280. get {
  281. object obj = ResourceManager.GetObject("contacttype", resourceCulture);
  282. return ((System.Drawing.Bitmap)(obj));
  283. }
  284. }
  285. /// <summary>
  286. /// Looks up a localized resource of type System.Drawing.Bitmap.
  287. /// </summary>
  288. internal static System.Drawing.Bitmap contract {
  289. get {
  290. object obj = ResourceManager.GetObject("contract", resourceCulture);
  291. return ((System.Drawing.Bitmap)(obj));
  292. }
  293. }
  294. /// <summary>
  295. /// Looks up a localized resource of type System.Drawing.Bitmap.
  296. /// </summary>
  297. internal static System.Drawing.Bitmap copy {
  298. get {
  299. object obj = ResourceManager.GetObject("copy", resourceCulture);
  300. return ((System.Drawing.Bitmap)(obj));
  301. }
  302. }
  303. /// <summary>
  304. /// Looks up a localized resource of type System.Drawing.Bitmap.
  305. /// </summary>
  306. internal static System.Drawing.Bitmap costcentre {
  307. get {
  308. object obj = ResourceManager.GetObject("costcentre", resourceCulture);
  309. return ((System.Drawing.Bitmap)(obj));
  310. }
  311. }
  312. /// <summary>
  313. /// Looks up a localized resource of type System.Drawing.Bitmap.
  314. /// </summary>
  315. internal static System.Drawing.Bitmap costsheet {
  316. get {
  317. object obj = ResourceManager.GetObject("costsheet", resourceCulture);
  318. return ((System.Drawing.Bitmap)(obj));
  319. }
  320. }
  321. /// <summary>
  322. /// Looks up a localized resource of type System.Drawing.Bitmap.
  323. /// </summary>
  324. internal static System.Drawing.Bitmap costsheetbrand {
  325. get {
  326. object obj = ResourceManager.GetObject("costsheetbrand", resourceCulture);
  327. return ((System.Drawing.Bitmap)(obj));
  328. }
  329. }
  330. /// <summary>
  331. /// Looks up a localized resource of type System.Drawing.Bitmap.
  332. /// </summary>
  333. internal static System.Drawing.Bitmap costsheetsection {
  334. get {
  335. object obj = ResourceManager.GetObject("costsheetsection", resourceCulture);
  336. return ((System.Drawing.Bitmap)(obj));
  337. }
  338. }
  339. /// <summary>
  340. /// Looks up a localized resource of type System.Drawing.Bitmap.
  341. /// </summary>
  342. internal static System.Drawing.Bitmap costsheettype {
  343. get {
  344. object obj = ResourceManager.GetObject("costsheettype", resourceCulture);
  345. return ((System.Drawing.Bitmap)(obj));
  346. }
  347. }
  348. /// <summary>
  349. /// Looks up a localized resource of type System.Drawing.Bitmap.
  350. /// </summary>
  351. internal static System.Drawing.Bitmap customer {
  352. get {
  353. object obj = ResourceManager.GetObject("customer", resourceCulture);
  354. return ((System.Drawing.Bitmap)(obj));
  355. }
  356. }
  357. /// <summary>
  358. /// Looks up a localized resource of type System.Drawing.Bitmap.
  359. /// </summary>
  360. internal static System.Drawing.Bitmap delete_sml {
  361. get {
  362. object obj = ResourceManager.GetObject("delete_sml", resourceCulture);
  363. return ((System.Drawing.Bitmap)(obj));
  364. }
  365. }
  366. /// <summary>
  367. /// Looks up a localized resource of type System.Drawing.Bitmap.
  368. /// </summary>
  369. internal static System.Drawing.Bitmap design {
  370. get {
  371. object obj = ResourceManager.GetObject("design", resourceCulture);
  372. return ((System.Drawing.Bitmap)(obj));
  373. }
  374. }
  375. /// <summary>
  376. /// Looks up a localized resource of type System.Drawing.Bitmap.
  377. /// </summary>
  378. internal static System.Drawing.Bitmap disabled {
  379. get {
  380. object obj = ResourceManager.GetObject("disabled", resourceCulture);
  381. return ((System.Drawing.Bitmap)(obj));
  382. }
  383. }
  384. /// <summary>
  385. /// Looks up a localized resource of type System.Drawing.Bitmap.
  386. /// </summary>
  387. internal static System.Drawing.Bitmap disk {
  388. get {
  389. object obj = ResourceManager.GetObject("disk", resourceCulture);
  390. return ((System.Drawing.Bitmap)(obj));
  391. }
  392. }
  393. /// <summary>
  394. /// Looks up a localized resource of type System.Drawing.Bitmap.
  395. /// </summary>
  396. internal static System.Drawing.Bitmap disk_sml {
  397. get {
  398. object obj = ResourceManager.GetObject("disk_sml", resourceCulture);
  399. return ((System.Drawing.Bitmap)(obj));
  400. }
  401. }
  402. /// <summary>
  403. /// Looks up a localized resource of type System.Drawing.Bitmap.
  404. /// </summary>
  405. internal static System.Drawing.Bitmap doc_bmp {
  406. get {
  407. object obj = ResourceManager.GetObject("doc_bmp", resourceCulture);
  408. return ((System.Drawing.Bitmap)(obj));
  409. }
  410. }
  411. /// <summary>
  412. /// Looks up a localized resource of type System.Drawing.Bitmap.
  413. /// </summary>
  414. internal static System.Drawing.Bitmap doc_jpg {
  415. get {
  416. object obj = ResourceManager.GetObject("doc_jpg", resourceCulture);
  417. return ((System.Drawing.Bitmap)(obj));
  418. }
  419. }
  420. /// <summary>
  421. /// Looks up a localized resource of type System.Drawing.Bitmap.
  422. /// </summary>
  423. internal static System.Drawing.Bitmap doc_misc {
  424. get {
  425. object obj = ResourceManager.GetObject("doc_misc", resourceCulture);
  426. return ((System.Drawing.Bitmap)(obj));
  427. }
  428. }
  429. /// <summary>
  430. /// Looks up a localized resource of type System.Drawing.Bitmap.
  431. /// </summary>
  432. internal static System.Drawing.Bitmap doc_pdf {
  433. get {
  434. object obj = ResourceManager.GetObject("doc_pdf", resourceCulture);
  435. return ((System.Drawing.Bitmap)(obj));
  436. }
  437. }
  438. /// <summary>
  439. /// Looks up a localized resource of type System.Drawing.Bitmap.
  440. /// </summary>
  441. internal static System.Drawing.Bitmap doc_png {
  442. get {
  443. object obj = ResourceManager.GetObject("doc_png", resourceCulture);
  444. return ((System.Drawing.Bitmap)(obj));
  445. }
  446. }
  447. /// <summary>
  448. /// Looks up a localized resource of type System.Drawing.Bitmap.
  449. /// </summary>
  450. internal static System.Drawing.Bitmap doc_rtf {
  451. get {
  452. object obj = ResourceManager.GetObject("doc_rtf", resourceCulture);
  453. return ((System.Drawing.Bitmap)(obj));
  454. }
  455. }
  456. /// <summary>
  457. /// Looks up a localized resource of type System.Drawing.Bitmap.
  458. /// </summary>
  459. internal static System.Drawing.Bitmap doc_txt {
  460. get {
  461. object obj = ResourceManager.GetObject("doc_txt", resourceCulture);
  462. return ((System.Drawing.Bitmap)(obj));
  463. }
  464. }
  465. /// <summary>
  466. /// Looks up a localized resource of type System.Drawing.Bitmap.
  467. /// </summary>
  468. internal static System.Drawing.Bitmap doc_xls {
  469. get {
  470. object obj = ResourceManager.GetObject("doc_xls", resourceCulture);
  471. return ((System.Drawing.Bitmap)(obj));
  472. }
  473. }
  474. /// <summary>
  475. /// Looks up a localized resource of type System.Drawing.Bitmap.
  476. /// </summary>
  477. internal static System.Drawing.Bitmap downarrow {
  478. get {
  479. object obj = ResourceManager.GetObject("downarrow", resourceCulture);
  480. return ((System.Drawing.Bitmap)(obj));
  481. }
  482. }
  483. /// <summary>
  484. /// Looks up a localized resource of type System.Drawing.Bitmap.
  485. /// </summary>
  486. internal static System.Drawing.Bitmap download {
  487. get {
  488. object obj = ResourceManager.GetObject("download", resourceCulture);
  489. return ((System.Drawing.Bitmap)(obj));
  490. }
  491. }
  492. /// <summary>
  493. /// Looks up a localized resource of type System.Drawing.Bitmap.
  494. /// </summary>
  495. internal static System.Drawing.Bitmap draw {
  496. get {
  497. object obj = ResourceManager.GetObject("draw", resourceCulture);
  498. return ((System.Drawing.Bitmap)(obj));
  499. }
  500. }
  501. /// <summary>
  502. /// Looks up a localized resource of type System.Drawing.Bitmap.
  503. /// </summary>
  504. internal static System.Drawing.Bitmap edit {
  505. get {
  506. object obj = ResourceManager.GetObject("edit", resourceCulture);
  507. return ((System.Drawing.Bitmap)(obj));
  508. }
  509. }
  510. /// <summary>
  511. /// Looks up a localized resource of type System.Drawing.Bitmap.
  512. /// </summary>
  513. internal static System.Drawing.Bitmap email {
  514. get {
  515. object obj = ResourceManager.GetObject("email", resourceCulture);
  516. return ((System.Drawing.Bitmap)(obj));
  517. }
  518. }
  519. /// <summary>
  520. /// Looks up a localized resource of type System.Drawing.Bitmap.
  521. /// </summary>
  522. internal static System.Drawing.Bitmap emailreport {
  523. get {
  524. object obj = ResourceManager.GetObject("emailreport", resourceCulture);
  525. return ((System.Drawing.Bitmap)(obj));
  526. }
  527. }
  528. /// <summary>
  529. /// Looks up a localized resource of type System.Drawing.Bitmap.
  530. /// </summary>
  531. internal static System.Drawing.Bitmap employee {
  532. get {
  533. object obj = ResourceManager.GetObject("employee", resourceCulture);
  534. return ((System.Drawing.Bitmap)(obj));
  535. }
  536. }
  537. /// <summary>
  538. /// Looks up a localized resource of type System.Drawing.Bitmap.
  539. /// </summary>
  540. internal static System.Drawing.Bitmap employeerole {
  541. get {
  542. object obj = ResourceManager.GetObject("employeerole", resourceCulture);
  543. return ((System.Drawing.Bitmap)(obj));
  544. }
  545. }
  546. /// <summary>
  547. /// Looks up a localized resource of type System.Drawing.Bitmap.
  548. /// </summary>
  549. internal static System.Drawing.Bitmap employees {
  550. get {
  551. object obj = ResourceManager.GetObject("employees", resourceCulture);
  552. return ((System.Drawing.Bitmap)(obj));
  553. }
  554. }
  555. /// <summary>
  556. /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream.
  557. /// </summary>
  558. internal static System.IO.UnmanagedMemoryStream error {
  559. get {
  560. return ResourceManager.GetStream("error", resourceCulture);
  561. }
  562. }
  563. /// <summary>
  564. /// Looks up a localized resource of type System.Drawing.Bitmap.
  565. /// </summary>
  566. internal static System.Drawing.Bitmap everyone {
  567. get {
  568. object obj = ResourceManager.GetObject("everyone", resourceCulture);
  569. return ((System.Drawing.Bitmap)(obj));
  570. }
  571. }
  572. /// <summary>
  573. /// Looks up a localized resource of type System.Drawing.Bitmap.
  574. /// </summary>
  575. internal static System.Drawing.Bitmap factory {
  576. get {
  577. object obj = ResourceManager.GetObject("factory", resourceCulture);
  578. return ((System.Drawing.Bitmap)(obj));
  579. }
  580. }
  581. /// <summary>
  582. /// Looks up a localized resource of type System.Drawing.Bitmap.
  583. /// </summary>
  584. internal static System.Drawing.Bitmap factorysetup {
  585. get {
  586. object obj = ResourceManager.GetObject("factorysetup", resourceCulture);
  587. return ((System.Drawing.Bitmap)(obj));
  588. }
  589. }
  590. /// <summary>
  591. /// Looks up a localized resource of type System.Drawing.Bitmap.
  592. /// </summary>
  593. internal static System.Drawing.Bitmap finger {
  594. get {
  595. object obj = ResourceManager.GetObject("finger", resourceCulture);
  596. return ((System.Drawing.Bitmap)(obj));
  597. }
  598. }
  599. /// <summary>
  600. /// Looks up a localized resource of type System.Drawing.Bitmap.
  601. /// </summary>
  602. internal static System.Drawing.Bitmap fireworks {
  603. get {
  604. object obj = ResourceManager.GetObject("fireworks", resourceCulture);
  605. return ((System.Drawing.Bitmap)(obj));
  606. }
  607. }
  608. /// <summary>
  609. /// Looks up a localized resource of type System.Drawing.Bitmap.
  610. /// </summary>
  611. internal static System.Drawing.Bitmap first {
  612. get {
  613. object obj = ResourceManager.GetObject("first", resourceCulture);
  614. return ((System.Drawing.Bitmap)(obj));
  615. }
  616. }
  617. /// <summary>
  618. /// Looks up a localized resource of type System.Drawing.Bitmap.
  619. /// </summary>
  620. internal static System.Drawing.Bitmap fixings {
  621. get {
  622. object obj = ResourceManager.GetObject("fixings", resourceCulture);
  623. return ((System.Drawing.Bitmap)(obj));
  624. }
  625. }
  626. /// <summary>
  627. /// Looks up a localized resource of type System.Drawing.Bitmap.
  628. /// </summary>
  629. internal static System.Drawing.Bitmap fontsize {
  630. get {
  631. object obj = ResourceManager.GetObject("fontsize", resourceCulture);
  632. return ((System.Drawing.Bitmap)(obj));
  633. }
  634. }
  635. /// <summary>
  636. /// Looks up a localized resource of type System.Drawing.Bitmap.
  637. /// </summary>
  638. internal static System.Drawing.Bitmap forklift {
  639. get {
  640. object obj = ResourceManager.GetObject("forklift", resourceCulture);
  641. return ((System.Drawing.Bitmap)(obj));
  642. }
  643. }
  644. /// <summary>
  645. /// Looks up a localized resource of type System.Drawing.Bitmap.
  646. /// </summary>
  647. internal static System.Drawing.Bitmap forward {
  648. get {
  649. object obj = ResourceManager.GetObject("forward", resourceCulture);
  650. return ((System.Drawing.Bitmap)(obj));
  651. }
  652. }
  653. /// <summary>
  654. /// Looks up a localized resource of type System.Drawing.Bitmap.
  655. /// </summary>
  656. internal static System.Drawing.Bitmap fullpage {
  657. get {
  658. object obj = ResourceManager.GetObject("fullpage", resourceCulture);
  659. return ((System.Drawing.Bitmap)(obj));
  660. }
  661. }
  662. /// <summary>
  663. /// Looks up a localized resource of type System.Drawing.Bitmap.
  664. /// </summary>
  665. internal static System.Drawing.Bitmap gasket {
  666. get {
  667. object obj = ResourceManager.GetObject("gasket", resourceCulture);
  668. return ((System.Drawing.Bitmap)(obj));
  669. }
  670. }
  671. /// <summary>
  672. /// Looks up a localized resource of type System.Drawing.Bitmap.
  673. /// </summary>
  674. internal static System.Drawing.Bitmap glass {
  675. get {
  676. object obj = ResourceManager.GetObject("glass", resourceCulture);
  677. return ((System.Drawing.Bitmap)(obj));
  678. }
  679. }
  680. /// <summary>
  681. /// Looks up a localized resource of type System.Drawing.Bitmap.
  682. /// </summary>
  683. internal static System.Drawing.Bitmap glcode {
  684. get {
  685. object obj = ResourceManager.GetObject("glcode", resourceCulture);
  686. return ((System.Drawing.Bitmap)(obj));
  687. }
  688. }
  689. /// <summary>
  690. /// Looks up a localized resource of type System.Drawing.Bitmap.
  691. /// </summary>
  692. internal static System.Drawing.Bitmap green_down_arrow {
  693. get {
  694. object obj = ResourceManager.GetObject("green_down_arrow", resourceCulture);
  695. return ((System.Drawing.Bitmap)(obj));
  696. }
  697. }
  698. /// <summary>
  699. /// Looks up a localized resource of type System.Drawing.Bitmap.
  700. /// </summary>
  701. internal static System.Drawing.Bitmap grouped {
  702. get {
  703. object obj = ResourceManager.GetObject("grouped", resourceCulture);
  704. return ((System.Drawing.Bitmap)(obj));
  705. }
  706. }
  707. /// <summary>
  708. /// Looks up a localized resource of type System.Drawing.Bitmap.
  709. /// </summary>
  710. internal static System.Drawing.Bitmap hand {
  711. get {
  712. object obj = ResourceManager.GetObject("hand", resourceCulture);
  713. return ((System.Drawing.Bitmap)(obj));
  714. }
  715. }
  716. /// <summary>
  717. /// Looks up a localized resource of type System.Drawing.Bitmap.
  718. /// </summary>
  719. internal static System.Drawing.Bitmap help {
  720. get {
  721. object obj = ResourceManager.GetObject("help", resourceCulture);
  722. return ((System.Drawing.Bitmap)(obj));
  723. }
  724. }
  725. /// <summary>
  726. /// Looks up a localized resource of type System.Drawing.Bitmap.
  727. /// </summary>
  728. internal static System.Drawing.Bitmap invoice {
  729. get {
  730. object obj = ResourceManager.GetObject("invoice", resourceCulture);
  731. return ((System.Drawing.Bitmap)(obj));
  732. }
  733. }
  734. /// <summary>
  735. /// Looks up a localized resource of type System.Drawing.Bitmap.
  736. /// </summary>
  737. internal static System.Drawing.Bitmap kanban {
  738. get {
  739. object obj = ResourceManager.GetObject("kanban", resourceCulture);
  740. return ((System.Drawing.Bitmap)(obj));
  741. }
  742. }
  743. /// <summary>
  744. /// Looks up a localized resource of type System.Drawing.Bitmap.
  745. /// </summary>
  746. internal static System.Drawing.Bitmap kanbantype {
  747. get {
  748. object obj = ResourceManager.GetObject("kanbantype", resourceCulture);
  749. return ((System.Drawing.Bitmap)(obj));
  750. }
  751. }
  752. /// <summary>
  753. /// Looks up a localized resource of type System.Drawing.Bitmap.
  754. /// </summary>
  755. internal static System.Drawing.Bitmap key {
  756. get {
  757. object obj = ResourceManager.GetObject("key", resourceCulture);
  758. return ((System.Drawing.Bitmap)(obj));
  759. }
  760. }
  761. /// <summary>
  762. /// Looks up a localized resource of type System.Drawing.Bitmap.
  763. /// </summary>
  764. internal static System.Drawing.Bitmap kit {
  765. get {
  766. object obj = ResourceManager.GetObject("kit", resourceCulture);
  767. return ((System.Drawing.Bitmap)(obj));
  768. }
  769. }
  770. /// <summary>
  771. /// Looks up a localized resource of type System.Drawing.Bitmap.
  772. /// </summary>
  773. internal static System.Drawing.Bitmap kitcondition {
  774. get {
  775. object obj = ResourceManager.GetObject("kitcondition", resourceCulture);
  776. return ((System.Drawing.Bitmap)(obj));
  777. }
  778. }
  779. /// <summary>
  780. /// Looks up a localized resource of type System.Drawing.Bitmap.
  781. /// </summary>
  782. internal static System.Drawing.Bitmap kitformula {
  783. get {
  784. object obj = ResourceManager.GetObject("kitformula", resourceCulture);
  785. return ((System.Drawing.Bitmap)(obj));
  786. }
  787. }
  788. /// <summary>
  789. /// Looks up a localized resource of type System.Drawing.Bitmap.
  790. /// </summary>
  791. internal static System.Drawing.Bitmap kitgroup {
  792. get {
  793. object obj = ResourceManager.GetObject("kitgroup", resourceCulture);
  794. return ((System.Drawing.Bitmap)(obj));
  795. }
  796. }
  797. /// <summary>
  798. /// Looks up a localized resource of type System.Drawing.Bitmap.
  799. /// </summary>
  800. internal static System.Drawing.Bitmap kpi {
  801. get {
  802. object obj = ResourceManager.GetObject("kpi", resourceCulture);
  803. return ((System.Drawing.Bitmap)(obj));
  804. }
  805. }
  806. /// <summary>
  807. /// Looks up a localized resource of type System.Drawing.Bitmap.
  808. /// </summary>
  809. internal static System.Drawing.Bitmap last {
  810. get {
  811. object obj = ResourceManager.GetObject("last", resourceCulture);
  812. return ((System.Drawing.Bitmap)(obj));
  813. }
  814. }
  815. /// <summary>
  816. /// Looks up a localized resource of type System.Drawing.Bitmap.
  817. /// </summary>
  818. internal static System.Drawing.Bitmap leave {
  819. get {
  820. object obj = ResourceManager.GetObject("leave", resourceCulture);
  821. return ((System.Drawing.Bitmap)(obj));
  822. }
  823. }
  824. /// <summary>
  825. /// Looks up a localized resource of type System.Drawing.Bitmap.
  826. /// </summary>
  827. internal static System.Drawing.Bitmap leftarrow {
  828. get {
  829. object obj = ResourceManager.GetObject("leftarrow", resourceCulture);
  830. return ((System.Drawing.Bitmap)(obj));
  831. }
  832. }
  833. /// <summary>
  834. /// Looks up a localized resource of type System.Drawing.Bitmap.
  835. /// </summary>
  836. internal static System.Drawing.Bitmap lifter {
  837. get {
  838. object obj = ResourceManager.GetObject("lifter", resourceCulture);
  839. return ((System.Drawing.Bitmap)(obj));
  840. }
  841. }
  842. /// <summary>
  843. /// Looks up a localized resource of type System.Drawing.Bitmap.
  844. /// </summary>
  845. internal static System.Drawing.Bitmap lightbulb {
  846. get {
  847. object obj = ResourceManager.GetObject("lightbulb", resourceCulture);
  848. return ((System.Drawing.Bitmap)(obj));
  849. }
  850. }
  851. /// <summary>
  852. /// Looks up a localized resource of type System.Drawing.Bitmap.
  853. /// </summary>
  854. internal static System.Drawing.Bitmap line {
  855. get {
  856. object obj = ResourceManager.GetObject("line", resourceCulture);
  857. return ((System.Drawing.Bitmap)(obj));
  858. }
  859. }
  860. /// <summary>
  861. /// Looks up a localized resource of type System.Drawing.Bitmap.
  862. /// </summary>
  863. internal static System.Drawing.Bitmap link {
  864. get {
  865. object obj = ResourceManager.GetObject("link", resourceCulture);
  866. return ((System.Drawing.Bitmap)(obj));
  867. }
  868. }
  869. /// <summary>
  870. /// Looks up a localized resource of type System.Drawing.Bitmap.
  871. /// </summary>
  872. internal static System.Drawing.Bitmap localfile {
  873. get {
  874. object obj = ResourceManager.GetObject("localfile", resourceCulture);
  875. return ((System.Drawing.Bitmap)(obj));
  876. }
  877. }
  878. /// <summary>
  879. /// Looks up a localized resource of type System.Drawing.Bitmap.
  880. /// </summary>
  881. internal static System.Drawing.Bitmap lock_sml {
  882. get {
  883. object obj = ResourceManager.GetObject("lock_sml", resourceCulture);
  884. return ((System.Drawing.Bitmap)(obj));
  885. }
  886. }
  887. /// <summary>
  888. /// Looks up a localized resource of type System.Drawing.Bitmap.
  889. /// </summary>
  890. internal static System.Drawing.Bitmap locked {
  891. get {
  892. object obj = ResourceManager.GetObject("locked", resourceCulture);
  893. return ((System.Drawing.Bitmap)(obj));
  894. }
  895. }
  896. /// <summary>
  897. /// Looks up a localized resource of type System.Drawing.Bitmap.
  898. /// </summary>
  899. internal static System.Drawing.Bitmap logikal {
  900. get {
  901. object obj = ResourceManager.GetObject("logikal", resourceCulture);
  902. return ((System.Drawing.Bitmap)(obj));
  903. }
  904. }
  905. /// <summary>
  906. /// Looks up a localized resource of type System.Drawing.Bitmap.
  907. /// </summary>
  908. internal static System.Drawing.Bitmap map {
  909. get {
  910. object obj = ResourceManager.GetObject("map", resourceCulture);
  911. return ((System.Drawing.Bitmap)(obj));
  912. }
  913. }
  914. /// <summary>
  915. /// Looks up a localized resource of type System.Drawing.Bitmap.
  916. /// </summary>
  917. internal static System.Drawing.Bitmap mapmarker {
  918. get {
  919. object obj = ResourceManager.GetObject("mapmarker", resourceCulture);
  920. return ((System.Drawing.Bitmap)(obj));
  921. }
  922. }
  923. /// <summary>
  924. /// Looks up a localized resource of type System.Drawing.Bitmap.
  925. /// </summary>
  926. internal static System.Drawing.Bitmap menu {
  927. get {
  928. object obj = ResourceManager.GetObject("menu", resourceCulture);
  929. return ((System.Drawing.Bitmap)(obj));
  930. }
  931. }
  932. /// <summary>
  933. /// Looks up a localized resource of type System.Drawing.Bitmap.
  934. /// </summary>
  935. internal static System.Drawing.Bitmap milestone {
  936. get {
  937. object obj = ResourceManager.GetObject("milestone", resourceCulture);
  938. return ((System.Drawing.Bitmap)(obj));
  939. }
  940. }
  941. /// <summary>
  942. /// Looks up a localized resource of type System.Drawing.Bitmap.
  943. /// </summary>
  944. internal static System.Drawing.Bitmap minus {
  945. get {
  946. object obj = ResourceManager.GetObject("minus", resourceCulture);
  947. return ((System.Drawing.Bitmap)(obj));
  948. }
  949. }
  950. /// <summary>
  951. /// Looks up a localized resource of type System.Drawing.Bitmap.
  952. /// </summary>
  953. internal static System.Drawing.Bitmap myob {
  954. get {
  955. object obj = ResourceManager.GetObject("myob", resourceCulture);
  956. return ((System.Drawing.Bitmap)(obj));
  957. }
  958. }
  959. /// <summary>
  960. /// Looks up a localized resource of type System.Drawing.Bitmap.
  961. /// </summary>
  962. internal static System.Drawing.Bitmap next {
  963. get {
  964. object obj = ResourceManager.GetObject("next", resourceCulture);
  965. return ((System.Drawing.Bitmap)(obj));
  966. }
  967. }
  968. /// <summary>
  969. /// Looks up a localized resource of type System.Drawing.Bitmap.
  970. /// </summary>
  971. internal static System.Drawing.Bitmap notification {
  972. get {
  973. object obj = ResourceManager.GetObject("notification", resourceCulture);
  974. return ((System.Drawing.Bitmap)(obj));
  975. }
  976. }
  977. /// <summary>
  978. /// Looks up a localized resource of type System.Drawing.Bitmap.
  979. /// </summary>
  980. internal static System.Drawing.Bitmap orgchart {
  981. get {
  982. object obj = ResourceManager.GetObject("orgchart", resourceCulture);
  983. return ((System.Drawing.Bitmap)(obj));
  984. }
  985. }
  986. /// <summary>
  987. /// Looks up a localized resource of type System.Drawing.Bitmap.
  988. /// </summary>
  989. internal static System.Drawing.Bitmap overtime {
  990. get {
  991. object obj = ResourceManager.GetObject("overtime", resourceCulture);
  992. return ((System.Drawing.Bitmap)(obj));
  993. }
  994. }
  995. /// <summary>
  996. /// Looks up a localized resource of type System.Drawing.Bitmap.
  997. /// </summary>
  998. internal static System.Drawing.Bitmap pagewidth {
  999. get {
  1000. object obj = ResourceManager.GetObject("pagewidth", resourceCulture);
  1001. return ((System.Drawing.Bitmap)(obj));
  1002. }
  1003. }
  1004. /// <summary>
  1005. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1006. /// </summary>
  1007. internal static System.Drawing.Bitmap palette {
  1008. get {
  1009. object obj = ResourceManager.GetObject("palette", resourceCulture);
  1010. return ((System.Drawing.Bitmap)(obj));
  1011. }
  1012. }
  1013. /// <summary>
  1014. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1015. /// </summary>
  1016. internal static System.Drawing.Bitmap parcel {
  1017. get {
  1018. object obj = ResourceManager.GetObject("parcel", resourceCulture);
  1019. return ((System.Drawing.Bitmap)(obj));
  1020. }
  1021. }
  1022. /// <summary>
  1023. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1024. /// </summary>
  1025. internal static System.Drawing.Bitmap password {
  1026. get {
  1027. object obj = ResourceManager.GetObject("password", resourceCulture);
  1028. return ((System.Drawing.Bitmap)(obj));
  1029. }
  1030. }
  1031. /// <summary>
  1032. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1033. /// </summary>
  1034. internal static System.Drawing.Bitmap payment {
  1035. get {
  1036. object obj = ResourceManager.GetObject("payment", resourceCulture);
  1037. return ((System.Drawing.Bitmap)(obj));
  1038. }
  1039. }
  1040. /// <summary>
  1041. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1042. /// </summary>
  1043. internal static System.Drawing.Bitmap pencil {
  1044. get {
  1045. object obj = ResourceManager.GetObject("pencil", resourceCulture);
  1046. return ((System.Drawing.Bitmap)(obj));
  1047. }
  1048. }
  1049. /// <summary>
  1050. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1051. /// </summary>
  1052. internal static System.Drawing.Bitmap pin {
  1053. get {
  1054. object obj = ResourceManager.GetObject("pin", resourceCulture);
  1055. return ((System.Drawing.Bitmap)(obj));
  1056. }
  1057. }
  1058. /// <summary>
  1059. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1060. /// </summary>
  1061. internal static System.Drawing.Bitmap plus {
  1062. get {
  1063. object obj = ResourceManager.GetObject("plus", resourceCulture);
  1064. return ((System.Drawing.Bitmap)(obj));
  1065. }
  1066. }
  1067. /// <summary>
  1068. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1069. /// </summary>
  1070. internal static System.Drawing.Bitmap position {
  1071. get {
  1072. object obj = ResourceManager.GetObject("position", resourceCulture);
  1073. return ((System.Drawing.Bitmap)(obj));
  1074. }
  1075. }
  1076. /// <summary>
  1077. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1078. /// </summary>
  1079. internal static System.Drawing.Bitmap post {
  1080. get {
  1081. object obj = ResourceManager.GetObject("post", resourceCulture);
  1082. return ((System.Drawing.Bitmap)(obj));
  1083. }
  1084. }
  1085. /// <summary>
  1086. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1087. /// </summary>
  1088. internal static System.Drawing.Bitmap printer {
  1089. get {
  1090. object obj = ResourceManager.GetObject("printer", resourceCulture);
  1091. return ((System.Drawing.Bitmap)(obj));
  1092. }
  1093. }
  1094. /// <summary>
  1095. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1096. /// </summary>
  1097. internal static System.Drawing.Bitmap product {
  1098. get {
  1099. object obj = ResourceManager.GetObject("product", resourceCulture);
  1100. return ((System.Drawing.Bitmap)(obj));
  1101. }
  1102. }
  1103. /// <summary>
  1104. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1105. /// </summary>
  1106. internal static System.Drawing.Bitmap productgroup {
  1107. get {
  1108. object obj = ResourceManager.GetObject("productgroup", resourceCulture);
  1109. return ((System.Drawing.Bitmap)(obj));
  1110. }
  1111. }
  1112. /// <summary>
  1113. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1114. /// </summary>
  1115. internal static System.Drawing.Bitmap profile {
  1116. get {
  1117. object obj = ResourceManager.GetObject("profile", resourceCulture);
  1118. return ((System.Drawing.Bitmap)(obj));
  1119. }
  1120. }
  1121. /// <summary>
  1122. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1123. /// </summary>
  1124. internal static System.Drawing.Bitmap project {
  1125. get {
  1126. object obj = ResourceManager.GetObject("project", resourceCulture);
  1127. return ((System.Drawing.Bitmap)(obj));
  1128. }
  1129. }
  1130. /// <summary>
  1131. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1132. /// </summary>
  1133. internal static System.Drawing.Bitmap purchase {
  1134. get {
  1135. object obj = ResourceManager.GetObject("purchase", resourceCulture);
  1136. return ((System.Drawing.Bitmap)(obj));
  1137. }
  1138. }
  1139. /// <summary>
  1140. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1141. /// </summary>
  1142. internal static System.Drawing.Bitmap quality {
  1143. get {
  1144. object obj = ResourceManager.GetObject("quality", resourceCulture);
  1145. return ((System.Drawing.Bitmap)(obj));
  1146. }
  1147. }
  1148. /// <summary>
  1149. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1150. /// </summary>
  1151. internal static System.Drawing.Bitmap quotation {
  1152. get {
  1153. object obj = ResourceManager.GetObject("quotation", resourceCulture);
  1154. return ((System.Drawing.Bitmap)(obj));
  1155. }
  1156. }
  1157. /// <summary>
  1158. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1159. /// </summary>
  1160. internal static System.Drawing.Bitmap quotestatus {
  1161. get {
  1162. object obj = ResourceManager.GetObject("quotestatus", resourceCulture);
  1163. return ((System.Drawing.Bitmap)(obj));
  1164. }
  1165. }
  1166. /// <summary>
  1167. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1168. /// </summary>
  1169. internal static System.Drawing.Bitmap rack {
  1170. get {
  1171. object obj = ResourceManager.GetObject("rack", resourceCulture);
  1172. return ((System.Drawing.Bitmap)(obj));
  1173. }
  1174. }
  1175. /// <summary>
  1176. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1177. /// </summary>
  1178. internal static System.Drawing.Bitmap receipt {
  1179. get {
  1180. object obj = ResourceManager.GetObject("receipt", resourceCulture);
  1181. return ((System.Drawing.Bitmap)(obj));
  1182. }
  1183. }
  1184. /// <summary>
  1185. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1186. /// </summary>
  1187. internal static System.Drawing.Bitmap red_up_arrow {
  1188. get {
  1189. object obj = ResourceManager.GetObject("red_up_arrow", resourceCulture);
  1190. return ((System.Drawing.Bitmap)(obj));
  1191. }
  1192. }
  1193. /// <summary>
  1194. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1195. /// </summary>
  1196. internal static System.Drawing.Bitmap refresh {
  1197. get {
  1198. object obj = ResourceManager.GetObject("refresh", resourceCulture);
  1199. return ((System.Drawing.Bitmap)(obj));
  1200. }
  1201. }
  1202. /// <summary>
  1203. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1204. /// </summary>
  1205. internal static System.Drawing.Bitmap remotefile {
  1206. get {
  1207. object obj = ResourceManager.GetObject("remotefile", resourceCulture);
  1208. return ((System.Drawing.Bitmap)(obj));
  1209. }
  1210. }
  1211. /// <summary>
  1212. /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream.
  1213. /// </summary>
  1214. internal static System.IO.UnmanagedMemoryStream remove {
  1215. get {
  1216. return ResourceManager.GetStream("remove", resourceCulture);
  1217. }
  1218. }
  1219. /// <summary>
  1220. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1221. /// </summary>
  1222. internal static System.Drawing.Bitmap reply {
  1223. get {
  1224. object obj = ResourceManager.GetObject("reply", resourceCulture);
  1225. return ((System.Drawing.Bitmap)(obj));
  1226. }
  1227. }
  1228. /// <summary>
  1229. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1230. /// </summary>
  1231. internal static System.Drawing.Bitmap report {
  1232. get {
  1233. object obj = ResourceManager.GetObject("report", resourceCulture);
  1234. return ((System.Drawing.Bitmap)(obj));
  1235. }
  1236. }
  1237. /// <summary>
  1238. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1239. /// </summary>
  1240. internal static System.Drawing.Bitmap requisition {
  1241. get {
  1242. object obj = ResourceManager.GetObject("requisition", resourceCulture);
  1243. return ((System.Drawing.Bitmap)(obj));
  1244. }
  1245. }
  1246. /// <summary>
  1247. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1248. /// </summary>
  1249. internal static System.Drawing.Bitmap revision {
  1250. get {
  1251. object obj = ResourceManager.GetObject("revision", resourceCulture);
  1252. return ((System.Drawing.Bitmap)(obj));
  1253. }
  1254. }
  1255. /// <summary>
  1256. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1257. /// </summary>
  1258. internal static System.Drawing.Bitmap rightarrow {
  1259. get {
  1260. object obj = ResourceManager.GetObject("rightarrow", resourceCulture);
  1261. return ((System.Drawing.Bitmap)(obj));
  1262. }
  1263. }
  1264. /// <summary>
  1265. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1266. /// </summary>
  1267. internal static System.Drawing.Bitmap sage {
  1268. get {
  1269. object obj = ResourceManager.GetObject("sage", resourceCulture);
  1270. return ((System.Drawing.Bitmap)(obj));
  1271. }
  1272. }
  1273. /// <summary>
  1274. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1275. /// </summary>
  1276. internal static System.Drawing.Bitmap schedule_disabled {
  1277. get {
  1278. object obj = ResourceManager.GetObject("schedule_disabled", resourceCulture);
  1279. return ((System.Drawing.Bitmap)(obj));
  1280. }
  1281. }
  1282. /// <summary>
  1283. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1284. /// </summary>
  1285. internal static System.Drawing.Bitmap schedule_enabled {
  1286. get {
  1287. object obj = ResourceManager.GetObject("schedule_enabled", resourceCulture);
  1288. return ((System.Drawing.Bitmap)(obj));
  1289. }
  1290. }
  1291. /// <summary>
  1292. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1293. /// </summary>
  1294. internal static System.Drawing.Bitmap schedule_overdue {
  1295. get {
  1296. object obj = ResourceManager.GetObject("schedule_overdue", resourceCulture);
  1297. return ((System.Drawing.Bitmap)(obj));
  1298. }
  1299. }
  1300. /// <summary>
  1301. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1302. /// </summary>
  1303. internal static System.Drawing.Bitmap script {
  1304. get {
  1305. object obj = ResourceManager.GetObject("script", resourceCulture);
  1306. return ((System.Drawing.Bitmap)(obj));
  1307. }
  1308. }
  1309. /// <summary>
  1310. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1311. /// </summary>
  1312. internal static System.Drawing.Bitmap securitygroup {
  1313. get {
  1314. object obj = ResourceManager.GetObject("securitygroup", resourceCulture);
  1315. return ((System.Drawing.Bitmap)(obj));
  1316. }
  1317. }
  1318. /// <summary>
  1319. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1320. /// </summary>
  1321. internal static System.Drawing.Bitmap service {
  1322. get {
  1323. object obj = ResourceManager.GetObject("service", resourceCulture);
  1324. return ((System.Drawing.Bitmap)(obj));
  1325. }
  1326. }
  1327. /// <summary>
  1328. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1329. /// </summary>
  1330. internal static System.Drawing.Bitmap shared {
  1331. get {
  1332. object obj = ResourceManager.GetObject("shared", resourceCulture);
  1333. return ((System.Drawing.Bitmap)(obj));
  1334. }
  1335. }
  1336. /// <summary>
  1337. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1338. /// </summary>
  1339. internal static System.Drawing.Bitmap sick {
  1340. get {
  1341. object obj = ResourceManager.GetObject("sick", resourceCulture);
  1342. return ((System.Drawing.Bitmap)(obj));
  1343. }
  1344. }
  1345. /// <summary>
  1346. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1347. /// </summary>
  1348. internal static System.Drawing.Bitmap small_add {
  1349. get {
  1350. object obj = ResourceManager.GetObject("small_add", resourceCulture);
  1351. return ((System.Drawing.Bitmap)(obj));
  1352. }
  1353. }
  1354. /// <summary>
  1355. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1356. /// </summary>
  1357. internal static System.Drawing.Bitmap small_delete {
  1358. get {
  1359. object obj = ResourceManager.GetObject("small_delete", resourceCulture);
  1360. return ((System.Drawing.Bitmap)(obj));
  1361. }
  1362. }
  1363. /// <summary>
  1364. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1365. /// </summary>
  1366. internal static System.Drawing.Bitmap small_edit {
  1367. get {
  1368. object obj = ResourceManager.GetObject("small_edit", resourceCulture);
  1369. return ((System.Drawing.Bitmap)(obj));
  1370. }
  1371. }
  1372. /// <summary>
  1373. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1374. /// </summary>
  1375. internal static System.Drawing.Bitmap smiley {
  1376. get {
  1377. object obj = ResourceManager.GetObject("smiley", resourceCulture);
  1378. return ((System.Drawing.Bitmap)(obj));
  1379. }
  1380. }
  1381. /// <summary>
  1382. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1383. /// </summary>
  1384. internal static System.Drawing.Bitmap spanner {
  1385. get {
  1386. object obj = ResourceManager.GetObject("spanner", resourceCulture);
  1387. return ((System.Drawing.Bitmap)(obj));
  1388. }
  1389. }
  1390. /// <summary>
  1391. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1392. /// </summary>
  1393. internal static System.Drawing.Bitmap specifications {
  1394. get {
  1395. object obj = ResourceManager.GetObject("specifications", resourceCulture);
  1396. return ((System.Drawing.Bitmap)(obj));
  1397. }
  1398. }
  1399. /// <summary>
  1400. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1401. /// </summary>
  1402. internal static System.Drawing.Bitmap speechbubble {
  1403. get {
  1404. object obj = ResourceManager.GetObject("speechbubble", resourceCulture);
  1405. return ((System.Drawing.Bitmap)(obj));
  1406. }
  1407. }
  1408. /// <summary>
  1409. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1410. /// </summary>
  1411. internal static System.Drawing.Bitmap splash_small {
  1412. get {
  1413. object obj = ResourceManager.GetObject("splash_small", resourceCulture);
  1414. return ((System.Drawing.Bitmap)(obj));
  1415. }
  1416. }
  1417. /// <summary>
  1418. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1419. /// </summary>
  1420. internal static System.Drawing.Bitmap split {
  1421. get {
  1422. object obj = ResourceManager.GetObject("split", resourceCulture);
  1423. return ((System.Drawing.Bitmap)(obj));
  1424. }
  1425. }
  1426. /// <summary>
  1427. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1428. /// </summary>
  1429. internal static System.Drawing.Bitmap square {
  1430. get {
  1431. object obj = ResourceManager.GetObject("square", resourceCulture);
  1432. return ((System.Drawing.Bitmap)(obj));
  1433. }
  1434. }
  1435. /// <summary>
  1436. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1437. /// </summary>
  1438. internal static System.Drawing.Bitmap stop {
  1439. get {
  1440. object obj = ResourceManager.GetObject("stop", resourceCulture);
  1441. return ((System.Drawing.Bitmap)(obj));
  1442. }
  1443. }
  1444. /// <summary>
  1445. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1446. /// </summary>
  1447. internal static System.Drawing.Bitmap supplier {
  1448. get {
  1449. object obj = ResourceManager.GetObject("supplier", resourceCulture);
  1450. return ((System.Drawing.Bitmap)(obj));
  1451. }
  1452. }
  1453. /// <summary>
  1454. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1455. /// </summary>
  1456. internal static System.Drawing.Bitmap target {
  1457. get {
  1458. object obj = ResourceManager.GetObject("target", resourceCulture);
  1459. return ((System.Drawing.Bitmap)(obj));
  1460. }
  1461. }
  1462. /// <summary>
  1463. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1464. /// </summary>
  1465. internal static System.Drawing.Bitmap taxcode {
  1466. get {
  1467. object obj = ResourceManager.GetObject("taxcode", resourceCulture);
  1468. return ((System.Drawing.Bitmap)(obj));
  1469. }
  1470. }
  1471. /// <summary>
  1472. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1473. /// </summary>
  1474. internal static System.Drawing.Bitmap team {
  1475. get {
  1476. object obj = ResourceManager.GetObject("team", resourceCulture);
  1477. return ((System.Drawing.Bitmap)(obj));
  1478. }
  1479. }
  1480. /// <summary>
  1481. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1482. /// </summary>
  1483. internal static System.Drawing.Bitmap template {
  1484. get {
  1485. object obj = ResourceManager.GetObject("template", resourceCulture);
  1486. return ((System.Drawing.Bitmap)(obj));
  1487. }
  1488. }
  1489. /// <summary>
  1490. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1491. /// </summary>
  1492. internal static System.Drawing.Bitmap text {
  1493. get {
  1494. object obj = ResourceManager.GetObject("text", resourceCulture);
  1495. return ((System.Drawing.Bitmap)(obj));
  1496. }
  1497. }
  1498. /// <summary>
  1499. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1500. /// </summary>
  1501. internal static System.Drawing.Bitmap tick {
  1502. get {
  1503. object obj = ResourceManager.GetObject("tick", resourceCulture);
  1504. return ((System.Drawing.Bitmap)(obj));
  1505. }
  1506. }
  1507. /// <summary>
  1508. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1509. /// </summary>
  1510. internal static System.Drawing.Bitmap tick_sml {
  1511. get {
  1512. object obj = ResourceManager.GetObject("tick_sml", resourceCulture);
  1513. return ((System.Drawing.Bitmap)(obj));
  1514. }
  1515. }
  1516. /// <summary>
  1517. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1518. /// </summary>
  1519. internal static System.Drawing.Bitmap time {
  1520. get {
  1521. object obj = ResourceManager.GetObject("time", resourceCulture);
  1522. return ((System.Drawing.Bitmap)(obj));
  1523. }
  1524. }
  1525. /// <summary>
  1526. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1527. /// </summary>
  1528. internal static System.Drawing.Bitmap trolley {
  1529. get {
  1530. object obj = ResourceManager.GetObject("trolley", resourceCulture);
  1531. return ((System.Drawing.Bitmap)(obj));
  1532. }
  1533. }
  1534. /// <summary>
  1535. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1536. /// </summary>
  1537. internal static System.Drawing.Bitmap truck {
  1538. get {
  1539. object obj = ResourceManager.GetObject("truck", resourceCulture);
  1540. return ((System.Drawing.Bitmap)(obj));
  1541. }
  1542. }
  1543. /// <summary>
  1544. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1545. /// </summary>
  1546. internal static System.Drawing.Bitmap unitofmeasure {
  1547. get {
  1548. object obj = ResourceManager.GetObject("unitofmeasure", resourceCulture);
  1549. return ((System.Drawing.Bitmap)(obj));
  1550. }
  1551. }
  1552. /// <summary>
  1553. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1554. /// </summary>
  1555. internal static System.Drawing.Bitmap uparrow {
  1556. get {
  1557. object obj = ResourceManager.GetObject("uparrow", resourceCulture);
  1558. return ((System.Drawing.Bitmap)(obj));
  1559. }
  1560. }
  1561. /// <summary>
  1562. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1563. /// </summary>
  1564. internal static System.Drawing.Bitmap upload {
  1565. get {
  1566. object obj = ResourceManager.GetObject("upload", resourceCulture);
  1567. return ((System.Drawing.Bitmap)(obj));
  1568. }
  1569. }
  1570. /// <summary>
  1571. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1572. /// </summary>
  1573. internal static System.Drawing.Bitmap user {
  1574. get {
  1575. object obj = ResourceManager.GetObject("user", resourceCulture);
  1576. return ((System.Drawing.Bitmap)(obj));
  1577. }
  1578. }
  1579. /// <summary>
  1580. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1581. /// </summary>
  1582. internal static System.Drawing.Bitmap v6 {
  1583. get {
  1584. object obj = ResourceManager.GetObject("v6", resourceCulture);
  1585. return ((System.Drawing.Bitmap)(obj));
  1586. }
  1587. }
  1588. /// <summary>
  1589. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1590. /// </summary>
  1591. internal static System.Drawing.Bitmap videorecording {
  1592. get {
  1593. object obj = ResourceManager.GetObject("videorecording", resourceCulture);
  1594. return ((System.Drawing.Bitmap)(obj));
  1595. }
  1596. }
  1597. /// <summary>
  1598. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1599. /// </summary>
  1600. internal static System.Drawing.Bitmap view {
  1601. get {
  1602. object obj = ResourceManager.GetObject("view", resourceCulture);
  1603. return ((System.Drawing.Bitmap)(obj));
  1604. }
  1605. }
  1606. /// <summary>
  1607. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1608. /// </summary>
  1609. internal static System.Drawing.Bitmap warehouse {
  1610. get {
  1611. object obj = ResourceManager.GetObject("warehouse", resourceCulture);
  1612. return ((System.Drawing.Bitmap)(obj));
  1613. }
  1614. }
  1615. /// <summary>
  1616. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1617. /// </summary>
  1618. internal static System.Drawing.Bitmap warning {
  1619. get {
  1620. object obj = ResourceManager.GetObject("warning", resourceCulture);
  1621. return ((System.Drawing.Bitmap)(obj));
  1622. }
  1623. }
  1624. /// <summary>
  1625. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1626. /// </summary>
  1627. internal static System.Drawing.Bitmap wrench {
  1628. get {
  1629. object obj = ResourceManager.GetObject("wrench", resourceCulture);
  1630. return ((System.Drawing.Bitmap)(obj));
  1631. }
  1632. }
  1633. }
  1634. }