Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
3k views

Display os x window full screen on secondary monitor using Cocoa

I'm working on a Cocoa Mac app where I need to display a window/view on a secondary monitor, full-screen. I know how to create a window that could be dragged onto the secondary monitor, but I was ...
3
votes
2answers
242 views

How do I create and use (or simulate) multi-column indexes in Erlang Mnesia

I have looked through the Mnesia documentation and the 3 popular Erlang books. It seems only single column primary and secondary indexes can be created and used. Or maybe it is just what the examples ...
2
votes
1answer
111 views

Creating Secondary Indexes in Cassandra using Thrift and php

I am after any examples of how to create secondary indexes on an new or existing columns in a cassandra db using the Thrift API. The documentation surrounding Thrift is very sparse. Can anyone help a ...
2
votes
2answers
272 views

How can I edit a secondary calendar using google python API

I wonder if it's possible to create and delete events with google api in a secondary calendar. I know well how to do it in main calendar so I only ask, how to change calendar_service to read and write ...
1
vote
2answers
594 views

Android ProgressBar: how to set secondary color programmatically

I need to set secondary progress bar color programmatically. I only see the method ProgressBar.setProgressDrawable(drawable) for set the primary color, but there isn't a method for set the ...
1
vote
0answers
61 views

Secondary Keys with Heap::Simple in Perl

I wanted to investigate if anyone has ever used a secondary key when inserting into the Heap::Simple in Perl? If so, was your performance ever impacted?
1
vote
1answer
873 views

invoking PopViewController on Main Thread from Secondary Thread

I am doing my functionality in a secondary thread and once I get the result, I call the function that pops my ViewController in the main thread. But I get the following error: void ...
1
vote
1answer
330 views

To display secondary views under Eclipse menu Window -> Show VIew

I have created a Eclipse plugin application, in which there are many secondary views created at runtime for a single static view. In the menu 'Window-> Show View', only the entry for the view ...
0
votes
0answers
95 views

Change to secondary camera using Phonegap

i'm using phonegap 1.2 in a ipad2 app. I need to use the camera facing front, not the main camera. When the api activates the camera i starts ok, but it uses then main camera on then back, and the ...
0
votes
0answers
67 views

Secondary Sort of an MVC3 WebGrid

Is it possible to do a secondary sort of an MVC 3 WebGrid? For example, I would like to sort by Date and then by ID, so that entries with the same date will be further sorted by ID. I have looked ...
0
votes
1answer
56 views

How do I force a Secondary to be a Primary when “priority” = 0 and “slaveDelay” = n to rebuild my data around that point?

Is that even possible? How else could I restore the data from a slaveDelay-Secondary? The only way I can think of is to shut down all the other running members of the replica set and copy the ...
0
votes
0answers
334 views

C# MSChart: Use Secondary X Axis for Label Text (Primary X Axis with ScrollBar)

I have a chart (2D - Fast Line) with two X Axis (the Primary and the Secondary). The Primary X Axis has a ScrollBar, because i need to graph a lot of measurements (Numbers). The Secondary X Axis must ...
0
votes
1answer
97 views

WP 7.1 Live Tiles “Unpinned” listener

I'm playing with live tiles on Mango and it's all nice and all...user can delete secondary tiles and everything...but if the user "unpins" a secondary tile is there a way to know that tile is gone? I ...
0
votes
1answer
67 views

JPA Relation or Secondary Table

Hi I am reengineering one of my project with JPA which was initially on iBatis. public class Entity{ //ids and other stuff String locale; String text; } I was storing locale and text ...
0
votes
1answer
206 views

JPA Secondary Table XML Config

I am working on a project where I need to store an Entity, which is unmodifiable (from library), so I am using XML entity mappings entity object is like: public abstract class BaseModel{ Long ...
0
votes
1answer
419 views

Trouble with Berkeley DB JE Base API Secondary Databases and Sequences

I have a class Document which consists of Id (int) and Url (String). I would like to have a primary index on Id and secondary index on Url. I would also like to have a sequence for Id ...