2,720 Recommended Topics
Remove Filter | |
I'm trying to use CLion (thus CMake) to create OpenGL applications using C++ on MacOS Monterey using a 2021 (so M1 based) Macbook. Glew2 and GLFW3 are installed correctly using Homebrew, XCode and the commandline tools are installed as well. Creating and compiling/running through XCode works fine, but using the … | |
## Introduction ## The **Storage Access Framework** (SAF) provides a great way to access files exposed by other applications via their own DocumentProviders. In this tutorial, we will learn how to use the SAF in our App. ## Goals ## At the end of the tutorial, you would have learned: … | |
| Hi, I like to ask for a clarification about it. I have combobox.items(i) that go trough a for next loop for each index I need to check if its content (number) will be >=1 or <=10. Now I tried this one, but I know where the error might be, the … Programming vb.net |
Hi DW, I'm experiencing an issue I've tried invalidating, fixed the offline sync but still I'm getting this error. My App uses Firebase FCM. On the dependencies I have `com.google.firebase:firebase-core:16.0.5 com.google.firebase:firebase-messaging:17.3.4` My implementation `com.android.support:appcompact-v7:28.0.0-alpha1` This implementation is underlined with a red line and I think it is what having the … | |
{program ncic; const home : real = 1500; life : real = 2000; motor_vehicle : real = 1400; business : real = 1200; Var surname : array [1..2] of string; //array to save the surname for each client insurance : array [1..2] of string; premium : array [1..2] of integer; … Programming pascal | |
Hello I want to send multiple values from a to an api function. on the db i store the values in text format. The value that is stored is array on the Swal alert, I am getting [object object] but i want to get each value e.g. Painting or Graphic … | |
I am trying to use my platform's API by using PHP and cURL, but I have a problem when I try to `PATCH` some custom attributes. As the title says, I am getting an API error with code: 422 and the message: `Validation failed.`, because the `attributes` field has `Invalid … | |
| Hi, how can I make sure that all the datetime stored previously by user input will be updated in a cycle for? I explain better the structure Combobox2 <----- is where list of datatime are previously stored Combobox3 <------- is where remaining time is given by a substraction of two … Programming vb.net |
| Hi, I'm searching for a way that let run a event without need, that specific form to be open, and also save thing. I explain better, the performclick will only fire if that specific form it's open, I'm searching a way to do this on background. This is the code … Programming vb.net |
| Hi, I try to show up a notification when an if statement is true, but it doesn't show up also I checked the win 11 notification is something was on, but all things is off. In case I can only create a custom one. S.O = Win 11 Version of … Programming vb.net |
| |
i have below stuff an i write each result in excel sheet . i have an issue to write in excel sheet of each sql result drop table #table_Northwind create table #table_Northwind ( RowID int not null identity(1,1) primary key, column_name varchar(50) ) insert into #table_Northwind (column_name) (SELECT TABLE_NAME FROM … | |
Hello All! We are new to Vue3. We are developing a product web catalog application based on vue3. This application has only the frontend, because all the product data is pulled via REST API. This application can be used by multiple customers. The functionality should be the same, but every … | |
## Introduction ## The release of Android 12 also came together with Material 3. Whether you love it or hate it, it is likely to be here to stay for a couple of years, therefore, it would be useful to know how to use it. In this tutorial, we will … | |
## Introduction ## In Android development, the MediaStore API is a great API to use if you are building a music player. In this tutorial, we will learn how to query for audio files in the MediaStore database. ## Goals ## At the end of the tutorial, you would have … | |
| Like title, more particulary, I have two textbox when user put links when finished the result will be on the second one with some default string in the 0 index of the counter and after the exiting of the loop. My question is how I can make that even the … Programming vb.net |
how to pause VB.net code until the user clicks a button I want my code to pause while the user makes a decision on the form by clicking a button on the form. How would I go about doing this. I have tried using Doevents with a do unitl loop … | |
| Hi, how can I clean all saved settings in my.settings ? Do I need only to put my.settings.[name].clear() or a My.settings.reset() can do a good job for all the user setting added into the program? Also how can I add an exception if there is nothing in that setting or … Programming vb.net |
i have initialized the elements of the array by reading the strings from a file, however when I call the sort function, either the program crashes or it just outputs NULL. What could be a more efficient way to store data from a file? the file that I have opened … Programming c++ | |
If you download multiple files with the same name, a number is automatically added to the file name, for example: filename(1), filename(2) etc.. What I am trying to do is when I am creating a name and there is already a same one, the name I create to appear in … Programming php | |
Helloeverybody, I am creating some custom HTML tags using Javascript, I have created plenty of them and they all work fine, except when they have to contain other tags. I am creating a tag called GROUP with the following syntax: <group label="text here"> (other tags here - for example some … | |
This is my code index_dictionary = dict() with open("BIBLE.txt") as Bible: count = 0 for line in Bible: index = line[:8].split() Book = index[0].strip().upper() chapter, verse = list(map(str.strip, index[1].split(":"))) index_dictionary[(Book, chapter, verse)] = count count += len(line) Bible = open("BIBLE.txt") while True: search_engine = input( "Book list: Ge(Genesis), Ex(Exodus), Le(Leviticus), … Programming python | |
line 5: Declaration syntax error line 59: function containing do are not expanded inline line 153: function containing while are not expanded inline line 218: declaration terminated incorrectly` Programming c++ | |
Hello web developers, I have a small problem and I am not sure if it's doable using just htaccess or should I use php `file_get_contents();` I have 2 sites ... example-1.com and example-2.com I want the content of example-1.com, whole site, to show on example-2.com. And if someone visits example-2.com/about-us … | |
## Introduction ## Coil is a popular image loading library for Kotlin-first Android projects. It is lightweight, fast and is super easy to use. In this tutorial, we will learn how to use Coil to load images into our project. ## Goals ## At the end of the tutorial, you … | |
Is it possible to write a full blown operating system (such as Linux) in Python? I mean writing a kernal, and then other applications that the kernal calls, without having Windows, Linux, UNIX, or Macintosh OS installed on your computer? | |
Hi everyone, I'm having trouble creating a program. This program needs to create a square board of size n, where a user inputs an integer value 2 - 9. For example, a board with size n=4 would look like: 1 . . . 2 . . . 3 . . … | |
Hey can you guys help me make a operating system in python? Programming python visual-basic | |
## Introduction ## WorkManager is the preferred method of managing background tasks on Android. It also includes convenient extensions for RxJava3 and Kotlin Coroutines. In this tutorial, we will learn how to use WorkManager as well as how to observe the background task with the debugging tool Background Task Inspector. … | |
I'm looking to build an ASP.NET WebAPI/REST API (not Core) that should accept client certificates as authentication. I've found several examples, so I hope to be able to succeed. However, I'm looking to find out more on the inner workings so to speak of certificates and such, so I'm hoping … Programming cybersecurity |
The End.