[Solved] How to reduce time of the parsing and inserting into database when there is bulky data on web in android? [closed]

If you really want to parse and store into the database so better way is to load in some range like 0-50-100-150 or 0-100-200. So You can achieve this by using ListView with load Button. You can make it like it will load automatically while scrolling to position say 50 or 100 what ever its … Read more

[Solved] i already installed the right .net framework version but my .exe file didn’t run [closed]

You should be a bit more precise when you say ‘your exe file’. Did you create your own in visual studio? If yes, then remove all atributes you used from the MICROSOFT POWER PACK. Those don’t work outside the compiler without having them installed on your computer manually. also you can release your program, by … Read more

[Solved] How to make login with userid or mobile number using php mysql [closed]

Change this; $query=mysql_query(“select * from users where userId=’$uname’ and pwd =’$pwd’ “); to: $query=mysql_query(“SELECT * FROM users WHERE pwd =’$pwd’ AND (userId = ‘$uname’ OR PhoneNum = ‘$uname’)”); What this does it will take both $uname value and search both Userid column and Phone Num column for a match. Please note that PhoneNum is the … Read more

[Solved] Can i install Mac system in Windows? [closed]

Yes you definitely can. It’s possible with both VirtualBox and VMWare Player. Google around, there’s work to do. It’s been my experience that VirtualBox has some issues (e.g. clicking ‘About This Mac’ causes a logout). In both cases you won’t have accelerated graphics. And yes you can any run XCode. I went with VMWare Player, … Read more

[Solved] avoid php post variables rewriting [closed]

Your question is a little unclear, but if you’re trying to pass an array using a single form input the short answer is no, using a single element you cannot pass an array into the POST array (with the exception of the multi-select form element), but it’s easy with a tiny bit of processing once … Read more

[Solved] Store Dropdown list old values and re populate them

Please tell me how can i store the old value of the drop down list. One possibility is to store them in a temporary javascript array using the .map() function: var oldValues = ​$(‘#myselect option’)​.map(function() { return { value: $(this).val(), text: $(this).text() }; }); or completely clone the dropdownlist using the .clone() method: var dropdown … Read more

[Solved] Dynamic Drop down values based on another dropdown [closed]

You have given no HTML or any script you have tried yourself as such the below should serve as a good template for you to get started. DEMO – Cascading dropdowns, show managers for selected department Assuming the following HTML <div> <div style=”float: left;”> Select Department <br /> <select id=”departments”></select> </div> <div style=”float: left; margin-left: … Read more