Questions tagged [settings]

Settings may refer to the tweaking which can be used to help improve the user-experience or performance etc.

Settings may refer to the tweaking which can be used to help improve the user-experience or performance etc. Settings typically represent a set of options which a user can choose from adjust the interface or controls of a certain application to their preferences.

5394 questions
2
votes
1 answer

How to create the settings file from default options?

File.Exists(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile) is false. How to make it true?
Jader Dias
  • 88,211
  • 155
  • 421
  • 625
2
votes
2 answers

How can i get through Mobile Data Settings Programmatically in iOS Swift 3

i am trying to access the mobile data/ cellular data setting page which lists all the apps that have access to mobile/cellular data or internet. I tried the below code: func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)…
Jay
  • 21
  • 1
  • 2
2
votes
1 answer

R : language changes when converting ts object to xts object

I try to convert the built-in time series sunspots data into an xts object and print it out with the following code: sunspots.xts <- as.xts(sunspots) sunspots.xts The result looks like this enter image description here And here is my sessionInfo()…
Todd Chou
  • 37
  • 5
2
votes
0 answers

Are we allowed to programmatically open iOS WiFi settings in iOS 10?

Using Swift in an iOS 10 app, we can open the iPhone WiFi settings using this code: let url = NSURL(string: "App-Prefs:root=WIFI")! UIApplication.sharedApplication().openURL(url, options: [:], completionHandler: nil) Is this allowed by Apple? I…
Luke
  • 7,110
  • 6
  • 45
  • 74
2
votes
2 answers

How to store spaces in a String Setting when XML auto formatting is enabled?

Using Visual Studio generated Settings file, when I input only spaces they are converted to a line break. I think that's because the Settings file content is synchronized to app.config and as the IDE has XML auto formatting enabled it…
Jader Dias
  • 88,211
  • 155
  • 421
  • 625
2
votes
1 answer

android studio 2.2.2 not launch mobile network setting page through code

now i am working in android studio 2.2.2 tool.In my app if no internet connection then i should open mobile network setting page. I am using this code Intent intent=new Intent(Settings.ACTION_SETTINGS); ComponentName cName = new…
Sathish
  • 73
  • 1
  • 6
2
votes
0 answers

Add new persistent user setting at runtime

I have a software that should run with non-admin privileges (can't write to app.config). I'm creating a new user setting: var property = new SettingsProperty(key) { DefaultValue = val, IsReadOnly = false, PropertyType = typeof(T), …
bobination
  • 21
  • 2
2
votes
1 answer

Code::Blocks output "error: ld returned 1 exit status" without else

My Code::Blocks IDE is calling just "error: ld returned 1 exit status" when I build my code. I frequently saw this error with "collect2:" as "collect2: ld returned 1 exit status". I just know this is linker error. So I need to include another…
NEWBIEEBIEE
  • 197
  • 2
  • 13
2
votes
1 answer

Unity's deferred rendering setting seems to be gone, or am I completly wrong?

I started playing with unity with the version 5.4. Then it was possible to change the rendering mode to "deferred" when going to the menu Project Settings -> Player. I remember it for sure to be next to the "Color Space" option but on the Unity…
MaxMadman
  • 234
  • 3
  • 11
2
votes
2 answers

How to show Location Services settings over (under) my app settings

I customized my app settings (in iPhone settings page) by using root.plist. Now how can I add location services and notifications to my settings so user can see all my app preferences in single place? I need something like this, so I can both see…
AVEbrahimi
  • 17,993
  • 23
  • 107
  • 210
2
votes
2 answers

SQL Server Management Studio reset all styles

So I messed up my sql server management studio when I was trying to make it have a "dark theme" as I use it a lot and it was starting to wear on my eyes. While doing this, I specified for the output window to have a black background with white text.…
Ryan
  • 970
  • 15
  • 36
2
votes
0 answers

How do I configure sublime to collapse single line indents?

When I have at least two lines indented, sublime allows me to collapse the code: However, when I only have a single line, I lose that ability: Is there a configuration option to allow collapsing single indents? I can't seem to find any.
Trevor Hickey
  • 36,288
  • 32
  • 162
  • 271
2
votes
0 answers

C# can't open serial port from application launch successfully

So I have this port that I'm opening and saving the name of the port in a setting of my application. When I load the form it tries to open the port however fails to do so. Only after clicking on my "open port" button that has the EXACT same code…
J.Doe
  • 713
  • 1
  • 6
  • 19
2
votes
2 answers

How to open up settings page and scroll to a particular section?

In my app I have a Button that you press and I want it to open up my Settings screen (normally accessed with the PreferenceFragment that pulls from the preferences.xml file) and scroll to a specific Category. Is this possible in Android?
2
votes
4 answers

How can I change current working directory in Sublime Text 3?

Whenever I open a script (Python or R), I want Sublime automatically changes the current working directory to the path of that file. Is it possible? I added the setting "working_dir": "$file_path", to Sublime preferences but it doesn't help.
Minh Nguyen
  • 310
  • 2
  • 4
  • 11
1 2 3
99
100