473,405 Members | 2,404 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

xsd problem

4
I am new in learning XML. I have to create a XSD for my XML file.
Below is my XSD file. But I got an error like this:
s4s-elt-must-match.1: The content of 'Album' must match (annotation?, (simpleType | complexType)?, (unique | key | keyref)*)). A problem was found starting at: element. music.xsd

I cannot figured it out. Could anyone help me? Thanks a lot!

my xml file
Expand|Select|Wrap|Line Numbers
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?> 
  2. <Music xmlns:xs="http://www.w3.org/2001/XMLSchema">
  3.   <!-- First ALbum -->
  4.   <Album>
  5.     <Title>Take Care</Title>
  6.     <AlbumArtist>Drake</AlbumArtist>
  7.     <Genre>Pop</Genre>
  8.     <Year>2012</Year>
  9.     <Publisher>Cash Money Records Inc</Publisher>
  10.     <Price concurrency="AUD">12.0</Price>
  11.     <Song>
  12.       <Title>Over My Dead Body</Title>
  13.       <Artist>Drake</Artist>
  14.       <Genre>Pop</Genre>
  15.       <Album>Take Care</Album>
  16.       <Year>2012</Year>
  17.       <Price concurrency="AUD">2.0</Price> 
  18.     </Song>    
  19.     <Song>
  20.       <Title>Shot For Me</Title>
  21.       <Artist>Drake</Artist>
  22.       <Genre>Pop</Genre>
  23.       <Album>Take Care</Album>
  24.       <Year>2012</Year>
  25.       <Price concurrency="AUD">1.0</Price>     
  26.     </Song>
  27.     <Song>
  28.       <Title>Headlines</Title>
  29.       <Artist>Drake</Artist>
  30.       <Genre>HipHop</Genre>
  31.       <Album>Take Care</Album>
  32.       <Year>2012</Year>
  33.       <Price concurrency="AUD">2.5</Price>     
  34.     </Song>
  35.     <Song>
  36.       <Title>We'll Be Fine</Title>
  37.       <Artist>Drake</Artist>
  38.       <Genre>Pop</Genre>
  39.       <Album>Take Care</Album>
  40.       <Year>2012</Year>
  41.       <Price concurrency="AUD">3.0</Price>     
  42.     </Song>
  43.     <Song>
  44.       <Title>Lord Knows</Title>
  45.       <Artist>Drake</Artist>
  46.       <Genre>Pop</Genre>
  47.       <Album>Take Care</Album>
  48.       <Year>2012</Year>
  49.       <Price concurrency="AUD">2.0</Price>     
  50.     </Song>
  51.     <Song>
  52.       <Title>Do It Wrong</Title>
  53.       <Artist>Drake</Artist>
  54.       <Genre>Hip-Hop</Genre>
  55.       <Album>Take Care</Album>
  56.       <Year>2012</Year>
  57.       <Price concurrency="AUD">2.5</Price>     
  58.     </Song>
  59.   </Album> 
  60.     <!-- Second ALbum -->
  61.   <Album>
  62.     <Title>Lioness: Hidden Treasures</Title>
  63.     <AlbumArtist>AmyWinehouse</AlbumArtist>
  64.     <Genre>Soul</Genre>
  65.     <Year>2011</Year>
  66.     <Publisher>Universal Island Records</Publisher>
  67.     <Price concurrency="AUD">14.0</Price>
  68.     <Song>
  69.       <Title>Tears Cry</Title>
  70.       <Artist>AmyWinehouse</Artist>
  71.       <Genre>Soul</Genre>
  72.       <Album>Lioness: Hidden Treasures</Album>
  73.       <Year>2011</Year>
  74.       <Price concurrency="AUD">3.0</Price> 
  75.     </Song>    
  76.     <Song>
  77.       <Title>Like Smoke</Title>
  78.       <Artist>AmyWinehouse</Artist>
  79.       <Genre>Soul</Genre>
  80.       <Album>Lioness: Hidden Treasures</Album>
  81.       <Year>2011</Year>
  82.       <Price concurrency="AUD">2.0</Price>    
  83.     </Song>
  84.     <Song>
  85.       <Title>Will You Still Love Me Tomorrow?</Title>
  86.       <Artist>Amy Winehouse</Artist>
  87.       <Genre>Soul</Genre>
  88.       <Album>Lioness: Hidden Treasures</Album>
  89.       <Year>2011</Year>
  90.       <Price concurrency="AUD">2.5</Price>   
  91.     </Song>
  92.     <Song>
  93.       <Title>Wake Up Alone</Title>
  94.       <Artist>Amy Winehouse</Artist>
  95.       <Genre>Soul</Genre>
  96.       <Album>Lioness: Hidden Treasures</Album>
  97.       <Year>2011</Year>
  98.       <Price concurrency="AUD">2.0</Price>     
  99.     </Song>
  100.     <Song>
  101.       <Title>Body And Soul</Title>
  102.       <Artist>Amy Winehouse</Artist>
  103.       <Genre>Soul</Genre>
  104.       <Album>Lioness: Hidden Treasures</Album>
  105.       <Year>2011</Year>
  106.       <Price concurrency="AUD">12.0</Price>    
  107.     </Song>
  108.     <Song>
  109.       <Title>A Song For You</Title>
  110.       <Artist>Amy Winehouse</Artist>
  111.       <Genre>Soul</Genre>
  112.       <Album>Lioness: Hidden Treasures</Album>
  113.       <Year>2011</Year>
  114.       <Price concurrency="AUD">1.5</Price>    
  115.     </Song>
  116.     <Song>
  117.       <Title>Half TIme</Title>
  118.       <Artist>Amy Winehouse</Artist>
  119.       <Genre>Soul</Genre>
  120.       <Album>Lioness: Hidden Treasures</Album>
  121.       <Year>2011</Year>
  122.       <Price concurrency="AUD">1.5</Price>    
  123.     </Song>
  124.   </Album>
  125.   <!-- Third ALbum -->
  126.   <Album>
  127.     <Title>Classic Mountain Songs from Smithsonian Folkways</Title>
  128.     <AlbumArtist/>
  129.     <Genre>Country</Genre>
  130.     <Year>2008</Year>
  131.     <Publisher/>
  132.     <Price concurrency="AUD">8.0</Price>
  133.     <Song>
  134.       <Title>Super Baby</Title>
  135.       <Artist>Dock Boggs</Artist>
  136.       <Genre>Country</Genre>
  137.       <Album>Classic Mountain Songs from Smithsonian Folkways</Album>
  138.       <Year>2008</Year>
  139.       <Price concurrency="AUD">1.0</Price> 
  140.     </Song>    
  141.      <Song>
  142.       <Title>John Hery</Title>
  143.       <Artist>Lesley Riddle</Artist>
  144.       <Genre>Country</Genre>
  145.       <Album>Classic Mountain Songs from Smithsonian Folkways</Album>
  146.       <Year>2008</Year>
  147.       <Price concurrency="AUD">1.5</Price> 
  148.     </Song>
  149.      <Song>
  150.       <Title>Coal Creek March</Title>
  151.       <Artist>Pete Steele</Artist>
  152.       <Genre>Country</Genre>
  153.       <Album>Classic Mountain Songs from Smithsonian Folkways</Album>
  154.       <Year>2008</Year>
  155.       <Price concurrency="AUD">0.5</Price> 
  156.     </Song>
  157.     <Song>
  158.       <Title>Railroad Blues</Title>
  159.       <Artist>Sam McGee</Artist>
  160.       <Genre>Country</Genre>
  161.       <Album>Classic Mountain Songs from Smithsonian Folkways</Album>
  162.       <Year>2008</Year>
  163.       <Price concurrency="AUD">0.5</Price>     
  164.     </Song>
  165.      <Song>
  166.       <Title>Sixteen Tons</Title>
  167.       <Artist>George Davis</Artist>
  168.       <Genre>Country</Genre>
  169.       <Album>Classic Mountain Songs from Smithsonian Folkways</Album>
  170.       <Year>2008</Year>
  171.       <Price concurrency="AUD">1.5</Price> 
  172.     </Song> 
  173.     <Song>
  174.       <Title>I Am A Poor Pilgrim Of Sorrow</Title>
  175.       <Artist>Old Regular Baptists</Artist>
  176.       <Genre>Country</Genre>
  177.       <Album>Classic Mountain Songs from Smithsonian Folkways</Album>
  178.       <Year>2008</Year>
  179.       <Price concurrency="AUD">0.5</Price> 
  180.     </Song> 
  181.   </Album>
  182.   <!-- Fourth ALbum -->
  183.   <Album>
  184.     <Title>Talk That Talk</Title>
  185.     <AlbumArtist>Rihanna</AlbumArtist>
  186.     <Genre>Pop</Genre>
  187.     <Year>2011</Year>
  188.     <Publisher>Def Jam Records</Publisher>
  189.     <Price concurrency="AUD">10.0</Price>
  190.     <Song>
  191.       <Title>We Found Love</Title>
  192.       <Artist>Rihanna</Artist>
  193.       <Genre>HipHop</Genre>
  194.       <Album>Talk That Talk</Album>
  195.       <Year>2011</Year>
  196.       <Price concurrency="AUD">2.0</Price> 
  197.     </Song>    
  198.     <Song>
  199.       <Title>Farewell</Title>
  200.       <Artist>Rihanna</Artist>
  201.       <Genre>HipHop</Genre>
  202.       <Album>Talk That Talk</Album>
  203.       <Year>2011</Year>
  204.       <Price concurrency="AUD">1.0</Price> 
  205.     </Song> 
  206.     <Song>
  207.       <Title>Birthday Cake</Title>
  208.       <Artist>Rihanna</Artist>
  209.       <Genre>HipHop</Genre>
  210.       <Album>Talk That Talk</Album>
  211.       <Year>2011</Year>
  212.       <Price concurrency="AUD">1.5</Price> 
  213.     </Song> 
  214.     <Song>
  215.       <Title>We All Want Love</Title>
  216.       <Artist>Rihanna</Artist>
  217.       <Genre>Pop</Genre>
  218.       <Album>Talk That Talk</Album>
  219.       <Year>2011</Year>
  220.       <Price concurrency="AUD">1.0</Price> 
  221.     </Song> 
  222.     <Song>
  223.       <Title>Red Lipstick</Title>
  224.       <Artist>Rihanna</Artist>
  225.       <Genre>HipHop</Genre>
  226.       <Album>Talk That Talk</Album>
  227.       <Year>2011</Year>
  228.       <Price concurrency="AUD">2.0</Price> 
  229.     </Song> 
  230.     <Song>
  231.       <Title>Fool In Love</Title>
  232.       <Artist>Rihanna</Artist>
  233.       <Genre>Pop</Genre>
  234.       <Album>Talk That Talk</Album>
  235.       <Year>2011</Year>
  236.       <Price concurrency="AUD">1.5</Price> 
  237.     </Song> 
  238.     <Song>
  239.       <Title>Where Have You Been</Title>
  240.       <Artist>Rihanna</Artist>
  241.       <Genre>Pop</Genre>
  242.       <Album>Talk That Talk</Album>
  243.       <Year>2011</Year>
  244.       <Price concurrency="AUD">3.0</Price> 
  245.     </Song> 
  246.     <Song>
  247.       <Title>Drunk On Love</Title>
  248.       <Artist>Rihanna</Artist>
  249.       <Genre>HipHop</Genre>
  250.       <Album>Talk That Talk</Album>
  251.       <Year>2011</Year>
  252.       <Price concurrency="AUD">2.0</Price> 
  253.     </Song> 
  254.   </Album>
  255.   <!-- Fifth ALbum -->
  256.   <Album>
  257.     <Title>World Connections</Title>
  258.     <AlbumArtist>Linkin Park</AlbumArtist>
  259.     <Genre>Electronic</Genre>
  260.     <Year>2011</Year>
  261.     <Publisher>Record Union</Publisher>
  262.     <Price concurrency="AUD">4.0</Price>
  263.     <Song>
  264.       <Title>Put Your Hands Up</Title>
  265.       <Artist>Linkin Park</Artist>
  266.       <Genre>ELectronic</Genre>
  267.       <Album>World Connections</Album>
  268.       <Year>2011</Year>
  269.       <Price concurrency="AUD">2.0</Price> 
  270.     </Song>    
  271.     <Song>
  272.       <Title>New Divide</Title>
  273.       <Artist>Linkin Park</Artist>
  274.       <Genre>ELectronic</Genre>
  275.       <Album>World Connections</Album>
  276.       <Year>2011</Year>
  277.       <Price concurrency="AUD">1.0</Price> 
  278.     </Song>
  279.     <Song>
  280.       <Title>Got To Know</Title>
  281.       <Artist>Linkin Park</Artist>
  282.       <Genre>ELectronic</Genre>
  283.       <Album>World Connections</Album>
  284.       <Year>2011</Year>
  285.       <Price concurrency="AUD">1.0</Price> 
  286.     </Song>
  287.     <Song>
  288.       <Title>Getting Over You</Title>
  289.       <Artist>Linkin Park</Artist>
  290.       <Genre>ELectronic</Genre>
  291.       <Album>World Connections</Album>
  292.       <Year>2011</Year>
  293.       <Price concurrency="AUD">1.0</Price> 
  294.     </Song>
  295.   </Album>
  296.   <!-- Sixth ALbum -->
  297.   <Album>
  298.     <Title>Jason Mraz Live + Acoustic 2001</Title>
  299.     <AlbumArtist>James Blunt</AlbumArtist>
  300.     <Genre>Pop</Genre>
  301.     <Year>2008</Year>
  302.     <Publisher>Jason Mraz/TuneCore</Publisher>
  303.     <Price concurrency="AUD">7.0</Price>
  304.     <Song>
  305.       <Title>Running</Title>
  306.       <Artist>Jason Mraz</Artist>
  307.       <Genre>Pop</Genre>
  308.       <Album>Jason Mraz Live + Acoustic 2001</Album>
  309.       <Year>2008</Year>
  310.       <Price concurrency="AUD">1.0</Price> 
  311.     </Song>    
  312.     <Song>
  313.       <Title>You And I Both</Title>
  314.       <Artist>Jason Mraz</Artist>
  315.       <Genre>Pop</Genre>
  316.       <Album>Jason Mraz Live + Acoustic 2001</Album>
  317.       <Year>2008</Year>
  318.       <Price concurrency="AUD">1.5</Price> 
  319.     </Song> 
  320.     <Song>
  321.       <Title>Bright Eyes</Title>
  322.       <Artist>Jason Mraz</Artist>
  323.       <Genre>Pop</Genre>
  324.       <Album>Jason Mraz Live + Acoustic 2001</Album>
  325.       <Year>2008</Year>
  326.       <Price concurrency="AUD">2.0</Price> 
  327.     </Song> 
  328.     <Song>
  329.       <Title>Halfway Home</Title>
  330.       <Artist>Jason Mraz</Artist>
  331.       <Genre>Pop</Genre>
  332.       <Album>Jason Mraz Live + Acoustic 2001</Album>
  333.       <Year>2008</Year>
  334.       <Price concurrency="AUD">0.5</Price> 
  335.     </Song> 
  336.     <Song>
  337.       <Title>Unfold</Title>
  338.       <Artist>Jason Mraz</Artist>
  339.       <Genre>Pop</Genre>
  340.       <Album>Jason Mraz Live + Acoustic 2001</Album>
  341.       <Year>2008</Year>
  342.       <Price concurrency="AUD">1.0</Price> 
  343.     </Song> 
  344.     <Song>
  345.       <Title>1000 Things</Title>
  346.       <Artist>Jason Mraz</Artist>
  347.       <Genre>Pop</Genre>
  348.       <Album>Jason Mraz Live + Acoustic 2001</Album>
  349.       <Year>2008</Year>
  350.       <Price concurrency="AUD">1.5</Price> 
  351.     </Song> 
  352.     <Song>
  353.       <Title>After An Afternoon</Title>
  354.       <Artist>Jason Mraz</Artist>
  355.       <Genre>Pop</Genre>
  356.       <Album>Jason Mraz Live + Acoustic 2001</Album>
  357.       <Year>2008</Year>
  358.       <Price concurrency="AUD">1.0</Price> 
  359.     </Song> 
  360.     <Song>
  361.       <Title>Conversation With Myself</Title>
  362.       <Artist>Jason Mraz</Artist>
  363.       <Genre>Pop</Genre>
  364.       <Album>Jason Mraz Live + Acoustic 2001</Album>
  365.       <Year>2008</Year>
  366.       <Price concurrency="AUD">0.5</Price> 
  367.     </Song> 
  368.     <Song>
  369.       <Title>Zero Percent</Title>
  370.       <Artist>Jason Mraz</Artist>
  371.       <Genre>Pop</Genre>
  372.       <Album>Jason Mraz Live + Acoustic 2001</Album>
  373.       <Year>2008</Year>
  374.       <Price concurrency="AUD">1.0</Price> 
  375.     </Song> 
  376.     <Song>
  377.       <Title>Common Pleasure</Title>
  378.       <Artist>Jason Mraz</Artist>
  379.       <Genre>Pop</Genre>
  380.       <Album>Jason Mraz Live + Acoustic 2001</Album>
  381.       <Year>2008</Year>
  382.       <Price concurrency="AUD">2.0</Price> 
  383.     </Song> 
  384.     <Song>
  385.       <Title>Hey Love</Title>
  386.       <Artist>Jason Mraz</Artist>
  387.       <Genre>Pop</Genre>
  388.       <Album>Jason Mraz Live + Acoustic 2001</Album>
  389.       <Year>2008</Year>
  390.       <Price concurrency="AUD">1.0</Price> 
  391.     </Song> 
  392.   </Album>
  393.   <!-- Seventh ALbum -->
  394.   <Album>
  395.     <Title>Boys and Girls Soundtrack</Title>
  396.     <AlbumArtist>Ronan Keating</AlbumArtist>
  397.     <Genre>Pop</Genre>
  398.     <Year>2000</Year>
  399.     <Publisher>Ark 21 Records / IODA</Publisher>
  400.     <Price concurrency="AUD">6.0</Price>
  401.     <Song>
  402.       <Title>Happiness</Title>
  403.       <Artist>Ronan Keating</Artist>
  404.       <Genre>Pop</Genre>
  405.       <Album>Boys and Girls Soundtrack</Album>
  406.       <Year>2000</Year>
  407.       <Price concurrency="AUD">0.5</Price> 
  408.     </Song>    
  409.     <Song>
  410.       <Title>I Know A Girl</Title>
  411.       <Artist>Ronan Keating</Artist>
  412.       <Genre>Pop</Genre>
  413.       <Album>Boys and Girls Soundtrack</Album>
  414.       <Year>2000</Year>
  415.       <Price concurrency="AUD">0.5</Price> 
  416.     </Song> 
  417.     <Song>
  418.       <Title>When You Arrive</Title>
  419.       <Artist>Ronan Keating</Artist>
  420.       <Genre>Pop</Genre>
  421.       <Album>Boys and Girls Soundtrack</Album>
  422.       <Year>2000</Year>
  423.       <Price concurrency="AUD">0.5</Price> 
  424.     </Song> 
  425.     <Song>
  426.       <Title>Think Of Me</Title>
  427.       <Artist>Ronan Keating</Artist>
  428.       <Genre>Pop</Genre>
  429.       <Album>Boys and Girls Soundtrack</Album>
  430.       <Year>2000</Year>
  431.       <Price concurrency="AUD">0.5</Price> 
  432.     </Song>  
  433.     <Song>
  434.       <Title>Gorgeous</Title>
  435.       <Artist>Ronan Keating</Artist>
  436.       <Genre>Pop</Genre>
  437.       <Album>Boys and Girls Soundtrack</Album>
  438.       <Year>2000</Year>
  439.       <Price concurrency="AUD">0.5</Price> 
  440.     </Song> 
  441.     <Song>
  442.       <Title>Quitter</Title>
  443.       <Artist>Ronan Keating</Artist>
  444.       <Genre>Pop</Genre>
  445.       <Album>Boys and Girls Soundtrack</Album>
  446.       <Year>2000</Year>
  447.       <Price concurrency="AUD">0.5</Price> 
  448.     </Song>  
  449.     <Song>
  450.       <Title>Now Or Never</Title>
  451.       <Artist>Ronan Keating</Artist>
  452.       <Genre>Pop</Genre>
  453.       <Album>Boys and Girls Soundtrack</Album>
  454.       <Year>2000</Year>
  455.       <Price concurrency="AUD">0.5</Price> 
  456.     </Song> 
  457.     <Song>
  458.       <Title>World Of A King</Title>
  459.       <Artist>Ronan Keating</Artist>
  460.       <Genre>Pop</Genre>
  461.       <Album>Boys and Girls Soundtrack</Album>
  462.       <Year>2000</Year>
  463.       <Price concurrency="AUD">0.5</Price> 
  464.     </Song> 
  465.     <Song>
  466.       <Title>Get You Off My Mind</Title>
  467.       <Artist>Ronan Keating</Artist>
  468.       <Genre>Pop</Genre>
  469.       <Album>Boys and Girls Soundtrack</Album>
  470.       <Year>2000</Year>
  471.       <Price concurrency="AUD">0.5</Price> 
  472.     </Song> 
  473.   </Album>
  474. </Music>
  475.  
xsd file
Expand|Select|Wrap|Line Numbers
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  3.  
  4.  <xs:element name="Music">
  5.    <xs:complexType>
  6.      <xs:sequence>
  7.        <xs:element name="Album" type="xs:string" minOccurs="1" maxOccurs="unbounded">  
  8.          <xs:element name="Title" type="xs:string" />
  9.          <xs:element name="AlbumArtist" type="xs:string" minOccurs="0" maxOccurs="1" />
  10.          <xs:element name="Genre" type="xs:string" />
  11.          <xs:element name="Year" type="xs:integer" />
  12.          <xs:element name="Publisher" type="xs:string" />
  13.          <xs:complexType>              
  14.            <xs:sequence>
  15.              <xs:element name="Price" type="xs:float">
  16.                <xs:attribute name="currency" fixed="AUD" use="required" />
  17.              </xs:element> 
  18.            </xs:sequence>
  19.          </xs:complexType> 
  20.          <xs:complexType>
  21.            <xs:sequence>
  22.              <xs:element name="Song" type="xs:string" maxOccurs="unbounded">
  23.                <xs:element name="Title" type="xs:string" />
  24.                  <xs:element name="Artist" type="xs:string" />
  25.                  <xs:element name="Genre" type="xs:string" />
  26.                  <xs:element name="Album" type="xs:string" />
  27.                  <xs:element name="Year" type="xs:integer" />
  28.                  <xs:complexType>
  29.                    <xs:sequence>
  30.                      <xs:element name="Price" type="xs:float">
  31.                        <xs:attribute name="currency" fixed="AUD" use="required" />
  32.                      </xs:element>
  33.                    </xs:sequence>
  34.                  </xs:complexType>
  35.                </xs:element>
  36.              </xs:sequence>
  37.            </xs:complexType>
  38.         </xs:element>
  39.       </xs:sequence>
  40.     </xs:complexType>
  41.   </xs:element>   
  42. </xs:schema>
  43.  
Mar 18 '12 #1
5 2166
Dormilich
8,658 Expert Mod 8TB
are you sure the xsd element for Album should be not empty?
Mar 18 '12 #2
emilyQ
4
Hi, Dormilich.
Thanks for your reply.
I do not quite understand what you mean. I think Album should be not empty, otherwise it makes no sense. It at least contains list of subelements like Genre, Year, Price etc. Could you please tell me more about your opinion? Do I have any syntax error in my xsd file?
Mar 18 '12 #3
Dormilich
8,658 Expert Mod 8TB
the problem is that <Album> is used twice. as child element of <Music> (where it is a complexType element) and <Song> (where it is a simpleType element).
Mar 18 '12 #4
emilyQ
4
So how can I fix these kind of problem? Actually, I still have <Genre>, <Year>, <Price> respectively used twice in <Album> and <Song>. Can i just use another name?
Mar 18 '12 #5
emilyQ
4
Gotcha. I just got confused Tag with Element. I can define different meaningful tag name.
Thanks, Dormilich.
Mar 18 '12 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

11
by: Kostatus | last post by:
I have a virtual function in a base class, which is then overwritten by a function of the same name in a publically derived class. When I call the function using a pointer to the derived class...
9
by: Sudesh Sawant | last post by:
Hello, We have an application which communicates using remoting. There is a server which is a Windows Service. The server exposes an object which is a singleton. The client is a Web Application...
117
by: Peter Olcott | last post by:
www.halting-problem.com
0
by: James Griffiths | last post by:
Here is a report I've written about a printing problem that is being experienced by a particular company for whom I had developed a A97 system. After upgrading to Win XP and AXP, some printing...
18
by: Ian Stanley | last post by:
Hi, Continuing my strcat segmentation fault posting- I have a problem which occurs when appending two sting literals using strcat. I have tried to fix it by writing my own function that does the...
28
by: Jon Davis | last post by:
If I have a class with a virtual method, and a child class that overrides the virtual method, and then I create an instance of the child class AS A base class... BaseClass bc = new ChildClass();...
6
by: Ammar | last post by:
Dear All, I'm facing a small problem. I have a portal web site, that contains articles, for each article, the end user can send a comment about the article. The problem is: I the comment length...
16
by: Dany | last post by:
Our web service was working fine until we installed .net Framework 1.1 service pack 1. Uninstalling SP1 is not an option because our largest customer says service packs marked as "critical" by...
2
by: Mike Collins | last post by:
I cannot get the correct drop down list value from a drop down I have on my web form. I get the initial value that was loaded in the list. It was asked by someone else what the autopostback was...
9
by: AceKnocks | last post by:
I am working on a framework design problem in which I have to design a C++ based framework capable of solving three puzzles for now but actually it should work with a general puzzle of any kind and I...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.