All Questions
20,991,168
questions
0
votes
0answers
3 views
How to foreach a select dropdown
How to foreach my code in select dropdown so i can less the line of my code.
<div class="form-group">
<label >Procurement Mode</label>
...
0
votes
0answers
3 views
How do I neatly bind Cocoa inputs to NSDocument properties?
Let's say I have a simple NSDocument subclass:
@interface Document : NSDocument
@property NSString *someText;
@end
I want to map someText to some field in my view - so I add a new field to my view ...
0
votes
0answers
2 views
Insert by phpmyadmin causes Column count doesn't match value
I've an error in a web app run by PHP + PDO which interacts with a Mysql database in an insertion. This error tell: Fatal error: Uncaught PDOException: SQLSTATE[21S01]: Insert value list does not ...
0
votes
0answers
5 views
i have eror in the program java
i want write a method named checkBalance that accepts a string of source code and uses a Stack to check whether the braces/parentheses are balanced. Every ( or { must be closed by a } or ) in the ...
0
votes
0answers
4 views
calculate delta within one dataframe
I have a dataframe labeled as following:
a_col1 a_col2 a_col3 ID name b_col1 b_col2 b_col3
I am trying to generate new columns delta1, delta2, delta3
delta1 = b_col3 - a_col3
delta2 = b_col2 - a_col2
...
0
votes
0answers
5 views
Photoshop like canvas imege droppable, scalable images position absolute issue while dragging
Hi there i have a problem with making images drop inside canvas that i made (not canvas tag). I am dropping images into my canvas. I gave to it a click and dragn option that enables proporties window, ...
-3
votes
0answers
9 views
How to use javascript remove json object first key but not values?
I have an object in json file, and i using gulp 4 need to edit this json file.
{
remove_this_key: {
do_not_remove_me : [...],
do_not_remove_me_too: [...],
}
}
I would like to be like ...
0
votes
0answers
2 views
Presenting RootViewController after user sign up
In my app the user is directed to a sign up/ log in viewController if they are not signed in. This logic happens in SceneDelegate, I am stuck on trying to present the initial view controller after the ...
0
votes
0answers
3 views
DynamoDB enum input validation
Suppose, you want to create a rest api method for different car brands (BMW, AUDI, MERCEDES).
You also want to create a new car, including the car brand as property.
How can I validate if the car ...
0
votes
0answers
6 views
Custom error detection IntelliSense in C#
I have some code
entity.Add(itemBeingDependedOn);
entity.Add(itemWithDependency);
In the situation where line one is not there, I want to give the developer a red squiggly saying that it will fail ...
0
votes
0answers
12 views
If statement within if statement is not running
So i am trying to make a text based rpg game and what is supposed to happen here is when you activate a hunt by typing hunt it asks you yes or no. However even when i input yes, the you killed the ...
0
votes
0answers
5 views
Upgraded Android Studio… now when I try to run my apps, I get “No implementation found” for my main activity
Upgraded Android studio (stupid, right?). Now not only can I not hit alt-E, C to do a copy, but some older apps of mine, that I need to support, no longer run. These are apps that were put together ...
-3
votes
0answers
8 views
how to overlap/overlay squares of different sizes in html/css
I would like to recreate this image
But I'm unsure how to overlap the squares of different sizes in html/css.
0
votes
0answers
5 views
PowerShell Unicode Characters Transforming Unexpectedly
I've got a program that uses a few hash tables to resolve information. I'm getting some weird issues with foreign characters. Below is an accurate representation:
$Props =
@{
P1 = 'Norte ...
0
votes
0answers
5 views
How to get the value of the radio buttons within a radio group?
I read many related questions but none of them worked for me so far.
I have mat-radio-groups inside a *ngFor loop, like this:
<div *ngFor="let item of factor; let i = index">
<...