studio tag

324 questions


4 answers
95 views
0
Causes of Line Segment Search Errors

def LinearSearch(N,a):n = len(N)for i in range(n): if N[i] == a: return True else: return FalseN = [13, 16, 23, 45, 54, 58, 76, 91]a = 76an=LinearSearch(N,a)print(ans)The result is false for some re...

2 years ago

1 answers
67 views
0
User Macros Not Available for Visual Studio 2017 Library Paths

I am using Visual Studio 2017.The user macro is specified as follows:Therefore, to pass the library of the project, you can set the user macro to I'm using it, but I can't build it.The user macro is u...

2 years ago

1 answers
86 views
0
Add a Dependent Library to the Developer Command Prompt for VS 2017

There is a project I would like to build directly with the developer command prompt for VS 2017.The dependent library is not found and a link error.I have the library itself, but how can I link it to ...

2 years ago

1 answers
169 views
0
ccxt installation failure on anaconda

https://note.mu/zephel01/n/n985c2fe0b6c6I am trying to install ccxt on windows by referring to this site.We are stuck with the following error.The environment is anaconda3 in Windows 8.1.TriedThe lru-...


2 answers
104 views
0
Reduced compilation time

We are currently maintaining a relatively large internal C++ project, but with the use of boost and template metaprogramming, we are experiencing a situation where compilation time is increased and op...

2 years ago

1 answers
89 views
0
Android Studio error: Unable to locate adb with SDK

I'd like to install it on Android Studio, but when I press the Run button, the message Unable to locate adb with SDK appears.I'm not sure, so please tell me how to solve it


1 answers
104 views
0
If you want to add items in ComboBox to the list.

List<Member>Members=new List<Member>(); private void BtnRegisterAcct_Click (object sender, RoutedEventArgse) { string cellphone=txtMobileNr.Text; string firstName = txtFirstName.Text; ...

2 years ago

1 answers
82 views
0
Android Studio complements drawable and dimens, no longer available for viewing

It's just as the title says.Usually, if you define layout_background, etc. in XML, the value will be supplemented, but it will not be sudden, and even if you type it on your own, you will get an error...


1 answers
130 views
0
ArgumentException occurs in pushSharp.

We are developing it with Visual Studio 2013 C#.I am using PushSharp to create a push server for IOS.AppleSettings=new PushSharp.Apple.ApplePushChannelSettings(appleCert, xxxxxxxx;ArgumentException ha...


1 answers
85 views
0
Createsamples/traincascade/haartaraining stops when creating OpenCV image detection classifiers

I would like to use OpenCV 2.4.10 to create an XML file by creating positive and negative samples at a command prompt. When I make a positive sample, I also create a vec file. The capacity is 0, but i...

2 years ago
« - 10 - »

© 2024 OneMinuteCode. All rights reserved.