Click here to Skip to main content
15,891,951 members

Videos


Page 1 of 8
1 2 3 4 5 6 7 8


.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
1. Google Takeout Image Downloader
This utility downloads Google takeout images from the downloaded JSON files.
PrafullaVedante Updated: 13 Jan 2020
Rating: 4.20/5 ( (6 votes))
.

()
» »
Updated:
Rating: ()
2. How many times is the while loop executed, in the worst case complexity?
Two nested loops each with max iterations n. The total time complexity = n x n = n^2
PrafullaVedante Updated: 12 Jul 2019
Rating: ( (No votes))
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
3. The same form opens again instead of hiding and showing a new form
I can see that the form is being reinitialized when relaunched. Hence it is a completely different instance of the form. You should check the callstack when form appears second time. You will get the idea, from which function it is being launched.
Programming Languages » Visual Basic »
PrafullaVedante Updated: 2 Apr 2018
Rating: ( (No votes))
4. How can I restart PHP code?
You should use "while" loop. Please search about while loop in php on internet.
PrafullaVedante Updated: 28 Mar 2018
Rating: ( (No votes))
.

()
» »
Updated:
Rating: ()
5. I am trying to save two files but one of them doesn't save(android programming)
The exception is telling you that .traineddata cannot be found, eventhough, according to your directory, it is there. The reason why it does not find the file is because you have /tessdata/ in your data path. You should NOT have /tessdata/ in your file path. The Tesseract OCR library itself...
Hosted Services » Storage »
PrafullaVedante Updated: 12 Mar 2018
Rating: ( (No votes))
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
6. What is an equivalent of HANDLE to be used in the IDL files.
Hi, I want to pass a HANDLE to the function. What the data types should be using. In the C++, I can use uintptr_t which will work for both win32 and x64. What data type should be used in the IDL? What I have tried: Tried using unsigned int data type in the IDL. It does work for win32. ...
PrafullaVedante Updated: 20 Jan 2018
Rating: ( (No votes))
7. Can I pass windows SDK path to msbuild ? (want to build solution without installing windows SDK)
Hi, I am migrating our VS 2008 solution to the VS 2017. Currently we have msvc90 include/src files in our repository. We just sync it to the build server.Hence we did not need to have a separate VS or WinSDK installation on the build server. We want to keep the same behavior after migration. ...
PrafullaVedante Updated: 5 Jan 2018
Rating: ( (No votes))
8. Windows SDK does not have fusion.h
Hi, On my development machine i have VS 2017 installed. Here i can see the fusion.h file at the path Quote: c:\Program Files (x86)\Windows Kits\8.1\Include\um\fusion.h . Whereas when i tried to install VS 2017 build tools on a new fresh machine, I did not see the fusion.h on this path. I...
PrafullaVedante Updated: 3 Jan 2018
Rating: 2.00/5 ( (1 vote))
9. Is it okay to instantiate an object in the heap because of the following reason?
You can use the initialization list. You don't need to create it on the heap. // source SuperEntity::SuperEntity(int value):entity_(value) { } The declaration of the SuperEntity will become, // header class SuperEntity { private: Entity entity_; public: SuperEntity(int value); };
PrafullaVedante Updated: 1 Jan 2018
Rating: ( (No votes))
10. Is this code have problem? My teacher said have a funny problem in this(help)
I can see multiple problems here. 1)The problem here is the static variable length. It will be initialized to zero only once in the program lifetime. If you call the function one more time it will give you wrong result. 2) You are passing an uninitialized str array to the function. It can...
PrafullaVedante Updated: 30 Dec 2017
Rating: ( (No votes))
11. I cant understand the logic how the output came
You are "break"ing after printing your values. That's the reason it is being printed even when I=2 & j=2.
PrafullaVedante Updated: 30 Dec 2017
Rating: ( (No votes))

Page 1 of 8
1 2 3 4 5 6 7 8