Right use of the .dll file? - dll

I need to use the Corel Photo-Paint so I already installed it in my PC.
When I wanted to run the program I get the error:
This programme can't start because api-ms-win-crt-runtime-l1-1-0.dll is missing . Try to reinstall this.
So, I download the .dll file and then I copied in the path:
C:\Windows\System32
Now I get this:
The entry point procedure ucrtbase.terminate not found in the dynamic link library api-ms-win-crt-runtime-l1-1-0.dll
How can I fix this problem and finally use the program?
*This is not about programming but I don't know how to use this forum correctly.

Do you have the ucrtbase.dll on your system?
if you don't, you can download it here:
http://www.opendll.com/index.php?file-download=ucrtbase.dll&arch=64bit&version=10.0.10137.0&dsc=Microsoft?-C-Runtime-Library
Then extract it in **c:\windows\SysWOW64** folder
Try again

Related

How do I download a file in a custom directory?

I googled it and no help. I am making a program here people register and then they can download some indie games i am creating. But i am having problems with the download function. When i go to download the game / program i am getting a error saying i need a file extension here is the code i am trying
My.Computer.Network.DownloadFile("https://www.dropbox.com/sh/yioya7ek0dq1r60/AABzT-98B4DWPdgv1edYC5SMa?dl=0", "C:\ProgramData\GamingcenterApp\games")
I need it to be like this because it is downloading a games folder that the gaming center will know it is installed so it can open the app.
Thanks GamingBlock
Let me explain what to do. DownloadFile downloads a file to your PC, and not a folder. Here is the fixed code:
My.Computer.Network.DownloadFile("C:\ProgramData\GamingcenterApp\games", "READ_ME.txt")
Folders are purposely not supposed to be downloaded by the DownloadFile call. I haven't tested your code but it could generate an exception.
Argument 1 is the file you want to download from the internet, and Arguement 2 is the file name. Not the directory you want it to download to. Also, You can't set the text in the .txt file by code. And of course this will generate an exception because I tested your code.
If this does not help, Simply comment on this answer and I will try to improve it.

Trying to get Stenohide to work

Just downloaded the stenohide zip file, and copied the given .dll files onto windows\system32
However when I try to run stenohide.exe, it does not work at all.
Could you please help, thanks.
Error message- I put the exe on my desktop and tried to run it, and error message said:
The program can't start because cygwin1.dll is missing from your computer. Try reinstalling...
I have cygwin1 in my system32 directory.

Include and Call PDF File in vb.net (after Deployement)

Glad to see this site, Thanks guys for being active. :)
I have a problem in Visual Studio 2010/VB.Net
I have windows form in Visual Basic, I deployed the software(form) to one installer
Now I want to open My PDF file( i-e: Specific) with Button_Click_Event
I know that:
Process.Start("MyPDF.pdf")
But I dont know if user install my software in his PC so may be he install the software in C D or other directory, and also I dont know How to include PDF file in my project :)
Please suggest for me, I am searching this every where but failed so pl help me
Use Add->Existing Item on your Project. Then add the PDF File to your Project.
Afterwards you have to set the Properties of the newly added file to the following:
Now the file will be added to your "Output" Directory after you build your Project.
Now use your Process.Start("MyPDF.pdf") call. It will open up, as it resides in the same directory.
This is rather easy:
Simply include the file by dragging it to your project folder and in its options, tell it to copy to the build directory.
Thereafter, find the path through the my.application methods.
Build a correct path from that and launch it via process.start

sqlite3_analyzer not working in Ubuntu missing shared object file

I am learning more about sqlite3 and am trying to use the sqlite3_analyzer to view a bunch of data about my data. The problem is when I download the sqlite-analyzer-linux-x86-3071502.zip from https://www.sqlite.org/download.html and unzip this package and THEN try to run the program I receive THIS error: ./sqlite3_analyzer: error while loading shared libraries: libtcl8.6.so: cannot open shared object file: No such file or directory
Does anyone know where to get this libtcl8.6.so file? Does anyone know how to install this after obtaining it?
Install the package tcl8.6, or download the analyzer source code and recompile it with the Tcl version in your distribution.
I ended up downloading an older version of sqlite3_analyzer from a third party website (do a search for sqlite-analyzer-linux-x86) that worked without the dependency. I won't post links as I can't ensure that they'll be available and serve the same file as I downloaded.
If you decide to do that, be sure to check the file for viruses on http://virustotal.com! Can't trust these Chinese file hostings ;)

Inno Setup: uninstall process can't remove MSIMG32.DLL from {app} folder whatever I do

What kind of magic has this 'MSIMG32.DLL'? Why can't inno setup delete it?
Edit: this file was just added to {app} using [File] section, at the end of uninstall I get the message "Some elements could not be removed. These can be removed manually." what is referred to MSIMG32.DLL exactly.
Why should you have this file in your installation set ? This is a Windows image dll ? Remove it from the [Files] section.
It is perhaps likely that that DLL is in use by some running application. There is an addon for InnoSetup that deals with this situation. There is not enough information in the question from which other ideas may be produced.
There is a possibility that, on your system, that file either is, or has been infected by a virus, as suggested by ThreatExpert. You should exclude that possibility by running a system scan with your anti-virus program.