Questions tagged [setting]

261 questions
2
votes
0 answers

I can't copy texts by command+C in Eclipse

I'm using Eclipse on Mac, version JUNO. From some days ago, I can't copy texts by command+C. The key bind of "copy" is binded to "command+C" when in Windows in my 'Keys' setting of Eclipse. I can't understand what is wrong... Please tell me what is…
phicdy
  • 63
  • 5
2
votes
2 answers

duplicate eclipse

I have eclipse Indigo version and i can run both java and C++ projects in it. But i want to use another eclipse only to write C++ projects . so I copied(not cutted) the source folder of eclipse(not workspace) into different location. I was expecting…
mohsenari
  • 146
  • 2
  • 9
2
votes
1 answer

What data will be removed when I clear data in the Android setting?

Are there anyone know what exactly data will be removed when I clear the setting data in the setting? Currently, I find a bug in WallPaperManager. After I clear the setting data, my pad cannot change to other wall papers. I track some piece of code…
s011208
  • 305
  • 4
  • 12
1
vote
0 answers

Setting data to nodes in XML using python

I'm trying to read in the data structures from an XML file using Python by cloning various nodes (and groups of nodes), then changing some of the data within the nodes and pasting it out to a new .xml file. I currently have this code - it is…
1
vote
1 answer

AdMob ad filters, and revenue

I don't realyy understand this part about money revenue. What is neccesary to earn money, should ads juyt be diyplayed, or users must click on it ?? And second about that ad filters, should I leave it on default settings, or better to change it ??
Goran
  • 1,239
  • 4
  • 23
  • 36
1
vote
3 answers

MySQL query returns 0 rows when searching for value with dot (.) in string

If I try to search for a value in mysql database and the string value contains dot in it, query returns 0 rows. Example: SELECT * FROM table WHERE `username`='marco.polo' --> 0 rows SELECT * FROM table WHERE `username` LIKE '%.polo%' --> 0…
cen
  • 2,873
  • 3
  • 31
  • 56
1
vote
1 answer

Where is the setting setVibrateSetting(AudioManager.VIBRATE_TYPE_NOTIFICATION, false) in the phone?

i made an app that messes with the system vibrate settings. namely, it turns them off. AudioManager audioManager = (AudioManager)ctx.getSystemService(Context.AUDIO_SERVICE); audioManager.setVibrateSetting(AudioManager.VIBRATE_TYPE_RINGER,…
SimonSays
  • 10,867
  • 7
  • 44
  • 59
1
vote
1 answer

using graphics to measure Window user font size setting

Having recently posetd a question about retrieving the user's font settings, like 96 or 120 dpi, several SO gurus told me to use dpiX and dpiY from any graphic object. But does the dpi relates to the screen size (X / Y) or the font size (X only…
Didier Levy
  • 3,393
  • 9
  • 35
  • 57
1
vote
2 answers

(iphone) InAppSettings/InAppSettingsKit library questions

It seems there are many advocates of InAppSettings https://bitbucket.org/keegan3d/inappsettings/wiki/Home In my app, I need to have multiple different settings page from different views. (Conceptually there are multiple apps within the app, and each…
eugene
  • 39,839
  • 68
  • 255
  • 489
1
vote
1 answer

what does curly braces mean in web.config file?

In my project, connection string is like the following : connectionString="Server=localhost; Database={DatabaseName}; User Id=sa; password=sa" What does {DatabaseName} mean? If I want to change the DatabaseName to some other database name, where…
rajasekhar
  • 11
  • 2
1
vote
2 answers

IME Android Keyboard

I am trying to control the behavior off a an IME keyboard. For instance the keyboard I downloaded uses combinations of characters( say if you press "ß" + "π" it suggests "∑" I am making this example up. I would like to turn off this feature.…
user498584
  • 484
  • 1
  • 8
  • 14
1
vote
1 answer

set environment variables calling script file

I have a requirement where I have to set environment variables calling a script file eg:set_env.sh. set_env.sh contains all the environment variables. export SCRIPT_DIR=/e/scripts/ ... when I call the set_env.sh from my code the variables are…
sandeep
  • 11
  • 1
  • 2
1
vote
1 answer

how to set setting file when file download by django+nginx+uwsgi

I wrote the file download code using the django + nginx + uwsgi following is my code def download_latest_db(request): latest_db = DB.objects.all().first() chunk_size = 8192 if latest_db is not None: response =…
fuzes
  • 1,777
  • 4
  • 20
  • 40
1
vote
0 answers

how to change the font size of the tool bar in netbeans

the font size of netbeans is very small I can't see the font and icons in the tool bar. how can i fix this problem? my os is windows 10
Summer2016
  • 11
  • 2
1
vote
1 answer

Setting Internet Proxy in IE on active dial up or vpn connection in delphi

I want to set proxy in action connection for IE with Delphi codes. I test this code: Procedure SetProxy(const Server: String); var Reg : TRegistry; begin Reg := TRegistry.Create; Reg.OpenKey('Software\Microsoft\Windows\CurrentVersion\Internet…
Amin
  • 1,242
  • 2
  • 12
  • 25