search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

P粉212114661

P粉212114661

Follow
student

Follow 0
fans 0
integral 0
SQL Server Operating system error 5: "5(Access is denied.)"

I am starting to learn SQL and I have a book that provides a database to work on. These files below are in the directory but the problem is that when I run the query, it gives me thi

2026-01-25 12:43:20Ask
MySQL
SELECT FOR UPDATE with SQL Server

I'm using a Microsoft SQL Server 2005 database with isolation level READ_COMMITTED and READ_COMMITTED_SNAPSHOT=ON. Now I want to use: SELECT * FROM FOR UPDATE ...so that other d

2026-01-21 21:22:07Ask
MySQL
Increasing accuracy of solution of transcendental equation

I have a specific kinematics as a part of a more complex machine and need to compute some physical parameters that are very hard (more like impossible) to measure with proper accurac

2026-01-11 10:22:13Ask
C++
Is SqlConnection.Close() need inside a Using statement?

I'm using this code: public void InsertMember(Member member) { string INSERT = "INSERT INTO Members (Name, Surname, EntryDate) VALUES (@Name, @Surname, @EntryDate)"; using (

2025-12-28 12:43:11Ask
MySQL
Accessing Imap in C# [closed]

Is there a built-in method to access an Imap server (with SSL) in C# or is there a good free library?

2025-11-30 17:22:49Ask
C++
Using JavaScript to control div visibility based on radio button selection without using ONCLICK

I have some html code that is partially valid. I'm trying to display some text input based on radio button selection. How it works for me is that when the radio button is pressed it hides the other options but when the screen first loads all 3 options show up. I'm assuming it's because the function is called on click and the selected option of the first radio button does not constitute a click. I tried making an onload event listener that would only show up on the first time I requested it, but that didn't work. This is my code <%layout('layouts/boilerpl

2024-02-17 21:44:02Ask
HTML
React-Scripts starts not accepting js changes

I have a React app bootstrapped using create-react-app. The application runs in a docker container and has been deployed in a subdomain. Assuming the domain name is http://mycompany.com, then my React application is located at http://mycompany.com/users/userid/apps/reactapp. There is a reverse proxy server that does URL rewriting, changing the base URL to a subdomain URL. This is my package.j

2024-01-10 17:02:48Ask
React
How to prevent Mud Blazor MudTable columns from expanding to fit text

I have a table with 5 columns, one of which contains some very long user IDs (without spaces). Instead of cutting the text off, it expands the column to accommodate all the content, pushing the other columns to the right and causing scrollbars to appear. I've been researching for hours trying to figure out how to fix the width and stop it from overflowing. I tried setting the table-layout attribute on the MudTable element to fixed and tried using variations of width:20%;;wrap:new;whitespace:nowrap;overflow:hide;text-overflow:el

2023-12-27 11:05:27Ask
CSS3
Why my variables remain unchanged after modification within a function - Understanding Async Code

Given the following example, why is outerScopeVar undefined in all cases? varouterScopeVar;varimg=document.createElement('img');img.onload=function(){outerScopeVar=this.width;};img.src='lolcat.png';alert(outerScopeVar);varouterScopeVar;setT

2023-10-13 21:51:11Ask
PHP
CSS Grid: Create new row when child content overflows column width

I have a two column layout based on CSS grid. When the content of the second column exceeds 1fr I want to create a new row. As it currently stands, the content simply overflows the column. One requirement of this layout is that the items in the right menu column are in one row. I achieve this with: .right-menu{...grid-auto-flow:columndense;...} If I remove the grid-auto-flow attribute, the overflow stops. However, the items are now stacked into multiple rows, which is not what I want. I also tried converting .ri

2023-09-05 15:18:28Ask
CSS3