Computing desk | ||
---|---|---|
< July 2 | << Jun | July | Aug >> | July 4 > |
Welcome to the Wikipedia Computing Reference Desk Archives |
---|
The page you are currently viewing is an archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages. |
Hello, listen: I have a big issue with my Xperia Play only having 380 MB of internal space. I was told that to move EVERYTHING to the SD card (Yes, every last byte, including phone OS information), I would first have to root the phone.
It would void a warranty, but the standard phone warranty (at least through Verizon and Best Bought phones, is just one year, and I obtained it in May 2011.
Now, I need to find out what phone-rooting and data-transferring app (both functions in one app, preferably) you would most recommend. How well has it helped you? Moreover, I may pay for it if no other app does it better, but free ones take precedence. Thanks. --70.179.170.114 (talk) 03:48, 3 July 2012 (UTC)
Euro 2012 has ended brilliantly, it is time to focus on France. What are tbe winning chance and probability of each participating team? 117.5.8.224 (talk) 04:12, 3 July 2012 (UTC)
I formatted my hard disk contained 90% data. After i save 60% data to this hard disk. But now i want formatted data( 90% data). is it possible? please help me — Preceding unsigned comment added by 117.207.233.244 (talk) 07:10, 3 July 2012 (UTC)
I accidentally printed some 40 pages before realizing that the paper type was set to "thick" when in fact it was ordinary plain paper (80 g/cm²) I noticed because the pages were unusually wavy. How bad is this? Уга-уга12 (talk) 09:34, 3 July 2012 (UTC)
Thank you so much Уга-уга12 (talk) 12:25, 4 July 2012 (UTC)
Cannot sign in!! Trying to get rid of Apple pop-ups, disabled cookeies. If possible advise how to enable cookies for Wikipedia page.60.228.201.64 (talk) 11:17, 3 July 2012 (UTC)
I have a number of websites, and have been monitoring them with Google Analytics. Some time ago I decided to change suppliers (and URLs) for some of the accounts, so the URLs in question are no longer in use and if I try to access the pages in qeustion I get a 404 File Not Found error as expected. However I note that Google Analytics is still showing results for these sites. What does this mean? --rossb (talk) 12:07, 3 July 2012 (UTC)
The switch was about four months ago. The provider is Demon Internet. If it's relevant, I didn't actually bother to delete any of the pages on the old sites, on the assumption that they would be disappearing anyway. --rossb (talk) 15:57, 3 July 2012 (UTC)
What font type is this?--Jsjsjs1111 (talk) 12:49, 3 July 2012 (UTC)
I have Window 7 PC. When I go to Control Panel, Hardware and Sound, Devices and Printers, there is an exclamation mark in a yellow triangle on the "<my computer's name>" picture, indicating a problem of some description. When I right-click and select Troubleshoot, I get a dialog saying "Install a driver for this device. The driver for Unknown device is not installed. Install the latest driver for this device." I have auto-updates turned off, because and I don't particularly want to install a driver without even knowing what device it is for. If I run Device Manager and show hidden devices, I can see under "other devices" an "unknown device" with a warning symbol and its properties say "The drivers for this device are not installed. (Code 28) There is no driver selected for the device information set or element." How do I tell what device it actually is?
It has the following properties: Hardware Ids
Parent
(plus too many others to list here, but none of which have a recognizable name.)
Any clues as to what it might be, or how I might find out?
Everything on the PC appears to be working normally. I could just ignore the warning, but it annoys me. Mitch Ames (talk) 13:09, 3 July 2012 (UTC)
I just rebooted the PC (without changing any hardware or disconnecting any peripherals) and the warning and the "unknown other device" have disappeared! I'm still curious as to what it was. Mitch Ames (talk) 13:13, 3 July 2012 (UTC)
Some time back, I needed to get a lot of consecutive numbers (1, 2, 3, etc., up to nearly 200,000) and didn't want to type all of them, so I ended up copying and pasting in Excel. I know that it's possible to get Access give you numbers simply by typing 1, pressing the down arrow, typing 2, pressing the down arrow, typing 3, and holding down the down arrow for a while, but when you have nearly 200,000 entries, it takes forever because you have to create each row separately before the down arrow produces anything. Is there any way to tell Access to create a lot of empty rows with no information? I was using Access 2003, but I'm able to use other computers with later editions (I simply prefer 2003 to 2007 and 2010) if necessary. Already checked the program's help files and online help sites, but I can't find what I need. Nyttend backup (talk) 14:28, 3 July 2012 (UTC)
Public Sub AddEmptyRows(tableName As String, idColumn As String, startNumber As Long, stopNumber As Long) 'tableName = name of the table you want this to run on 'idColumn = name of the ID/key column you want to have updated 'startNumber = first ID number to add 'stopNumber = last ID number to add Dim rst As DAO.Recordset 'create database recordset object Dim current As Long 'because you are dealing with large numbers, we set these as Longs Set rst = CurrentDb.OpenRecordset(tableName) 'open the table For current = startNumber To stopNumber 'from the start to the stop number... rst.AddNew 'add new record rst(idColumn) = current 'set the id column to the current number rst.Update 'save 'DoEvents Next 'repeat rst.Close 'close recordset object Set rst = Nothing 'clear object from memory Msgbox "Done" End Sub
Hi. Recently I encountered some trouble saving to MS Word documents on my computer. (by the way, the laptop battery problem seems resolved - for now) Often, the program would freeze while I'm trying to save, or the progress bar would stand still, or the document itself would respond very slowly to my edits. I tried this with various types of documents:
Anyone know what might be the problem with the computer? I could try saving these documents onto a USB, and editing it from an external computer. However, I'd really like to know whether it is possible to resolve this ongoing problem. Thanks! ~AH1 (discuss!) 15:09, 3 July 2012 (UTC)
172.163.134.132 (talk) 21:36, 6 July 2012 (UTC)
Hi !my doubt is below programme.the actual out put is contradicting with my out put. I have given my analysation too.you please tell how the out put comes.
#include<stdio.h>
#include<conio.h>
void main()
{
int p=10,q=10,r=10;
clrscr();
p<<2>>1;
r<<=2>>1;
printf("%d %d %d \n",p,q<<2>>1,r);
getch();
}
actual out put: 10 20 20 My analysation: <<,>> have same priority and left to right precedence.so I did below analysation. 1)p<<2>>1 executes as follows: (p<<2)>>1 -->(40>>1) -->20: therefore p=20 2) r<<=2>>1 -->r=r<<(2>>1) -->r<<1 -->20.so r=20 3)q<<2>>1 -->(q<<2)>>1 -->40>>1 -->20.so q=20. According to me out put should be 20,20,20.but actual out put is different.please tell me sir! — Preceding unsigned comment added by Phanihup (talk • contribs) 15:27, 3 July 2012 (UTC)
Hello,
I have been using Preview on my Macbook for quite some time, and I often use the Find function (Command + f) to look for certain words in the text. All of a sudden, I stopped finding a lot of obvious parts of the text, simply because Preview suddenly became case-sensitive. I have been looking in "Help", "Preferences",... but I can't figure out how to reset this.
Can anyone help?
Kind regards, Evilbu (talk) 16:10, 3 July 2012 (UTC)
I'm running Firefox 13.0.1 (current release), although I think this has been happening before, and it seems to sporadically blank my cookie exceptions. That is, I have it set to clear cookies at the end of the session, however I have exceptions for some sites. Usually this setting works fine, but on occasion, I'll find those settings are gone. I don't know what triggers it either.
I've searched but haven't found others complaining of the same thing. The settings are stored in a particular file that I could backup and reapply each time, which is what I may do, but I'd rather fix the problem itself. I also thought it might be related to Firefox updating itself, but that doesn't seem to be it as it's done it twice now within the same version.
Any thoughts are appreciated. Shadowjams (talk) 22:07, 3 July 2012 (UTC)