C# DataBase choice to save information about 70.000 element [closed] - c#

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.

Related

C# bot, that can instantly buy released item [closed]

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.

Creates a text on a site and retrieves it? c# [closed]

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.

Find logo for desktop applications using c# [closed]

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.

I am looking for a reporting solution for my project [closed]

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 8 years ago.
Improve this question
My sql database includes only one to many relationships as follows:
Parent --> Child 1 --> Child 2 --> Child 3
Every one parent data may have 0 or more child data.
I tried reports designer 3.0 but it did not listed data that have no "child 3" data for the above case. And I could not find any resources to solve this.
I do not need any effects or smt. What I want is a very simple reporting tool which is able to query relational sql databases, list them like this:
Parent.Name[1]
Child1.Name[1]
Child2.Name[1]
Child3.Name[1] Child3.valuea[1] Child3.valueb[1]
Child3.Name[2] Child3.valuea[2] Child3.valueb[2]
Child3.Name[3] Child3.valuea[3] Child3.valueb[3]
Child2.Name[2]
.
.
.
etc
and export to excel file. Free applications are prefered but the ones with the trial verions are also good for me.
THX
If it is only for one report, it doesn't make sense to use any reporting tools.
I don't know how the project is implemented, but try looking at the the following options since they are professional and can be used in enterprise systems.
Core java with JSF libraries (Such as PrimeFaces)
JSP
I-32 form solutions (easiest)

C#: Implementing Licencing in Winforms [closed]

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.

Categories