Questions tagged [setting]

261 questions
1
vote
1 answer

Setting SUID flag on a file?

I have a python file that I would like to set the SUID flag on. So that if any normal user executes it it executes as root. I know it's a security issue but I still need to set the SUID flag.
AustinM
  • 773
  • 6
  • 18
  • 27
1
vote
0 answers

How do you save a setting for showing a startup form in c#?

i'm creating two forms in C#; one is the startup form, and the other one is the main form. I want to give a setting in the main form with a Checkbox, and i want it to show the startup form when it is checked. And when it is not, it will not show the…
Robin
  • 127
  • 10
1
vote
0 answers

How can I open some system setting pages in iOS11?

iOS11 is now a beta version. How can I jump to sysetm setting sub pages? UIApplication.shared.openURL(url) URL such as Prefs:root=WIFI or App-Prefs:root=WIFI, does not work at all. Does anyone have a solution ? Thanks very much.
Victor Choy
  • 4,006
  • 28
  • 35
1
vote
0 answers

Appcelerator android application crash always after permission change in device setting

Appcelerator android application crashing after changing the camera or location permission from device setting or changing the language in device setting. I am getting the error message when taping the application icon…
Nash
  • 11
  • 2
1
vote
1 answer

VIM quick fix: How to filter some text from error format string?

For example, my build log is something like: [Server01:/sourceroot/src/test01.cpp:3]This is an macro error. I hope to set error format to detect %f=src/test01.cpp, %l=3 So how to filter out the "Server01:/sourceroot/" string in my "set efm="…
Hind Forsum
  • 9,717
  • 13
  • 63
  • 119
1
vote
1 answer

strange error after setting variables JAVA_HOME and JVM path

I hope you can help me, please. I'm trying to run android studio in my pc but this message come up i've set JAVA_HOME variable with bin and without it, also PATH but nothing works out. I verified the version of java installed in my pc and it is…
Amendo
  • 71
  • 10
1
vote
0 answers

I'm using the Sublime text3 and SVN package. How do I change default commit message?

When commit file or folder in Sublime text SVN, default commit message is has set "Type commit message here…". How do I change this message?
Jang-Ho Bae
  • 498
  • 5
  • 19
1
vote
1 answer

How to fetch the status of Internet security setting(Display mixed content) using javascript or c# code

Is there any way to detect the internet security setting using javascript or through C# code
1
vote
2 answers

git clone fail : which is about setting certificate

Whenever I git clone,it appeared like this. And I could't clone anything from the github now. Please help me.
HanYif
  • 43
  • 3
1
vote
1 answer

PyCharm Code Folding Collapse

In PyCharm, I have it selected in my settings so that when I collapse the code within a method or I collapse my import statements, I get the box on the left hand size by the line numbers with the "+" inside it to expand when I want to…
KidMcC
  • 486
  • 2
  • 7
  • 17
1
vote
1 answer

CRM 2015 set more rows for subgrid

How to set subgrid properties in CRM 2015 quote, to show more than 7 rows table (table height more than 7 rows)? I spend a lot of time to find anwer to my question but I found nothing. I try to set number of rows and "automatically expand to use…
1
vote
2 answers

Setting environment changes?

I would like to ask you if it's normal that my "Setting environment" changes after each system reboot or even if I just close my cmd console. for example, I'm using python 3.5, when I wan to use python or to uses pip under the cmd I got an error…
Malek B.
  • 1,104
  • 1
  • 12
  • 14
1
vote
2 answers

settings reset in webpshere 7 after application deployment

I am using Websphere 7 to deploy a Web project. At the Enterprise Application level in Webpshere I am making some settings related to cookies. I am changing the name of the cookie and marking it as secure. I hit save, I restart the app and all is…
1
vote
3 answers

turn off the proxy c#

this is the code to turn on the proxy: Public struct Struct_INTERNET_PROXY_INFO { public int dwAccessType; public IntPtr proxy; public IntPtr proxyBypass; }; [DllImport("wininet.dll", SetLastError = true)] private static extern…
robert
  • 321
  • 2
  • 9
  • 20
1
vote
0 answers

How do I randomly display a set of backgrounds?

I have five different backgrounds that I want to randomly display everytime the page reloads. I'm still fairly new to java and not sure how to do this using R.drawable.... I was thinking I would have to generate a random number, use that number as…