Fragments: What Goes Where? Programming Mobile Development by LaughingOtter … fact!) to check out the possibility of using Fragments for the various screens. Fragments in this case sounds like the way it… read, parse, and persistently store the XML data for the Fragments to read and display as necessary? If so, I have… Re: Fragments: What Goes Where? Programming Mobile Development by peter_budo You got it wrong, it can be used on any size. You should read [Building a Dynamic UI with Fragments](http://developer.android.com/training/basics/fragments/index.html) Re: Fragments: What Goes Where? Programming Mobile Development by LaughingOtter OK. I will give that a read and see if it can be done. I already see one section of the app that will probably have to be its own Activity due to the size and complexity of data it needs to load/work with, but the rest could be Fragments if the XML can get from the main Activity to the Fragment for display. Thanks for the tip, Peter! Swiping screen using fragments and viewpager Hardware and Software Hardware Mobile and Wearables by wilsonchama … viewPager.setAdapter(new MyAdapter()); } //The switch statement displays the fragments associated with the selected integer private void loadSelection(int i…gt; This is the code for one of the fragments which run from fragment 1 to fragment 12 fragment_chapter1.… Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by MiketheBook … runs Vista and suddenly, for now apparent reason, opening Explorer fragments the desktop, itself and all programs running. Nothing is controllable… or visible except in flashes of fragments that appear all over the place. Switching off and rebooting… Re: Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by MiketheBook What sort of problems? After a couple of reboots i.e. 8 is working again fine. I now can't create the mess the desktop was in - fragments of it all over the place. Re: Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by caperjack [QUOTE=MiketheBook;1399874] fragments of it all over the place.[/QUOTE] that almost sounds like a video problem ,and or memory problem ,computer ram or video cards ram urgent....need to make fragments of string Programming Software Development by notorious_pan … string from text file ....them we have to make the fragments of a string and we have to count tht word… Database for movies/fragments. Hardware and Software Microsoft Windows by Pim Hello, I'm looking for a database program, akin to EMDB or similar, that can search a folder and add all complete films, and all fragments to the database. Does anyone have any suggestions? Thank You. Re: Fragments: What Goes Where? Programming Mobile Development by peter_budo If you ever did any Java AWT/Swing development Android Activity would be something like your application frame, where Fragment is more like View that you can dynamically swap as need it. Therefore in most cases it does make sense for Activity to be data handling part. Re: Fragments: What Goes Where? Programming Mobile Development by LaughingOtter But that's really only practical if your screen size is large enough. For most phone-type mobile devices that won't cut it. GAAH! Now what do I do? Re: Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by caperjack [QUOTE=MiketheBook;1399532]. If there is some corruption in Explorer it is possible to uninstall it and download a fresh version?[/QUOTE] yes its possible ,did you try another browser like Google chrome or Firefox to see how they behave Re: Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by MiketheBook Firefox works fine. Re: Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by caperjack as far as ie8 goes some computer have problems with ,i would suggest going back to ie7 if you really need to use IE Re: Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by caperjack i cant be specific ,just over time i have read a lot of post about people having problems ,and a friend who works daily at install windows on customers computer has problems with it on a lot of computers[he has to go back to ie7] ,mostly running xp and vista Re: Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by MiketheBook I'm actually stumped with it. On rebooting I ran a check on the memory, drive etc and also scanned for a virus but found nothing.I would know where to start to check for video problems. The problem may, I stress may, be connected with sleep mode, coming out of it. Of course it may not but I haven't yet found a clear pattern to its occurrence. Could… Re: Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by caperjack [QUOTE=MiketheBook;1399947]. Could IE 8 cause such problems even when it is not running?[/QUOTE] my opinion is no it would not ,but you have to remember it is a cpu /ram intence program now ,with so many plugins and such.open ie ,go to tools,manage addons ,and disable them and see how it works Re: Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by MiketheBook I'll try that but right now it is behaving itself and not causing problems. However, I'm still keen on the idea of uninstalling IE 8 and settling for IE 7. Re: Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by caperjack download ie7 [url]http://www.microsoft.com/downloads/en/details.aspx?FamilyID=9ae91ebe-3385-447c-8a30-081805b2f90b&displaylang=en[/url] removal instruction here . [url]http://support.microsoft.com/kb/957700[/url] Re: Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by MiketheBook Thanks. I'll see if this works. Re: Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by caperjack good luck Re: Internet Explorer 8 fragments on opening Hardware and Software Microsoft Windows by MiketheBook I've sorted it out by going back to an earlier restore point. I think the problem was the bad uninstallation of a programme which corrupted everything. I think I will leave things as they are now but remove IE8 if I have any further trouble. Thanks for all your help. Re: urgent....need to make fragments of string Programming Software Development by jbstin the answer in this queastion is the programme similar to that in the book by "Bjhane Straustrup". u may easily refer it . it is possibly in the page no 341. Re: urgent....need to make fragments of string Programming Software Development by Ancient Dragon If you don't want to spend $$$ to buy that book just to look up the answer to your question, you could try using stringstream class, or use std::string's [b]find[/b] method in a loop to locate each of the spaces [code] while not done check if the string has a space if not, then this loop is done call [b]substr[/b] to extract the … Re: urgent....need to make fragments of string Programming Software Development by notorious_pan [QUOTE=jbstin;471089]the answer in this queastion is the programme similar to that in the book by "Bjhane Straustrup". u may easily refer it . it is possibly in the page no 341.[/QUOTE] i dont have that book....can u please post it here... Re: urgent....need to make fragments of string Programming Software Development by zandiago Welcome aboard. If you have specific problems when trying to do a program...please post the source code here along with what you think may be wrong. Also post the errors you get, so we can take a look and help you. We are not in the business of doing your home-work for you! You must TRY/show some effort!! Re: urgent....need to make fragments of string Programming Software Development by notorious_pan [code=c++] #include <iostream.h> #include <conio.h> #include <string.h> #include <stdio.h> struct packet { char idenstr[60]; int sentno; int fragno; int total; char payload[60]; }pkt[20]; const int max=60; int main() { struct packet { int fragno; char payload[60]; int sentno; … Re: urgent....need to make fragments of string Programming Software Development by iamthwee Why you shouldn't use structs with packets [url]http://www.daniweb.com/forums/post471114-2.html[/url] And just incase anyone wants to give your code the eye over I tagged it up. After all the mods are too lazy to do it. :) [code]#include <iostream.h> #include <conio.h> #include <string.h> #include <stdio.h> … Re: urgent....need to make fragments of string Programming Software Development by notorious_pan this is not working....can u tell me only the code to break the string.....plzzz Re: urgent....need to make fragments of string Programming Software Development by Ancient Dragon [QUOTE=iamthwee;471485]And just incase anyone wants to give your code the eye over I tagged it up. After all the mods are too lazy to do it. :) [/quote] Ohhh that was really mean :@ We (or me at least) do lead normal lives like everyone else. I for one do not sit at my computer 24/7 waiting for someone to post some code without code tags.