Questions tagged [universal]
621 questions
3
votes
5 answers
What exactly does Response.Redirect("~/...") put in the HTTP response?
I've just finished reading URL vs. URI vs. URN, in More Concise Terms, and it's really helped understand the distinction between the three terms. Since then I've skimmed the RFC2141 and RFC2616 specs and Microsoft's Response.Redirect Method…

lance
- 16,092
- 19
- 77
- 136
3
votes
1 answer
How to create Universal apps in iPhone/iPad?
I want to create a universal apps. I have already done some apps for iPhone. Now i want to start a universal apps which means the app should be runs in iPhone and iPad. I don't have any idea about that. So please guide me and give me some sample…

Pugalmuni
- 9,350
- 8
- 56
- 97
3
votes
2 answers
Universal Link. Unmatchable character
I am having problems trying to match '#' character for Universal Link file (apple-app-site-association).
For an URL like domain/#/results/parameters I've been trying with:
/?/results/*
/*/results/*
/#/results/*
/\#/results/*
/%23/results/*
But…

Salazar
- 401
- 1
- 3
- 8
3
votes
1 answer
Cannot cast IStorageItem to StorageFile
The following code will not compile because IsOfType is not accepted as a method on item. The documentation states:
When this method completes successfully, it returns an IStorageItem
that represents the specified file or folder. If the specified…

Robert
- 231
- 3
- 10
3
votes
2 answers
Make Eclipse RCP Intro part of a perspective
For a product we are creating, we want to be able to have the welcome screen display in a perspective (which we are calling "Start Here"). The intro is the only thing that needs to be in that perspective, however, when I try to add our intro view to…

Chris
- 31
- 2
3
votes
4 answers
UWP TextBox VerticalContentAlignment
I have faced up with the following problem: I cannot vertically align content inside TextBox. I have image icon and TextBox for user input beside, but text in TextBox has default top Alignment. I can change it by setting the…

Konstantin Chsherbakov
- 622
- 8
- 24
3
votes
1 answer
How do I enable loopback for a UWP Windows 10 app as TCP server?
I’m working on Windows 10 with a Universal Windows (UWP) app.
I’m using a StreamSocketListener in the UWP app to listen as a server.
I enabled “Internet (Client)” and “Private Networks (Client & Server) in the app manifest.
I used…

Matt Griscom
- 101
- 2
- 5
3
votes
1 answer
Background audio stops playing when minimize windows 10 universal
I created an radio app for windows 10 using mediaElement for audio output with AudioCategory = BackgroundCapableMedia but whenever I minimize the app on desktop or mobile the audio stops playing. So how do I keep the audio alive after I minimize?…

Kyeman
- 57
- 1
- 5
3
votes
2 answers
iOS : Universal framework is creating issue while submitting to app store
We have created one framework and integrated it in my one app. I am able to run and debug the app using this framework but i am receiving below error while submitting to the app store.
Please note that i am using xcode 6.3.
Error: 'Unsupported…

Nikh1414
- 1,238
- 2
- 19
- 35
3
votes
0 answers
Use of undefined keyword value 1 for event TaskScheduled
When debugging my universal Windows (8.1) app i encounter the following error from time to time:
System.ArgumentException was unhandled
_HResult=-2147024809
_message=Use of undefined keyword value 1 for event TaskScheduled.
…

Bunnynut
- 1,156
- 5
- 14
- 37
3
votes
2 answers
Why shouldn't I create an AUTOLOAD subroutine in the UNIVERSAL package?
My gut says this is a really bad idea, but I can't pin down a specific problem with it. What follows is a very primitive implementation of mixins/traits using an AUTOLOAD subroutine in the UNIVERSAL package. In terms of XY problem answers, the…

Chas. Owens
- 64,182
- 22
- 135
- 226
3
votes
1 answer
How to override universal selector font-size in IE6
I have an issue in an ExtJS-based application, however, I don't believe the problem to be ExtJS-specific (I could be wrong, but I suspect not).
The issue is that I have a universal selector like so:
* {
font-family : arial;
font-size : 10pt;
…

Frank W. Zammetti
- 1,231
- 1
- 11
- 19
3
votes
1 answer
How do I define a method once and use it as a "building plan" for other methods?
I'm new to Java and have the following question:
Is there an easier way of making methods for each variable?
The meaning behind the question is:
Do I have to define a method that does the exact same thing as other methods except that they use…

CubeSharpV
- 33
- 4
3
votes
3 answers
Universal Master-Detail Application with Core Data and tab controller for iphone storyboard gets unrecognized selector sent to instance error
I started a Master-Detail Application in X-Code. I chose the options to be universal, core data, and git repo. When the application comes up, I went into the iphone story board, added a tab view controller, moved the nav/table/detail views it starts…

AlienDev
- 333
- 2
- 16
3
votes
1 answer
iphone/ipad app not appearing in iPad app store
We're developing our first iPhone and iPad app with xcode 4.5.2. It is a universal app, with targeted device family = iPhone/iPad. Runs fine on simulators for iPhone and iPad but when distributed to Apple it only shows up in the app store on the…

user1796911
- 51
- 3