Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
3answers
911 views

Vista/7: How to get glass color?

How do you use DwmGetColorizationColor? The documentation says it returns two values: a 32-bit 0xAARRGGBB containing the color used for glass composition a boolean parameter that is true "if the ...
13
votes
2answers
9k views

How to register user defaults using NSUserDefaults without overwriting existing values?

I have an AppDelegate class with +(void)initialize method that I use to register some defaults. Here's the code that I use: + (void)initialize { NSDictionary *defaults = [NSDictionary ...
9
votes
3answers
7k views

Storing iPhone application settings in app

My iPhone app has few settings that users is likely to change quite often. I would like to know if there's any suggested way of handling such settings (reading and saving them). On Apple sites I found ...
7
votes
1answer
143 views

How do you handle user preferences?

Like most software, users are able to specify how they'd like to handle certain things. In my case, users can specify what kind of formatting they would prefer. There are 3 options, leave unformatted, ...
7
votes
3answers
2k views

Windows Ribbon Framework: How to change font face and size?

How do you change the font face and font size used by the Windows Ribbon Framwork's UIRibbon? The font used by the ribbon does not match the font the user has chosen as their Windows preferences - ...
2
votes
2answers
138 views

WPF version of .ScaleControl?

What is the WPF version of Control.ScaleControl? i am trying to honor the user's font preference by setting the font to the IconTitleFont: private void ApplyUserFontPreferences() { ...
2
votes
3answers
294 views

Finding the preferred application for a given file extension via unix shell commands

this may not be strictly about programming, but if I find no ready-made solution it may become a programming task: On UNIX, what is a command-line method for determining the user-preferred ...
2
votes
5answers
325 views

.NET - Click-Once / Smart Client Applications - Browser Cookie Equivalent?

Is there an equivalent to browser cookies for Smart Client / Click Once application development on .NET 3.5? Some place I can store cookies on the user's machine rather than the server. Or to put ...
1
vote
3answers
190 views

Where to store user preferences for a C# Windows app

Can anyone provide a best-practices example for where to store user preferences for a C# Windows app? So far I've heard a number of options: Some people are saying to store it in SQLite. Is SQLite ...
1
vote
1answer
169 views

Saving state of a Window in Java/SWT

I'm trying to build a small application using Java and SWT for the GUI. I'm looking for a way to store in some file the preferences set by the user, I mean, if the window was resized then that new ...
1
vote
2answers
183 views

Best way of handling user settings in a program

I want to know what are the best ways/practices of handling user settings in a program. I'm writing a program and want to allow users to save settings which can be loaded automatically as soon as the ...
1
vote
2answers
1k views

iPhone settings bundle

I want to allow the user to enter a valid date using the iPhone’s settings application. I have experimented with many of the PreferenceSpecifiers data node types including date. I have two issues: ...
0
votes
1answer
37 views

in-app User Preference using Slider / Utility Application

I'm using an Utility Application. On the flip side I have a slider which I want to use for setting the (in-app) User Preference. Say the user sets the value of the slider to 40 in the flip window, ...
0
votes
2answers
69 views

xcode 4 / ios5 - how to set textColor based on prefs

I have looked on SO but cannot find an answer that works for me, so here goes: I am trying to set color, font and size elements based on user preferences. I have no problem with font and font size, ...
0
votes
1answer
37 views

How to save in iphone device user's favorite articles

I have newsportal application and i want user when hitting a button to save the whole article that is reading at the moment, to the iphone device so that he can access it whenever he wants. I also ...
0
votes
0answers
33 views

Fail safe preferences storage on OS X

If I want to write a preferences file on OS X that absolutely must not fail, where should I get the preferences path? I'm currently fetching the path using: ...
0
votes
1answer
196 views

Settings Bundle - giving a slider item a title

Could anyine tell me what the preferred method is for giving a slider item a title when configuring Root.plist in XCode please? I have scoured all the documentation and played around with a dummy ...
0
votes
1answer
291 views

iPhone app User settings - what is the recommended approach?

i am in love with core data in the few last months, and used it to save data in my app including the user settings. it works great but i am afraid that i will have problem with future updates. i know ...
0
votes
2answers
249 views

User preferences using SQL and JavaScript

I am using Server Side JavaScript - yes, I am actually using Server Side JavaScript. To complexify things even more, I use Oracle as a backend database (10g). With some crazy XSLT and mutant-like HTML ...
0
votes
1answer
860 views

Pull a preference from a xml preference layout

Okay so i have been working on this for a while now, i know this has got to be easier than im making it but what im trying to do is i have my xml preference layout or whatever you would like to call ...
0
votes
2answers
259 views

re-prompt to choose default activity

is there a way to reprompt the user to choose a default activity for an intent? For example, user selects his default home apk and I want him to reconsider his choice once again. I know how to do ...
0
votes
1answer
54 views

Scheduling Email Notifications

I'm trying to figure out a good solution for sending email notifications based on user preference. Users can set up notifications to come Everytime the event occurs Once an hour Once a day Once a ...
0
votes
2answers
127 views

Cocoa multiple user preferences on a single mac account?

I am currently in the planning phase for a scheduling and data tracking software. I want to let the primary user add password protected profiles to the program so that different people can use the ...
0
votes
3answers
94 views

Different options on how to keep a website's preferences?

I am in the process of renovating our CMS and I've run into a situation that I don't know which solution to adopt. Basically each one of our clients houses their website's content in their own ...
0
votes
3answers
340 views

Where should I store user config data? Specificaly the path to the data file?

I have an app using a SQLite db, and I need the ability for the user to move the data file and point the app to where it moved to. I used the Entity Framework to create the model, and by default it ...
0
votes
1answer
70 views

What is the way to handle a user preferences file in Flex3?

I need a way to handle user preferences in a file. Of course, users can update their preferences. What is the best way to do that ? .ini file or .xml file ... Any snippet to start with ? TIA
0
votes
2answers
179 views

(Rails) Managing USER PREFS with a MASTER PREFS fallback…?

I'm looking for a mechanism by which to facilitate user preferences. I also want to have a set of "master" prefs that are used if the currently logged in user doesn't have a specific pref set. I see ...
0
votes
2answers
107 views

NHibernate Web Application - Managing User Preferences

I've got a web application with an NHibernate Data Access Layer. I have a large number of user preferences that can be stored, these are mainly booleans for example registering that a dialog has been ...