253 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
78
views
How to figure out what error the IDE has identified with this bug icon?
I'm trying to write a script for Attachmate EXTRA! X-treme in its in-application macro editor ("Extra Basic"), but there's some syntax problem or error occurring in the code that's ...
-1
votes
1
answer
122
views
.net Maui list zebra profiles
I created an Maui app. I need to list all the profiles on my zebra device.
DOes anyone know to doit?
Thanks
So far, I tried this, but i don't get any results. The if instruction is always false
public ...
0
votes
1
answer
46
views
MySQL giving me 4 rows,there should be one,I don't know
I'm a beginner apprentice. I don't know why my code is returning extra duplicate rows.
Code:
SELECT *
FROM employees
It returns the list, but repeated multiple times and the first number on the ...
0
votes
1
answer
260
views
How to pass extra data after installing an app
I am installing an app programmatically in Android Studio. I am downloading the apk file and then building and launching the Intent:
val intent = Intent()
intent.setDataAndType(uri, "application/...
0
votes
0
answers
63
views
Flutter - Remove the extra top of second appbar
I have a page: return Scaffold (appBar: appBar1...)
I have a package, in the package i have a pageA - return Scaffold (appBar: Appbar1)
. When i push a new screen from pageA - this navigate to the new ...
1
vote
0
answers
1k
views
What is the best way to make a pip package with optional functionality?
I have my own pip package, which is called my_package.
It's quite large, and I want to split it into a few packages, which I can optionally install if necessary.
So my goal is: to have main package ...
0
votes
1
answer
155
views
Base64 Encode with Attachmate Extra! Basic macro
I'm working with an Attachmate (MicroFocus) Extra! Basic macro and have a need to encode a string to Base64 for rudimentary password protection. The code below is what keeps popping up in searches. I'...
0
votes
0
answers
227
views
Display of different pins custom on map SwiftUi (error extra argument)
I'm trying to display custom pins on my map, only an error appears "extra arguments at postions #7, #8 in call. If anyone can help me I would be grateful!
(I'm new to swift)
var body: some View {
...
0
votes
0
answers
28
views
Label has an unwanted ampersand and cent sign
I'm trying to create a label and I copied it from another label's code. The new label is printing 2 extra unwanted characters side by side; an ampersand and a cent sign. I double checked that line of ...
0
votes
0
answers
382
views
Tesseract generating extra symbols, letters and noises. How to stop it?
I am using pytesseract to extract text from images. These JPGs are created from pdf.
On some images it is hitting 98% + accuracy. Maybe a dot or a digit missing here and there. But there are times it ...
0
votes
1
answer
85
views
Removing a menu item from Manager
After I tested and removed MODX extra Ticket, there is still a non-working menu entry ticket_menu_desc in the Extras menu. How could I remove it? Somehow, Ticket's uninstallation script didn't remove ...
0
votes
1
answer
168
views
Android - Intent in BroadcastReceiver lost String
I want to use BroadcastReceiver to send notification with specific String. Here is my function in MainActivity:`
private void createAlarm (int i) throws ParseException {
AlarmManager ...
0
votes
2
answers
228
views
Return extras onActivityResult always null
I am building my first app and I am running into an issue with passing on extras in an intent for onActivityResult. I tried looking for the answer but I cant find one that seems to fit. As far as I ...
0
votes
1
answer
31
views
Error in calculation while looping through the data
I have a dataframe with 3 variables and I am trying to calculate how many chares can be purchased with 100ドル in the first year when the company was listed
The data looks like
YEAR_END COMPANY_NUMBER ...
2
votes
1
answer
567
views
What happens to the extra characters in the fgets() buffer that are over the bounds check?
#include<stdio.h>
int main() {
char arr[10];
printf("Enter your name: \n");
fgets(arr, sizeof(arr), stdin);
puts(arr);
return 0;
}
I have a char arr[10] and use ...