Questions tagged [multiview]

200 questions
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
11
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
  • 45,294
  • 40
  • 140
  • 210
8
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
  • 14,299
  • 42
  • 109
  • 181
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,063
  • 4
  • 16
  • 27
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
  • 446
  • 1
  • 5
  • 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,245
  • 16
  • 75
  • 123
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
  • 552
  • 7
  • 17
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
  • 331
  • 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
  • 123
  • 1
  • 6
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,824
  • 2
  • 22
  • 50
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…
3
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
  • 634
  • 1
  • 8
  • 21
3
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
  • 135
  • 1
  • 2
  • 10
3
votes
1 answer

Why does the Passenger/mod_rails documentation ask me to explicitly disable MultiViews?

From the documentation: ServerName www.mycook.com DocumentRoot /webapps/mycook/public Allow from all Options -MultiViews So why the…
Steven
  • 17,136
  • 12
  • 61
  • 113
3
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
  • 303
  • 6
  • 19
1
2 3
13 14