All Questions
0
votes
0answers
2 views
How to add the Azure custom application to Azure Active Directory groups?
I have got the Azure powershell command to add member inside a specific group. But my requirement is how can I add a custom application inside a group. There is no powershell command to do this. ...
-1
votes
0answers
3 views
Error getting reflective information for class org.ajaxtags.tags.AjaxDisplayTag
10:43:20,771 ERROR [org.jboss.msc.service.fail] (MSC service thread
1-4) MSC000001: Failed to start service
jboss.deployment.unit."test.war".POST_MODULE:
org.jboss.msc.service.StartException in ...
0
votes
0answers
2 views
UITabBarController Rotation lock in one First Controller in iOS9
We have UITabBarController Programmatically in our app. We added 5 Navigationcontroller in UITabViewController like below code.
self.tabBarController = [[UITabBarController alloc] init];
self....
0
votes
0answers
2 views
Ionic framework and angularjs form creation
i created a signup form with the help of ionic framework and angularjs .In entering the form details from one field to another when i hit enter button i need the cursor to go to next field. i tried it ...
0
votes
0answers
4 views
AngularJS contenteditable
In my Html code, I have set the columns of Task Name to be editable.
<tr ng-repeat="task in task">
<td contenteditable={{makeEditable}}>{{task.Name}}</td>
<td>...
0
votes
0answers
2 views
Can not debug after update to VS 2015 Update 3
I have a web project that I am developing and I recently updated to Visual Studio Professional 2015 Update 3.
I am using IIS 10 on a windows 10 PC
When I try to F5 / Debug my app I get the following ...
0
votes
0answers
3 views
C++ Variadic template - Unable to figure out the compilation error
Given below is the code(CPP part of it) that I am trying to compile
template<typename... T>
void SelectOperation::fetchNextRow(tuple<T...>& row) const
{
fetchColumn<0, decltype(...
-1
votes
0answers
7 views
Is jni c++ code optimized?
JNI c++ code can be optimized?
I listen that jni c++ code can't be optimized.
I want to know the way calling jni on jvm.
plz explain and give some references.
sorry for my poor english.
0
votes
0answers
3 views
LINQ to SQL and N-Tier layering
My experience has made me more accustomed to the following structure in my programs. Let's say it is a .NET WPF application. You create a WPF project, a Business Logic project (Class Library), a ...
0
votes
0answers
8 views
Need a time object in one of my iOS app (Swift)
I am currently creating an app where I ask the user to input a time (through datePicker) and send the user a notification every day on that time. However, I noticed that datePicker only has an NSDate ...
-1
votes
1answer
7 views
How can i search if argv ends with a char
How would i check to see if argv ends with a character? for example how would i write the program if I wanted to see if the agv[1] ends with the character z.
if(argv[1] == ? )
printf("The input ...
0
votes
0answers
5 views
how to remove unwanted perimiter lines background-image css
Hey guys I have been wrestling with this for a little bit now and I am at a complete loss for what is causing these funny lines.
So I have a few divs with the class 'action-row' then inside there I ...
0
votes
0answers
5 views
Is there any maximum length of character regex can handle?
I'm stack in making my regex work in Python3.5.
I have a list which contains a lot of URLs.
Some URLs are short, others are long.
I could excerpt URLs I wanted...mostly but only this URL cannot be ...
-2
votes
0answers
6 views
Upgrading Project from JDK 6 to JDK 8
My current project is built on Java 6. I'm thinking of upgrading it to Java 8.
Here is the details of the build.properties
xdoclet.home=D:/**/xdoclet-1.2.3
jboss.deploy.dir=D:/**/jboss-6.1.0.Final
...
0
votes
0answers
9 views
Collection View Cell Returning Nil only in 1 case of Many
So this is my first post on SO and I am new to Swift so bear with me as I try to explain clearly what my issue is. I am using a collectionview controller as a form for user submission with two ...