c# tag

485 questions


2 answers
48 views
0
Is there a solution if the SetAttribute of GetElementById does not work?

https://www.paypal.com/myaccount/transfer/buyI just type characters in the ID element text box.webBrowser1.Document.GetElementById(recipient).SetAttribute(value, test@mail);With the above code, you ca...

2 years ago

1 answers
80 views
0
About ASP.NET Web Custom Controls

When using the ASP.NET Web Custom Control, in the ASPX file:We have added a description.'<%@Register tagprefix=tagprefix name namespace=namespace name assembly=ASSEMBLY name%>' Is it possible to...

2 years ago

2 answers
83 views
0
temporarily disable a button

There are many buttons on the screen, but if you use other buttons during one process, I thought it might cause freezing and bugs.Therefore, I would like to make it impossible to touch other buttons d...

2 years ago

2 answers
77 views
0
To use Reactive Extension to find out how many buttons in the button list have been pressed

using UniRx (Reactive Extension for Unity)I'm trying to create a screen that looks like a card list.If it's an individual button, you can write a pair of actions with the button, so If there is a clic...

2 years ago

2 answers
138 views
0
I want to call the dl function from c# with a structure containing a double pointer variable as an argument.

It's just as the title says.I would like to reuse the dll that I created in the past and call it using a structure containing variables of double pointers (the real thing is a char array), but the fol...

2 years ago

2 answers
143 views
0
Understanding the c# Arguments

Chapter 6-Create the MicrophoneManager class|Microsoft DocsI am referring to the above document, but the following code I have a question about private void dictationRecognizer_DictionResult (string t...

2 years ago

1 answers
54 views
0
I would like to include the contents of the variables set in a separate script for the red part of the image (error and implementation questions).

What I want to do is like applying https://www.sejuku.net/blog/55029 and We are trying to implement the MyExplanation variable content of an Item script set in a separate script by calling the SetExpl...

2 years ago

3 answers
96 views
0
I want to use regular expressions to exclude surrogates and special classification characters.

I'm creating an app with UnityC# and To match the input characters on Android with the input characters on iPhone, I'm trying to replace using C#'s Regax, but it doesn't work.I have written the follow...


2 answers
50 views
0
C# "The name 'pictureBox1' does not exist in the current context."

using System;using System.Collections.General;using System.Linq;using System.Threading.Tasks;using System.Windows.Forms;using System.IO;using System.Net;using System.Drawing;namespace WindowsFormsAppl...

c#
2 years ago

3 answers
37 views
0
If I use operator++, it will increase by one, but is it possible to increase by 0.1?

As the title suggests.public float speed=1.0f;in void update to transform.position+=transform.forward*speed;It's always moving forward, so for example, if (Input.GetKey(KeyCode.UpArrow)) { speed++; }...

c#
2 years ago
« - 19 - »

© 2024 OneMinuteCode. All rights reserved.