xml tutorial gesucht

  • VB.NET

Es gibt 6 Antworten in diesem Thema. Der letzte Beitrag () ist von toto.

    xml tutorial gesucht

    Guten Morgen,
    ich suche ein gut erklärend XML Tutorial
    vom aufbau einer XML mit mehrere knoten
    bis zum Ausgabe in VB.Net

    vielen Dank im Voraus
    toto
    @ wenn möglich XML Linq
    lg toto

    Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von „toto“ ()

    @toto Ist das eine XML mit einer bestimmten Struktur?
    Kannst Du mal die XML posten?
    Falls Du diesen Code kopierst, achte auf die C&P-Bremse.
    Jede einzelne Zeile Deines Programms, die Du nicht explizit getestet hast, ist falsch :!:
    Ein guter .NET-Snippetkonverter (der ist verfügbar).
    Programmierfragen über PN / Konversation werden ignoriert!
    sorry, wie kann man ein Spoiler setzen?
    Die xml ist zu lang

    Spoiler anzeigen

    Quellcode

    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 2.0 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd">
    3. <score-partwise version="2.0">
    4. <movement-title>A Felicidade</movement-title>
    5. <identification>
    6. <creator type="composer">Antonio-Carlos Jobim</creator>
    7. <creator type="lyricist">Bossa Nova</creator>
    8. <rights>Made with iReal Pro</rights>
    9. <encoding>
    10. <software>iReal Pro 2020.7.1</software>
    11. <encoding-date>2020-08-11</encoding-date>
    12. <supports element="accidental" type="no"/>
    13. <supports element="transpose" type="no"/>
    14. <supports attribute="new-page" element="print" type="yes" value="yes"/>
    15. <supports attribute="new-system" element="print" type="yes" value="yes"/>
    16. </encoding>
    17. </identification>
    18. <defaults>
    19. <scaling>
    20. <millimeters>7</millimeters>
    21. <tenths>40</tenths>
    22. </scaling>
    23. <page-layout>
    24. <page-height>1700</page-height>
    25. <page-width>1200</page-width>
    26. <page-margins type="both">
    27. <left-margin>72</left-margin>
    28. <right-margin>72</right-margin>
    29. <top-margin>72</top-margin>
    30. <bottom-margin>72</bottom-margin>
    31. </page-margins>
    32. </page-layout>
    33. <system-layout>
    34. <system-margins>
    35. <left-margin>22</left-margin>
    36. <right-margin>0</right-margin>
    37. </system-margins>
    38. <system-distance>100</system-distance>
    39. <top-system-distance>73</top-system-distance>
    40. </system-layout>
    41. <?DoletiRealb StaffJustificationPercentage=65?>
    42. <appearance>
    43. <line-width type="beam">5</line-width>
    44. <line-width type="heavy barline">5</line-width>
    45. <line-width type="leger">1.5625</line-width>
    46. <line-width type="light barline">1.5625</line-width>
    47. <line-width type="slur middle">2.1875</line-width>
    48. <line-width type="slur tip">0.625</line-width>
    49. <line-width type="staff">0.9375</line-width>
    50. <line-width type="stem">0.9375</line-width>
    51. <line-width type="tie middle">2.1875</line-width>
    52. <line-width type="tie tip">0.625</line-width>
    53. <note-size type="grace">60</note-size>
    54. <note-size type="cue">75</note-size>
    55. </appearance>
    56. <music-font font-family="Opus,music"/>
    57. <word-font font-family="Times New Roman"/>
    58. </defaults>
    59. <part-list>
    60. <score-part id="P1">
    61. <part-name print-object="no">Lead sheet</part-name>
    62. </score-part>
    63. </part-list>
    64. <!--=========================================================-->
    65. <part id="P1">
    66. <measure number="1">
    67. <print>
    68. <system-layout>
    69. <top-system-distance>210</top-system-distance>
    70. </system-layout>
    71. </print>
    72. <attributes>
    73. <divisions>768</divisions>
    74. <key>
    75. <fifths>0</fifths>
    76. <mode>minor</mode>
    77. </key>
    78. <time>
    79. <beats>4</beats>
    80. <beat-type>4</beat-type>
    81. </time>
    82. <clef>
    83. <sign>G</sign>
    84. <line>2</line>
    85. </clef>
    86. </attributes>
    87. <barline location="left">
    88. <bar-style>heavy-light</bar-style>
    89. <repeat direction="forward"/>
    90. </barline>
    91. <direction placement="above">
    92. <direction-type>
    93. <rehearsal>A</rehearsal>
    94. </direction-type>
    95. </direction>
    96. <harmony print-frame="no" default-y="25" relative-x="10">
    97. <root>
    98. <root-step>A</root-step>
    99. <root-alter>0</root-alter>
    100. </root>
    101. <kind text="m7">minor-seventh</kind>
    102. </harmony>
    103. <note>
    104. <pitch>
    105. <step>B</step>
    106. <octave>4</octave>
    107. </pitch>
    108. <duration>3072</duration>
    109. <type>whole</type>
    110. <notehead>diamond</notehead>
    111. </note>
    112. </measure>
    113. <!--=========================================================-->
    114. <measure number="2">
    115. <print/>
    116. <attributes/>
    117. <harmony print-frame="no" default-y="25" relative-x="10">
    118. <root>
    119. <root-step>A</root-step>
    120. <root-alter>0</root-alter>
    121. </root>
    122. <kind text="m7">minor-seventh</kind>
    123. </harmony>
    124. <note>
    125. <pitch>
    126. <step>B</step>
    127. <octave>4</octave>
    128. </pitch>
    129. <duration>3072</duration>
    130. <type>whole</type>
    131. <notehead>diamond</notehead>
    132. </note>
    133. </measure>
    134. <!--=========================================================-->
    135. <measure number="3">
    136. <print/>
    137. <attributes/>
    138. <harmony print-frame="no" default-y="25" relative-x="10">
    139. <root>
    140. <root-step>C</root-step>
    141. <root-alter>0</root-alter>
    142. </root>
    143. <kind text="maj7">major-seventh</kind>
    144. </harmony>
    145. <note>
    146. <pitch>
    147. <step>B</step>
    148. <octave>4</octave>
    149. </pitch>
    150. <duration>3072</duration>
    151. <type>whole</type>
    152. <notehead>diamond</notehead>
    153. </note>
    154. </measure>
    155. <!--=========================================================-->
    156. <measure number="4">
    157. <print/>
    158. <attributes/>
    159. <harmony print-frame="no" default-y="25" relative-x="10">
    160. <root>
    161. <root-step>C</root-step>
    162. <root-alter>0</root-alter>
    163. </root>
    164. <kind text="maj7">major-seventh</kind>
    165. </harmony>
    166. <note>
    167. <pitch>
    168. <step>B</step>
    169. <octave>4</octave>
    170. </pitch>
    171. <duration>3072</duration>
    172. <type>whole</type>
    173. <notehead>diamond</notehead>
    174. </note>
    175. </measure>
    176. <!--=========================================================-->
    177. <measure number="5">
    178. <print new-system="yes"/>
    179. <attributes/>
    180. <harmony print-frame="no" default-y="25" relative-x="10">
    181. <root>
    182. <root-step>E</root-step>
    183. <root-alter>0</root-alter>
    184. </root>
    185. <kind text="m7">minor-seventh</kind>
    186. </harmony>
    187. <note>
    188. <pitch>
    189. <step>B</step>
    190. <octave>4</octave>
    191. </pitch>
    192. <duration>3072</duration>
    193. <type>whole</type>
    194. <notehead>diamond</notehead>
    195. </note>
    196. </measure>
    197. <!--=========================================================-->
    198. <measure number="6">
    199. <print/>
    200. <attributes/>
    201. <harmony print-frame="no" default-y="25" relative-x="10">
    202. <root>
    203. <root-step>B</root-step>
    204. <root-alter>0</root-alter>
    205. </root>
    206. <kind text="7" parentheses-degrees="yes">dominant</kind>
    207. <degree>
    208. <degree-value>9</degree-value>
    209. <degree-alter>-1</degree-alter>
    210. <degree-type>add</degree-type>
    211. </degree>
    212. </harmony>
    213. <note>
    214. <pitch>
    215. <step>B</step>
    216. <octave>4</octave>
    217. </pitch>
    218. <duration>3072</duration>
    219. <type>whole</type>
    220. <notehead>diamond</notehead>
    221. </note>
    222. </measure>
    223. <!--=========================================================-->
    224. <measure number="7">
    225. <print/>
    226. <attributes/>
    227. <direction placement="above">
    228. <direction-type>
    229. <words>(repeat optional)</words>
    230. </direction-type>
    231. </direction>
    232. <harmony print-frame="no" default-y="25" relative-x="10">
    233. <root>
    234. <root-step>E</root-step>
    235. <root-alter>0</root-alter>
    236. </root>
    237. <kind text="m7">minor-seventh</kind>
    238. </harmony>
    239. <note>
    240. <pitch>
    241. <step>B</step>
    242. <octave>4</octave>
    243. </pitch>
    244. <duration>1536</duration>
    245. <type>half</type>
    246. <notehead>diamond</notehead>
    247. </note>
    248. <harmony print-frame="no" default-y="25" relative-x="10">
    249. <root>
    250. <root-step>A</root-step>
    251. <root-alter>0</root-alter>
    252. </root>
    253. <kind text="7">dominant</kind>
    254. </harmony>
    255. <note>
    256. <pitch>
    257. <step>B</step>
    258. <octave>4</octave>
    259. </pitch>
    260. <duration>1536</duration>
    261. <type>half</type>
    262. <notehead>diamond</notehead>
    263. </note>
    264. </measure>
    265. <!--=========================================================-->
    266. <measure number="8">
    267. <print/>
    268. <attributes/>
    269. <barline location="right">
    270. <bar-style>light-heavy</bar-style>
    271. <repeat direction="backward"/>
    272. </barline>
    273. <harmony print-frame="no" default-y="25" relative-x="10">
    274. <root>
    275. <root-step>D</root-step>
    276. <root-alter>0</root-alter>
    277. </root>
    278. <kind text="m7">minor-seventh</kind>
    279. </harmony>
    280. <note>
    281. <pitch>
    282. <step>B</step>
    283. <octave>4</octave>
    284. </pitch>
    285. <duration>1536</duration>
    286. <type>half</type>
    287. <notehead>diamond</notehead>
    288. </note>
    289. <harmony print-frame="no" default-y="25" relative-x="10">
    290. <root>
    291. <root-step>G</root-step>
    292. <root-alter>0</root-alter>
    293. </root>
    294. <kind text="7">dominant</kind>
    295. </harmony>
    296. <note>
    297. <pitch>
    298. <step>B</step>
    299. <octave>4</octave>
    300. </pitch>
    301. <duration>1536</duration>
    302. <type>half</type>
    303. <notehead>diamond</notehead>
    304. </note>
    305. </measure>
    306. <!--=========================================================-->
    307. <measure number="9">
    308. <print new-system="yes"/>
    309. <attributes/>
    310. <direction placement="above">
    311. <direction-type>
    312. <rehearsal>B</rehearsal>
    313. </direction-type>
    314. </direction>
    315. <harmony print-frame="no" default-y="25" relative-x="10">
    316. <root>
    317. <root-step>C</root-step>
    318. <root-alter>0</root-alter>
    319. </root>
    320. <kind text="maj7">major-seventh</kind>
    321. </harmony>
    322. <note>
    323. <pitch>
    324. <step>B</step>
    325. <octave>4</octave>
    326. </pitch>
    327. <duration>3072</duration>
    328. <type>whole</type>
    329. <notehead>diamond</notehead>
    330. </note>
    331. </measure>
    332. <!--=========================================================-->
    333. <measure number="10">
    334. <print/>
    335. <attributes/>
    336. <harmony print-frame="no" default-y="25" relative-x="10">
    337. <root>
    338. <root-step>C</root-step>
    339. <root-alter>0</root-alter>
    340. </root>
    341. <kind text="maj7">major-seventh</kind>
    342. </harmony>
    343. <note>
    344. <pitch>
    345. <step>B</step>
    346. <octave>4</octave>
    347. </pitch>
    348. <duration>3072</duration>
    349. <type>whole</type>
    350. <notehead>diamond</notehead>
    351. </note>
    352. </measure>
    353. <!--=========================================================-->
    354. <measure number="11">
    355. <print/>
    356. <attributes/>
    357. <harmony print-frame="no" default-y="25" relative-x="10">
    358. <root>
    359. <root-step>B</root-step>
    360. <root-alter>0</root-alter>
    361. </root>
    362. <kind text="m7" parentheses-degrees="yes">minor-seventh</kind>
    363. <degree>
    364. <degree-value>5</degree-value>
    365. <degree-alter>-1</degree-alter>
    366. <degree-type>alter</degree-type>
    367. </degree>
    368. </harmony>
    369. <note>
    370. <pitch>
    371. <step>B</step>
    372. <octave>4</octave>
    373. </pitch>
    374. <duration>3072</duration>
    375. <type>whole</type>
    376. <notehead>diamond</notehead>
    377. </note>
    378. </measure>
    379. <!--=========================================================-->
    380. <measure number="12">
    381. <print/>
    382. <attributes/>
    383. <harmony print-frame="no" default-y="25" relative-x="10">
    384. <root>
    385. <root-step>E</root-step>
    386. <root-alter>0</root-alter>
    387. </root>
    388. <kind text="7" parentheses-degrees="yes">dominant</kind>
    389. <degree>
    390. <degree-value>9</degree-value>
    391. <degree-alter>-1</degree-alter>
    392. <degree-type>add</degree-type>
    393. </degree>
    394. </harmony>
    395. <note>
    396. <pitch>
    397. <step>B</step>
    398. <octave>4</octave>
    399. </pitch>
    400. <duration>3072</duration>
    401. <type>whole</type>
    402. <notehead>diamond</notehead>
    403. </note>
    404. </measure>
    405. <!--=========================================================-->
    406. <measure number="13">
    407. <print new-system="yes"/>
    408. <attributes/>
    409. <harmony print-frame="no" default-y="25" relative-x="10">
    410. <root>
    411. <root-step>A</root-step>
    412. <root-alter>0</root-alter>
    413. </root>
    414. <kind text="m7">minor-seventh</kind>
    415. </harmony>
    416. <note>
    417. <pitch>
    418. <step>B</step>
    419. <octave>4</octave>
    420. </pitch>
    421. <duration>3072</duration>
    422. <type>whole</type>
    423. <notehead>diamond</notehead>
    424. </note>
    425. </measure>
    426. <!--=========================================================-->
    427. <measure number="14">
    428. <print/>
    429. <attributes/>
    430. <harmony print-frame="no" default-y="25" relative-x="10">
    431. <root>
    432. <root-step>A</root-step>
    433. <root-alter>0</root-alter>
    434. </root>
    435. <kind text="m7">minor-seventh</kind>
    436. </harmony>
    437. <note>
    438. <pitch>
    439. <step>B</step>
    440. <octave>4</octave>
    441. </pitch>
    442. <duration>3072</duration>
    443. <type>whole</type>
    444. <notehead>diamond</notehead>
    445. </note>
    446. </measure>
    447. <!--=========================================================-->
    448. <measure number="15">
    449. <print/>
    450. <attributes/>
    451. <harmony print-frame="no" default-y="25" relative-x="10">
    452. <root>
    453. <root-step>G</root-step>
    454. <root-alter>0</root-alter>
    455. </root>
    456. <kind text="m7">minor-seventh</kind>
    457. </harmony>
    458. <note>
    459. <pitch>
    460. <step>B</step>
    461. <octave>4</octave>
    462. </pitch>
    463. <duration>3072</duration>
    464. <type>whole</type>
    465. <notehead>diamond</notehead>
    466. </note>
    467. </measure>
    468. <!--=========================================================-->
    469. <measure number="16">
    470. <print/>
    471. <attributes/>
    472. <harmony print-frame="no" default-y="25" relative-x="10">
    473. <root>
    474. <root-step>C</root-step>
    475. <root-alter>0</root-alter>
    476. </root>
    477. <kind text="7">dominant</kind>
    478. </harmony>
    479. <note>
    480. <pitch>
    481. <step>B</step>
    482. <octave>4</octave>
    483. </pitch>
    484. <duration>3072</duration>
    485. <type>whole</type>
    486. <notehead>diamond</notehead>
    487. </note>
    488. </measure>
    489. <!--=========================================================-->
    490. <measure number="17">
    491. <print new-system="yes"/>
    492. <attributes/>
    493. <harmony print-frame="no" default-y="25" relative-x="10">
    494. <root>
    495. <root-step>F</root-step>
    496. <root-alter>0</root-alter>
    497. </root>
    498. <kind text="maj7">major-seventh</kind>
    499. </harmony>
    500. <note>
    501. <pitch>
    502. <step>B</step>
    503. <octave>4</octave>
    504. </pitch>
    505. <duration>3072</duration>
    506. <type>whole</type>
    507. <notehead>diamond</notehead>
    508. </note>
    509. </measure>
    510. <!--=========================================================-->
    511. <measure number="18">
    512. <print/>
    513. <attributes/>
    514. <harmony print-frame="no" default-y="25" relative-x="10">
    515. <root>
    516. <root-step>D</root-step>
    517. <root-alter>0</root-alter>
    518. </root>
    519. <kind text="m7">minor-seventh</kind>
    520. </harmony>
    521. <note>
    522. <pitch>
    523. <step>B</step>
    524. <octave>4</octave>
    525. </pitch>
    526. <duration>3072</duration>
    527. <type>whole</type>
    528. <notehead>diamond</notehead>
    529. </note>
    530. </measure>
    531. <!--=========================================================-->
    532. <measure number="19">
    533. <print/>
    534. <attributes/>
    535. <harmony print-frame="no" default-y="25" relative-x="10">
    536. <root>
    537. <root-step>A</root-step>
    538. <root-alter>0</root-alter>
    539. </root>
    540. <kind text="m7">minor-seventh</kind>
    541. </harmony>
    542. <note>
    543. <pitch>
    544. <step>B</step>
    545. <octave>4</octave>
    546. </pitch>
    547. <duration>3072</duration>
    548. <type>whole</type>
    549. <notehead>diamond</notehead>
    550. </note>
    551. </measure>
    552. <!--=========================================================-->
    553. <measure number="20">
    554. <print/>
    555. <attributes/>
    556. <harmony print-frame="no" default-y="25" relative-x="10">
    557. <root>
    558. <root-step>D</root-step>
    559. <root-alter>0</root-alter>
    560. </root>
    561. <kind text="7">dominant</kind>
    562. </harmony>
    563. <note>
    564. <pitch>
    565. <step>B</step>
    566. <octave>4</octave>
    567. </pitch>
    568. <duration>3072</duration>
    569. <type>whole</type>
    570. <notehead>diamond</notehead>
    571. </note>
    572. </measure>
    573. <!--=========================================================-->
    574. <measure number="21">
    575. <print new-system="yes"/>
    576. <attributes/>
    577. <harmony print-frame="no" default-y="25" relative-x="10">
    578. <root>
    579. <root-step>A</root-step>
    580. <root-alter>0</root-alter>
    581. </root>
    582. <kind text="m7">minor-seventh</kind>
    583. </harmony>
    584. <note>
    585. <pitch>
    586. <step>B</step>
    587. <octave>4</octave>
    588. </pitch>
    589. <duration>3072</duration>
    590. <type>whole</type>
    591. <notehead>diamond</notehead>
    592. </note>
    593. </measure>
    594. <!--=========================================================-->
    595. <measure number="22">
    596. <print/>
    597. <attributes/>
    598. <harmony print-frame="no" default-y="25" relative-x="10">
    599. <root>
    600. <root-step>B</root-step>
    601. <root-alter>0</root-alter>
    602. </root>
    603. <kind text="m7" parentheses-degrees="yes">minor-seventh</kind>
    604. <degree>
    605. <degree-value>5</degree-value>
    606. <degree-alter>-1</degree-alter>
    607. <degree-type>alter</degree-type>
    608. </degree>
    609. </harmony>
    610. <note>
    611. <pitch>
    612. <step>B</step>
    613. <octave>4</octave>
    614. </pitch>
    615. <duration>1536</duration>
    616. <type>half</type>
    617. <notehead>diamond</notehead>
    618. </note>
    619. <harmony print-frame="no" default-y="25" relative-x="10">
    620. <root>
    621. <root-step>E</root-step>
    622. <root-alter>0</root-alter>
    623. </root>
    624. <kind text="7" parentheses-degrees="yes">dominant</kind>
    625. <degree>
    626. <degree-value>9</degree-value>
    627. <degree-alter>-1</degree-alter>
    628. <degree-type>add</degree-type>
    629. </degree>
    630. </harmony>
    631. <note>
    632. <pitch>
    633. <step>B</step>
    634. <octave>4</octave>
    635. </pitch>
    636. <duration>1536</duration>
    637. <type>half</type>
    638. <notehead>diamond</notehead>
    639. </note>
    640. </measure>
    641. <!--=========================================================-->
    642. <measure number="23">
    643. <print/>
    644. <attributes/>
    645. <harmony print-frame="no" default-y="25" relative-x="10">
    646. <root>
    647. <root-step>A</root-step>
    648. <root-alter>0</root-alter>
    649. </root>
    650. <kind text="m7">minor-seventh</kind>
    651. </harmony>
    652. <note>
    653. <pitch>
    654. <step>B</step>
    655. <octave>4</octave>
    656. </pitch>
    657. <duration>3072</duration>
    658. <type>whole</type>
    659. <notehead>diamond</notehead>
    660. </note>
    661. </measure>
    662. <!--=========================================================-->
    663. <measure number="24">
    664. <print/>
    665. <attributes/>
    666. <barline location="right">
    667. <bar-style>light-light</bar-style>
    668. </barline>
    669. <harmony print-frame="no" default-y="25" relative-x="10">
    670. <root>
    671. <root-step>G</root-step>
    672. <root-alter>0</root-alter>
    673. </root>
    674. <kind text="7">dominant</kind>
    675. </harmony>
    676. <note>
    677. <pitch>
    678. <step>B</step>
    679. <octave>4</octave>
    680. </pitch>
    681. <duration>3072</duration>
    682. <type>whole</type>
    683. <notehead>diamond</notehead>
    684. </note>
    685. </measure>
    686. <!--=========================================================-->
    687. <measure number="25">
    688. <print new-system="yes"/>
    689. <attributes/>
    690. <barline location="left">
    691. <bar-style>light-light</bar-style>
    692. </barline>
    693. <direction placement="above">
    694. <direction-type>
    695. <rehearsal>C</rehearsal>
    696. </direction-type>
    697. </direction>
    698. <harmony print-frame="no" default-y="25" relative-x="10">
    699. <root>
    700. <root-step>C</root-step>
    701. <root-alter>0</root-alter>
    702. </root>
    703. <kind text="maj7">major-seventh</kind>
    704. </harmony>
    705. <note>
    706. <pitch>
    707. <step>B</step>
    708. <octave>4</octave>
    709. </pitch>
    710. <duration>3072</duration>
    711. <type>whole</type>
    712. <notehead>diamond</notehead>
    713. </note>
    714. </measure>
    715. <!--=========================================================-->
    716. <measure number="26">
    717. <print/>
    718. <attributes/>
    719. <harmony print-frame="no" default-y="25" relative-x="10">
    720. <root>
    721. <root-step>F</root-step>
    722. <root-alter>0</root-alter>
    723. </root>
    724. <kind text="7">dominant</kind>
    725. </harmony>
    726. <note>
    727. <pitch>
    728. <step>B</step>
    729. <octave>4</octave>
    730. </pitch>
    731. <duration>3072</duration>
    732. <type>whole</type>
    733. <notehead>diamond</notehead>
    734. </note>
    735. </measure>
    736. <!--=========================================================-->
    737. <measure number="27">
    738. <print/>
    739. <attributes/>
    740. <harmony print-frame="no" default-y="25" relative-x="10">
    741. <root>
    742. <root-step>C</root-step>
    743. <root-alter>0</root-alter>
    744. </root>
    745. <kind text="maj7">major-seventh</kind>
    746. </harmony>
    747. <note>
    748. <pitch>
    749. <step>B</step>
    750. <octave>4</octave>
    751. </pitch>
    752. <duration>3072</duration>
    753. <type>whole</type>
    754. <notehead>diamond</notehead>
    755. </note>
    756. </measure>
    757. <!--=========================================================-->
    758. <measure number="28">
    759. <print/>
    760. <attributes/>
    761. <harmony print-frame="no" default-y="25" relative-x="10">
    762. <root>
    763. <root-step>C</root-step>
    764. <root-alter>0</root-alter>
    765. </root>
    766. <kind text="maj7">major-seventh</kind>
    767. </harmony>
    768. <note>
    769. <pitch>
    770. <step>B</step>
    771. <octave>4</octave>
    772. </pitch>
    773. <duration>3072</duration>
    774. <type>whole</type>
    775. <notehead>diamond</notehead>
    776. </note>
    777. </measure>
    778. <!--=========================================================-->
    779. <measure number="29">
    780. <print new-system="yes"/>
    781. <attributes/>
    782. <harmony print-frame="no" default-y="25" relative-x="10">
    783. <root>
    784. <root-step>G</root-step>
    785. <root-alter>0</root-alter>
    786. </root>
    787. <kind text="m7">minor-seventh</kind>
    788. </harmony>
    789. <note>
    790. <pitch>
    791. <step>B</step>
    792. <octave>4</octave>
    793. </pitch>
    794. <duration>3072</duration>
    795. <type>whole</type>
    796. <notehead>diamond</notehead>
    797. </note>
    798. </measure>
    799. <!--=========================================================-->
    800. <measure number="30">
    801. <print/>
    802. <attributes/>
    803. <harmony print-frame="no" default-y="25" relative-x="10">
    804. <root>
    805. <root-step>C</root-step>
    806. <root-alter>0</root-alter>
    807. </root>
    808. <kind text="7">dominant</kind>
    809. </harmony>
    810. <note>
    811. <pitch>
    812. <step>B</step>
    813. <octave>4</octave>
    814. </pitch>
    815. <duration>3072</duration>
    816. <type>whole</type>
    817. <notehead>diamond</notehead>
    818. </note>
    819. </measure>
    820. <!--=========================================================-->
    821. <measure number="31">
    822. <print/>
    823. <attributes/>
    824. <harmony print-frame="no" default-y="25" relative-x="10">
    825. <root>
    826. <root-step>F</root-step>
    827. <root-alter>0</root-alter>
    828. </root>
    829. <kind text="maj7">major-seventh</kind>
    830. </harmony>
    831. <note>
    832. <pitch>
    833. <step>B</step>
    834. <octave>4</octave>
    835. </pitch>
    836. <duration>3072</duration>
    837. <type>whole</type>
    838. <notehead>diamond</notehead>
    839. </note>
    840. </measure>
    841. <!--=========================================================-->
    842. <measure number="32">
    843. <print/>
    844. <attributes/>
    845. <harmony print-frame="no" default-y="25" relative-x="10">
    846. <root>
    847. <root-step>F</root-step>
    848. <root-alter>0</root-alter>
    849. </root>
    850. <kind text="maj7">major-seventh</kind>
    851. </harmony>
    852. <note>
    853. <pitch>
    854. <step>B</step>
    855. <octave>4</octave>
    856. </pitch>
    857. <duration>3072</duration>
    858. <type>whole</type>
    859. <notehead>diamond</notehead>
    860. </note>
    861. </measure>
    862. <!--=========================================================-->
    863. <measure number="33">
    864. <print new-system="yes"/>
    865. <attributes/>
    866. <harmony print-frame="no" default-y="25" relative-x="10">
    867. <root>
    868. <root-step>D</root-step>
    869. <root-alter>0</root-alter>
    870. </root>
    871. <kind text="m7">minor-seventh</kind>
    872. </harmony>
    873. <note>
    874. <pitch>
    875. <step>B</step>
    876. <octave>4</octave>
    877. </pitch>
    878. <duration>3072</duration>
    879. <type>whole</type>
    880. <notehead>diamond</notehead>
    881. </note>
    882. </measure>
    883. <!--=========================================================-->
    884. <measure number="34">
    885. <print/>
    886. <attributes/>
    887. <harmony print-frame="no" default-y="25" relative-x="10">
    888. <root>
    889. <root-step>G</root-step>
    890. <root-alter>0</root-alter>
    891. </root>
    892. <kind text="7">dominant</kind>
    893. </harmony>
    894. <note>
    895. <pitch>
    896. <step>B</step>
    897. <octave>4</octave>
    898. </pitch>
    899. <duration>3072</duration>
    900. <type>whole</type>
    901. <notehead>diamond</notehead>
    902. </note>
    903. </measure>
    904. <!--=========================================================-->
    905. <measure number="35">
    906. <print/>
    907. <attributes/>
    908. <harmony print-frame="no" default-y="25" relative-x="10">
    909. <root>
    910. <root-step>C</root-step>
    911. <root-alter>0</root-alter>
    912. </root>
    913. <kind text="maj7">major-seventh</kind>
    914. </harmony>
    915. <note>
    916. <pitch>
    917. <step>B</step>
    918. <octave>4</octave>
    919. </pitch>
    920. <duration>3072</duration>
    921. <type>whole</type>
    922. <notehead>diamond</notehead>
    923. </note>
    924. </measure>
    925. <!--=========================================================-->
    926. <measure number="36">
    927. <print/>
    928. <attributes/>
    929. <harmony print-frame="no" default-y="25" relative-x="10">
    930. <root>
    931. <root-step>C</root-step>
    932. <root-alter>0</root-alter>
    933. </root>
    934. <kind text="maj7">major-seventh</kind>
    935. </harmony>
    936. <note>
    937. <pitch>
    938. <step>B</step>
    939. <octave>4</octave>
    940. </pitch>
    941. <duration>3072</duration>
    942. <type>whole</type>
    943. <notehead>diamond</notehead>
    944. </note>
    945. </measure>
    946. <!--=========================================================-->
    947. <measure number="37">
    948. <print new-system="yes"/>
    949. <attributes/>
    950. <harmony print-frame="no" default-y="25" relative-x="10">
    951. <root>
    952. <root-step>F</root-step>
    953. <root-alter>1</root-alter>
    954. </root>
    955. <kind text="m7" parentheses-degrees="yes">minor-seventh</kind>
    956. <degree>
    957. <degree-value>5</degree-value>
    958. <degree-alter>-1</degree-alter>
    959. <degree-type>alter</degree-type>
    960. </degree>
    961. </harmony>
    962. <note>
    963. <pitch>
    964. <step>B</step>
    965. <octave>4</octave>
    966. </pitch>
    967. <duration>3072</duration>
    968. <type>whole</type>
    969. <notehead>diamond</notehead>
    970. </note>
    971. </measure>
    972. <!--=========================================================-->
    973. <measure number="38">
    974. <print/>
    975. <attributes/>
    976. <harmony print-frame="no" default-y="25" relative-x="10">
    977. <root>
    978. <root-step>B</root-step>
    979. <root-alter>0</root-alter>
    980. </root>
    981. <kind text="7" parentheses-degrees="yes">dominant</kind>
    982. <degree>
    983. <degree-value>9</degree-value>
    984. <degree-alter>-1</degree-alter>
    985. <degree-type>add</degree-type>
    986. </degree>
    987. </harmony>
    988. <note>
    989. <pitch>
    990. <step>B</step>
    991. <octave>4</octave>
    992. </pitch>
    993. <duration>3072</duration>
    994. <type>whole</type>
    995. <notehead>diamond</notehead>
    996. </note>
    997. </measure>
    998. <!--=========================================================-->
    999. <measure number="39">
    1000. <print/>
    1001. <attributes/>
    1002. <harmony print-frame="no" default-y="25" relative-x="10">
    1003. <root>
    1004. <root-step>E</root-step>
    1005. <root-alter>0</root-alter>
    1006. </root>
    1007. <kind text="m7">minor-seventh</kind>
    1008. </harmony>
    1009. <note>
    1010. <pitch>
    1011. <step>B</step>
    1012. <octave>4</octave>
    1013. </pitch>
    1014. <duration>1536</duration>
    1015. <type>half</type>
    1016. <notehead>diamond</notehead>
    1017. </note>
    1018. <harmony print-frame="no" default-y="25" relative-x="10">
    1019. <root>
    1020. <root-step>A</root-step>
    1021. <root-alter>0</root-alter>
    1022. </root>
    1023. <kind text="7">dominant</kind>
    1024. </harmony>
    1025. <note>
    1026. <pitch>
    1027. <step>B</step>
    1028. <octave>4</octave>
    1029. </pitch>
    1030. <duration>1536</duration>
    1031. <type>half</type>
    1032. <notehead>diamond</notehead>
    1033. </note>
    1034. </measure>
    1035. <!--=========================================================-->
    1036. <measure number="40">
    1037. <print/>
    1038. <attributes/>
    1039. <barline location="right">
    1040. <bar-style>light-light</bar-style>
    1041. </barline>
    1042. <harmony print-frame="no" default-y="25" relative-x="10">
    1043. <root>
    1044. <root-step>D</root-step>
    1045. <root-alter>0</root-alter>
    1046. </root>
    1047. <kind text="m7">minor-seventh</kind>
    1048. </harmony>
    1049. <note>
    1050. <pitch>
    1051. <step>B</step>
    1052. <octave>4</octave>
    1053. </pitch>
    1054. <duration>1536</duration>
    1055. <type>half</type>
    1056. <notehead>diamond</notehead>
    1057. </note>
    1058. <harmony print-frame="no" default-y="25" relative-x="10">
    1059. <root>
    1060. <root-step>G</root-step>
    1061. <root-alter>0</root-alter>
    1062. </root>
    1063. <kind text="7">dominant</kind>
    1064. </harmony>
    1065. <note>
    1066. <pitch>
    1067. <step>B</step>
    1068. <octave>4</octave>
    1069. </pitch>
    1070. <duration>1536</duration>
    1071. <type>half</type>
    1072. <notehead>diamond</notehead>
    1073. </note>
    1074. </measure>
    1075. <!--=========================================================-->
    1076. <measure number="41">
    1077. <print new-system="yes"/>
    1078. <attributes/>
    1079. <barline location="left">
    1080. <bar-style>light-light</bar-style>
    1081. </barline>
    1082. <direction placement="above">
    1083. <direction-type>
    1084. <rehearsal>D</rehearsal>
    1085. </direction-type>
    1086. </direction>
    1087. <harmony print-frame="no" default-y="25" relative-x="10">
    1088. <root>
    1089. <root-step>A</root-step>
    1090. <root-alter>0</root-alter>
    1091. </root>
    1092. <kind text="m7">minor-seventh</kind>
    1093. </harmony>
    1094. <note>
    1095. <pitch>
    1096. <step>B</step>
    1097. <octave>4</octave>
    1098. </pitch>
    1099. <duration>3072</duration>
    1100. <type>whole</type>
    1101. <notehead>diamond</notehead>
    1102. </note>
    1103. </measure>
    1104. <!--=========================================================-->
    1105. <measure number="42">
    1106. <print/>
    1107. <attributes/>
    1108. <harmony print-frame="no" default-y="25" relative-x="10">
    1109. <root>
    1110. <root-step>A</root-step>
    1111. <root-alter>0</root-alter>
    1112. </root>
    1113. <kind text="m7">minor-seventh</kind>
    1114. <bass>
    1115. <bass-step>G</bass-step>
    1116. </bass>
    1117. </harmony>
    1118. <note>
    1119. <pitch>
    1120. <step>B</step>
    1121. <octave>4</octave>
    1122. </pitch>
    1123. <duration>3072</duration>
    1124. <type>whole</type>
    1125. <notehead>diamond</notehead>
    1126. </note>
    1127. </measure>
    1128. <!--=========================================================-->
    1129. <measure number="43">
    1130. <print/>
    1131. <attributes/>
    1132. <harmony print-frame="no" default-y="25" relative-x="10">
    1133. <root>
    1134. <root-step>D</root-step>
    1135. <root-alter>0</root-alter>
    1136. </root>
    1137. <kind text="7">dominant</kind>
    1138. <bass>
    1139. <bass-step>F</bass-step>
    1140. <bass-alter>1</bass-alter>
    1141. </bass>
    1142. </harmony>
    1143. <note>
    1144. <pitch>
    1145. <step>B</step>
    1146. <octave>4</octave>
    1147. </pitch>
    1148. <duration>3072</duration>
    1149. <type>whole</type>
    1150. <notehead>diamond</notehead>
    1151. </note>
    1152. </measure>
    1153. <!--=========================================================-->
    1154. <measure number="44">
    1155. <print/>
    1156. <attributes/>
    1157. <harmony print-frame="no" default-y="25" relative-x="10">
    1158. <root>
    1159. <root-step>D</root-step>
    1160. <root-alter>0</root-alter>
    1161. </root>
    1162. <kind text="m7">minor-seventh</kind>
    1163. <bass>
    1164. <bass-step>F</bass-step>
    1165. </bass>
    1166. </harmony>
    1167. <note>
    1168. <pitch>
    1169. <step>B</step>
    1170. <octave>4</octave>
    1171. </pitch>
    1172. <duration>3072</duration>
    1173. <type>whole</type>
    1174. <notehead>diamond</notehead>
    1175. </note>
    1176. </measure>
    1177. <!--=========================================================-->
    1178. <measure number="45">
    1179. <print new-system="yes"/>
    1180. <attributes/>
    1181. <harmony print-frame="no" default-y="25" relative-x="10">
    1182. <root>
    1183. <root-step>A</root-step>
    1184. <root-alter>0</root-alter>
    1185. </root>
    1186. <kind text="m7">minor-seventh</kind>
    1187. </harmony>
    1188. <note>
    1189. <pitch>
    1190. <step>B</step>
    1191. <octave>4</octave>
    1192. </pitch>
    1193. <duration>3072</duration>
    1194. <type>whole</type>
    1195. <notehead>diamond</notehead>
    1196. </note>
    1197. </measure>
    1198. <!--=========================================================-->
    1199. <measure number="46">
    1200. <print/>
    1201. <attributes/>
    1202. <harmony print-frame="no" default-y="25" relative-x="10">
    1203. <root>
    1204. <root-step>B</root-step>
    1205. <root-alter>0</root-alter>
    1206. </root>
    1207. <kind text="m7" parentheses-degrees="yes">minor-seventh</kind>
    1208. <degree>
    1209. <degree-value>5</degree-value>
    1210. <degree-alter>-1</degree-alter>
    1211. <degree-type>alter</degree-type>
    1212. </degree>
    1213. </harmony>
    1214. <note>
    1215. <pitch>
    1216. <step>B</step>
    1217. <octave>4</octave>
    1218. </pitch>
    1219. <duration>1536</duration>
    1220. <type>half</type>
    1221. <notehead>diamond</notehead>
    1222. </note>
    1223. <harmony print-frame="no" default-y="25" relative-x="10">
    1224. <root>
    1225. <root-step>E</root-step>
    1226. <root-alter>0</root-alter>
    1227. </root>
    1228. <kind text="7" parentheses-degrees="yes">dominant</kind>
    1229. <degree>
    1230. <degree-value>9</degree-value>
    1231. <degree-alter>-1</degree-alter>
    1232. <degree-type>add</degree-type>
    1233. </degree>
    1234. </harmony>
    1235. <note>
    1236. <pitch>
    1237. <step>B</step>
    1238. <octave>4</octave>
    1239. </pitch>
    1240. <duration>1536</duration>
    1241. <type>half</type>
    1242. <notehead>diamond</notehead>
    1243. </note>
    1244. </measure>
    1245. <!--=========================================================-->
    1246. <measure number="47">
    1247. <print/>
    1248. <attributes/>
    1249. <harmony print-frame="no" default-y="25" relative-x="10">
    1250. <root>
    1251. <root-step>A</root-step>
    1252. <root-alter>0</root-alter>
    1253. </root>
    1254. <kind text="m7">minor-seventh</kind>
    1255. </harmony>
    1256. <note>
    1257. <pitch>
    1258. <step>B</step>
    1259. <octave>4</octave>
    1260. </pitch>
    1261. <duration>3072</duration>
    1262. <type>whole</type>
    1263. <notehead>diamond</notehead>
    1264. </note>
    1265. </measure>
    1266. <!--=========================================================-->
    1267. <measure number="48">
    1268. <print/>
    1269. <attributes/>
    1270. <barline location="right">
    1271. <bar-style>light-heavy</bar-style>
    1272. </barline>
    1273. <harmony print-frame="no" default-y="25" relative-x="10">
    1274. <root>
    1275. <root-step>A</root-step>
    1276. <root-alter>0</root-alter>
    1277. </root>
    1278. <kind text="m7">minor-seventh</kind>
    1279. </harmony>
    1280. <note>
    1281. <pitch>
    1282. <step>B</step>
    1283. <octave>4</octave>
    1284. </pitch>
    1285. <duration>3072</duration>
    1286. <type>whole</type>
    1287. <notehead>diamond</notehead>
    1288. </note>
    1289. </measure>
    1290. <!--=========================================================-->
    1291. </part>
    1292. </score-partwise>


    lg toto

    Dieser Beitrag wurde bereits 4 mal editiert, zuletzt von „EaranMaleasi“ ()

    @toto Ist das so ein Musik-Noten-Format?
    Da hab ich ggf. zu Hause was vorrätig.
    Falls Du diesen Code kopierst, achte auf die C&P-Bremse.
    Jede einzelne Zeile Deines Programms, die Du nicht explizit getestet hast, ist falsch :!:
    Ein guter .NET-Snippetkonverter (der ist verfügbar).
    Programmierfragen über PN / Konversation werden ignoriert!
    @toto Probier mal das, habs nicht weiter gepflegt:
    MusicXml.zip
    Falls Du diesen Code kopierst, achte auf die C&P-Bremse.
    Jede einzelne Zeile Deines Programms, die Du nicht explizit getestet hast, ist falsch :!:
    Ein guter .NET-Snippetkonverter (der ist verfügbar).
    Programmierfragen über PN / Konversation werden ignoriert!
    Danke Rod,
    ich probiere es gerade
    Ich melde mich dann

    @ Rod, hast eine Ahnung was ich für ein Control verwenden kann um die xml darzustellen?
    es sind teilweise Linien, Noten, Text, Zahlen usw.
    lg toto

    Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von „toto“ ()