Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 7 years ago.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Improve this question
Good day Users.
I am working on application which maintains list of other applications (like Excel, Word, Adobe Reader, etc.). For each app, i would like to have it's logo to use in Listview while displaying whole list. For sure, it will not be possible for all apps (especially for unpopular ones.) but for well known ones.
Logos can be found in google and then manually inserted one by one, but the problem is that, number of apps in the list is more than ten thousand.
Using Google Image Search API is not good solution, since it only allows 100 request in a day.
If anyone know how to do this, or has any suggestion, please let me know ^^
thanks
If you know the path to the exe, you can get it's icon using the static method of Icon class ExtractAssociatedIcon.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
is it even possible to make a bot in C# (windows forms), that would work like when Supreme release new items, the bot would instantly buy them? If anyone has any ideas please share them, thanks!
The answer is - yes, it surely is possible.
First of all you have to think about logging in on the site
Afterwards you have to have a link on where these drops appear and pass it to the code
Finally you need to just implement a automatic checkout system.
It will require a bit of work and time to do it.
There are already some projects made for this kind of websites.
You can check this link: https://github.com/jg-fisher/supreme-bot
It has an automatic checkout (providing personal details in the checkout form).
Also some bigger project of chrome extension - https://github.com/Paulowarren31/Supreme-Bot
I advise you to get suggestions from there and build your own program.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I would like to know if there is a text editor or a file uploader/downloader (like pastebin or mega) but for C# program
I explain myself: I am making a program for my college, I would like that when everyone opens my program, that everyone is the same text file, that it can be modified and then saved and when the others load it, there will be the modifications on it
I don't know if it's very clear, but I'd like not to go through servers because I don't understand anything about them
Will there be a solution?
Thank you.
That's what Git does... You will need to manage versions of the same file, you will also need to merge file versions and resolve version conflicts.
You can either find a C# wrapper for git or go through the git white paper and do something similar.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have a project that must be able to :
Collect information about medical plants(texts only the pictures are hosted elsewhere).
Once done, preview those information and manipulate them as needed(For example, show only the names and description of plants from category A and having a life span of 2 years).
Information about the project :
I'm using : C#
The project will result in a desktop software that will run on my
personal computer only.
The number of plants is 70.000.
Every plant needs one "A4" page of information(name,description,...).
What is the best Database choice in my case and why ?
(Is using an XML file as a DataBase a bad idea ?)
Thank you.
Use SqlExpress LocalDb, thats more than enough for your needs, yet still easily portable.
P.S. This kind of questions are not welcome here, you should find a
Forum where you can discuss about pros and cons. If you have specific
questions about the implementation you are more than welcome to ask
here.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I recently developed a win form application in C#. Now application is complete and working fine as expected. Now i want to implement licensing feature in it i.e either user buy license key or simply run trial version that expire after some time. Since i have very few time left in Deployment so i prefer some already existing library that did the job for me. More preferable some open source one but paid version also works. In case if there is no such existing solution then please guide me how to implement that.
Take a look at Eziriz's products. I use both of them, one for great obfuscation and the other for licensing. While the obfuscator itself has good support for licensing, IntelliLock is maybe something you'd want to look at for a robust solution.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I have a collection of mp3, wma's etc that may or may not have the correct song information.
Is there a service or an API that I can use in .NET to find the correct song title / artist for each file?
I know of Last.fm Fingerprint API. That should help you.
You could call their client app from within a C# app to automate the whole process of going through your media library and storing the returned results. You can even change your mp3 metadata on the fly.
More links to the stack:
25 Music APIs
Windows Media Player (WMP) is pretty good at downloading album art and titles and such when you rip a CD, but it's far from perfect. If such an API existed in any location, let alone the highly public and well-used .NET platform, WMP would have a better track record.
Therefore it is logical to conclude that the answer is quite simply, "No."
I doubt such an API exists in any form, but if it might, it would likely be a web service.
freedb.org has what you need. I used it some years ago and it worked out great.
Download the file 'freedb howto v1.07' to get the details of how to implement this into your program.