Questions tagged [setting]

261 questions
0
votes
2 answers

setting a global matrix in python

I want to save the incoming data into an array that remember its previous array position test.py global data, in_data data_hold = {} data = 0 def start_input(atm_data): data_hold[data] = atm_data When calling twice from other …
anshar ryan
  • 15
  • 1
  • 7
0
votes
1 answer

Setting Preferences Android

I´m having trouble with setting preferences in my app. In the main layout I have the button to open the settings layout: Button btnPreferences = (Button) findViewById(R.id.btnPreferences); btnPreferences.setOnClickListener(new…
absolutkarlos
  • 570
  • 1
  • 9
  • 22
0
votes
1 answer

How to open settings page of iphone throgh my app?

Actually, I have a button on my app. If user click on it they will see the general setting page of iPhone. Is it possible for iOS 7 or iOS 7.1? If so then how?
Gour
  • 50
  • 8
0
votes
0 answers

C# ListViewItemCollection in Settings

Is there a way to add a setting in a C# application with the type ListViewItemCollection or should i use something different, like an Object[] maybe?
WolfyD
  • 865
  • 3
  • 14
  • 29
0
votes
2 answers

Sending email: failed to connect

I am using java to send mail. I want to set the from mail id to xyz@chatmeter.com. When i am using that for sending mail the following exception is generated.. Exception in thread "main" javax.mail.AuthenticationFailedException: failed to…
Prakash Panjwani
  • 2,540
  • 5
  • 23
  • 34
0
votes
2 answers

Questions regarding the setting button, action bar and the title changing

I am a noob in android development and I follow the tutoral of the android website. 1. In the part of "Starting Another Activity", I just copied the code and tried to run it, but I found after the activity is changed (changed to new page), the…
0
votes
2 answers

How to False device setting in Application in Android

My application is taking font(Size) and other setting of device rather than the setting of font of application which changes the look and feel of the application. I want application will be remain on its setting or take application setting rather…
Soniya
  • 600
  • 7
  • 34
0
votes
1 answer

wordpress setting API Illegal string offset error in my code

hi to day start to create the setting API write coding to create simple option page for my theme this is my full code when run the my code it is appear this error Warning: Illegal string offset 'jw_banner_heading' in…
Shwan Namiq
  • 631
  • 8
  • 21
0
votes
1 answer

Winforms How to add my custom class as my own data type in setting file?

I have a simple class below and I like to add it as a data type in setting file as I can see it in the type list of setting designer: namespace MyApp.Classes { class BankCash { public string BankName { get; set; } public…
Shahram fr
  • 122
  • 1
  • 11
0
votes
0 answers

How to open the device setting on home button click - android

want to open the setting of the device when i click on the home button in the device i tried this code but when the app start its open the device setting automatically @Override public void onAttachedToWindow() { …
memo
  • 1
  • 4
0
votes
1 answer

How to add delay between filling FixedThreadPool

How can I add delay when empty queue is filling with next thread? Ex: int numberOfThreads = 55; private static ExecutorService executor = Executors.newFixedThreadPool(numberOfThreads); int counter=0; for(TblHomePageUrl tblHomePageUrl :…
Onurcan
  • 13
  • 3
0
votes
1 answer

Loading a radio button name from INI w/ vb.net

I have an INI file that stores the selected radio box on exit. It's like: [Settings] SearchWhat=RadioButtonName When my form loads I am wanting to take that name and set it as checked. I tried: Dim searchwhat = ini.ReadValue("settings",…
gwilson
  • 73
  • 1
  • 8
0
votes
1 answer

What effects drawing charts/diagrams from $_SESSION data under php5, which worked under php4?

I have a script generating 3 diagrams from $_SESSION variables which work fine under php4 with register_globals = off, but when I parse the same script as php5 I get no diagram. The diagrams a drawn from GD libary and it works, if I set the data…
ste_php
  • 11
  • 1
0
votes
1 answer

Opening wifi setting in IOS7

I'm testing a feature that when I can't get wifi connection I will show a alert view and a button to go to system wifi setting I know that in IOS6.0 this can't be done but today I downloaded google map with my Iphone 5(IOS 7.0.6) If I didn't have…
0
votes
0 answers

Setting and reading a default string for android app

I am working on an Android app that uses a given url to download a file to my device. I want the url to be defined by the user outside of my app, e.g. through the "Settings/Apps/App info/" page. Is this possible and how can it be implemented?