c# tag

485 questions


1 answers
70 views
0
Display images one by one in the Windows Form folder on PictureBox

Nice to meet you.C#I'm a beginner and I don't know many things, so I'd like to ask you a question.Currently, I am trying to retrieve the images in the folder with C# and display them one by one on Pic...

2 years ago

1 answers
41 views
0
To invoke a DLL written in C++ from C#

Thank you for your help.I'd like to call the DLL that my client gave me from my C# program.The function specification is written in C++ and Due to my lack of knowledge, I am having trouble knowing how...

2 years ago

1 answers
88 views
0
How do I create an API server for a mock to send and receive Json?

I am creating a game with Unity's C#.using the JsonUtility implemented in UnityI would like to test the continuity of Json.I don't know how to build a mock API server.I'm looking around for a way to b...

2 years ago

1 answers
67 views
0
error CS0428: Cannot convert method group `OnClick' to non-delegate type `bool'.Consider using parents to invite the method

I would like to do -=200 from (golds) when I click the button on Onclick.error CS0428: Cannot convert method group OnClick' to non-delegate type pool'.Consider using parents to invite the method.What ...

2 years ago

2 answers
40 views
0
Is it possible to write the accompanying information next to the list with owner draw etc. on the auto-complete list of C#TextBox?

TextBox or ComboBox textBox1.AutoCompleteMode=AutoCompleteMode.SuggestAppend;textBox1.AutoCompleteSource=AutoCompleteSource.CustomSource;Assume that textBox1.AutoCompleteCustomSource contains the name...

2 years ago

4 answers
43 views
0
C#Math.Round with incorrect rounding of decimal places

Math.Round (316.226184874055d, 11);Then 316.22618487405 is returned.Since I specified 11 digits, I was expecting the end to be 406 by moving forward the 12 digits 5, but it was like truncating.Does it...

2 years ago

1 answers
45 views
0
HttpClient DefaultRequestHeaders.Add to Misused header name

https://dev.projectoxford.ai/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f3039523bI have created a process to use the Face API with reference to of this Code samples// Request he...

c#
2 years ago

2 answers
122 views
0
Would it be possible to obtain the total number of pages of PDF files in C#?

I've done a lot of research, but I haven't found any Adobe Reader (Acrobat Reader) type library, and I've checked AcroPDFLib.AcroPDF, but I haven't found any methods or properties.I came up with the i...

2 years ago

2 answers
87 views
0
C# I want to be able to send data to Windows form applications

I created a NodeJS server on my W10 PC, but I would like to send the data from there to a printing application (on the same PC) created by the C# Windows form application. What should I do? My idea is...

2 years ago

1 answers
33 views
0
How do I give enum another name in C#?

With DLLs that I didn't make myself[Flags]enum Flags { Flag0, Flag1, Flag2,}When enum like this is defined, it's hard to use with Flag0 or Flag1, so I'd like to give a meaningful alias like Monday and...

c#
2 years ago
« - 25 - »

© 2024 OneMinuteCode. All rights reserved.