Questions tagged [multiview]
199 questions
93
votes
7 answers
material-1.5.0-alpha03\res\values-v31\values-v31.xml:3:5-94: AAPT: error: resource android:color/system_neutral1_1000 not found

Jaanu
- 1,297
- 2
- 7
- 12
12
votes
3 answers
How to input an argument into CGContextSetRGBFillColor?
I'm trying to input the arguments for CGContextSetRGBFillColor using a data type. For example:
NSString *colorcode = ctx, 0, 1, 0, 0;
CGContextSetRGBFillColor(colorcode);
But I get an error saying that I have too few arguments.
I want to change…

user1053078
- 153
- 2
- 5
12
votes
5 answers
What is an appropriate use for ASP.NET's MultiView control?
What are some scenarios where MultiView would be a good choice? The MultiView control along with its View controls simply seem to extend the notion of Panels.
Both Panels and MultiViews seem prone to abuse. If your UI concerns and biz logic…

Larsenal
- 49,878
- 43
- 152
- 220
10
votes
2 answers
How to rectify a detected ellipse
I am trying to find circles in images and warp them back to a canonical view (i.e. as if looking into the center). However, circles in general project to ellipses under perspective transformations. So I am first detecting ellipses, roughly doing the…

Aly
- 15,865
- 47
- 119
- 191
6
votes
4 answers
UserControl's Event Handler not firing
I dynamically load a UserControl into a View that's in a MultiView control. Although the UserControl adds an event handler, the event never fires.
What am I missing here?
Thanks!
Containing ASPX page:
protected override void OnPreRender(EventArgs…

Mark Maslar
- 1,121
- 4
- 16
- 28
6
votes
1 answer
Autocomplete jQuery on User Controller within Repeater .NET
I have a Multiview search feature on a Web User Controller that is called within a Repeater, OHMY!!
I have some training sessions being listed out on a page, each calling an employeeSearch Web User Controller so people can search for employees to…

TheDPQ
- 476
- 1
- 6
- 13
5
votes
1 answer
ASP.NET MultiView by ID?
Is there a way to set the active view in a MultiView by ID rather than by index?
Something like this?
multiviewProgress.Views["step3"].SetToActiveView();

rlb.usa
- 14,942
- 16
- 80
- 128
5
votes
3 answers
MultiView cannot have children of type 'GridView'. It can only have children of type View
I have the following asp.net code
asp:MultiView runat="server" ID="mvPaymentsOnProperty" ActiveViewIndex="0">

user2110845
- 385
- 8
- 19
5
votes
3 answers
Mac OS X Cocoa multiview application navigation
I've already spent 2 full days trying to figure out how to use NSViewControllers in order to create a multiview application.
Here is what I do.
I have 2 View Controllers and the MainMenu.xib's Window.
I also have an AppController that is the…

Miky Mike
- 341
- 6
- 17
5
votes
1 answer
Multiple-View Geometry
I've two images captured from two cameras of same make placed some distance apart, capturing the same scene. I want to calculate the real world rotation and translation among the two cameras. In order to achieve this, I first extracted the SIFT…

Aarambh
- 133
- 1
- 6
4
votes
1 answer
Tensorflow 2.0 How make share parameters among convolutional layers?
I am trying to re-implement Multi-View CNN (MVCNN) in Tensorflow 2.0. However, from what I see, keras layers do not have the options reuse=True|False like in tf.layers. Is there any way that I can define my layers which share parameters using the…

Tai Christian
- 654
- 1
- 10
- 21
4
votes
2 answers
Complex multiview iphone ios
i need to implement a multiview app really complex to me and i need some advice. The multiview app is something like:
First view: Normal UIViewController with one button, when i push it go to second view
Second view(aka mainview): a Windows with Tab…

Alessio Lunardelli
- 145
- 1
- 2
- 10
4
votes
1 answer
How to close a TMultiview from code in Delphi XE8?
I have a form with a speedbutton linked to a TMultiView component.
On the multiview I have some buttons. When clicking on any of the buttons I want the multiview to close and depending on the clicked button, different functions to be called. I have…

Lars Ljungberg
- 313
- 1
- 6
- 19
3
votes
1 answer
Is there any preferred approach to constructing multiview applications in iOS?
Short Introduction
I am kind of new in the field of app development using the iOS platform. Currently I'm in need of developing a multiview application for iPhone as well as iPad.
My Research
I've been doing some research on development of multiview…

CodingBeagle
- 1,888
- 2
- 24
- 52
3
votes
1 answer
asp:multiview control - can we show all the views on one tab instead of different tabs
I have used a Multiview control in my code where i display 5 views on my page. Currently, I am trying to implement "Print" functionality" using CSS and what I want is to display all the 5 views together so it is easy to print.
So, is it possible to…

user1038187
- 31
- 2