VisualBasic.net Adding Mysql database check [closed] - database

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Hello good people of stack overflow i am in dire need of some and little bit of help so i been looking at this program done in vb.net here link http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=8869&lngWId=10
it is made to stop people from opening any app or webpage with any of words in here a pic
http://imgur.com/kuTFKls
i mark some stuff out so people wont get fended here put with programs name you can guess what they were ok so what i am asking is how would i make this work with mysql data base could you help me i got database up on server but how do i make program check the database for any word that are in TextBox3.Text.Contains so it just check the database so i can get rid of this list as i remaking what programs for
p.s if my spelling wrong i am so sorry edit as you wish or just tell me thanks people of stack

Load the .sln into Visual Studio
Search the code for these words: File and Stream
Replace the file I/O with MySQL functionality. There are many places on the Internet that will tell you how to do this. For example: Connecting-to-MySQL-databases-using-VB-NET

Related

Visual basic how to check a string is in the english dictionary [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I'm writing a Hangman game on visual basic as a school project. I want the program to be able pick any word from the English dictionary for the player to guess. I was wondering if there was a simpler way than having a massive list of words for the program to pick from?
thanks
No there isn't a simpler way; either you keep a list yourself, or you use a web service that can provide what you want.
If you want your own list, you can get a text file with 479K words from GitHub here: https://github.com/dwyl/english-words
An example of a web service that can provide a random word is Wordnik https://www.wordnik.com/ who provide an API.
Good luck.

Exchange Rate API [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am looking to create an application for exchange rate of foreign currencies and need backend for the same. While searching for the same, i came across:
http://rate-exchange.appspot.com
http://rate-exchange.appspot.com/currency?from=USD&to=EUR&q=1 //working demo
I also find the github source for this GAE project at:
https://github.com/hippasus/ExchangeRates
Now the question I have how should I proceed. Shall I use this already deployed project named http://rate-exchange.appspot.com or deploy my own version. If I should deploy my own version then what will be steps.
Thanks in advance
Generally try to use existing code with permission and visibly give credit to avoid plagiarism. Developers who repeat work already done by others learn from the experience but risk wasting time unnecessarily. You learn from others by studying their code anyway.
You may after some experience with the other project think of ways to improve it. Liaise on Github with the original author about constructive collaboration. Sharing code is what makes free and open source software great.

Porting old C project into C++/CX [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I'm rather new to C++/CX, and right now have an old C project which I need to port into C++/CX.
The output are flushed into text-file or standard output, but it's not that important right now since I can just take them into the Message Dialog there.
My question is that, do you have any tips for porting this project?
I just tried to copy a C file into CPP but failed to compile.
I mean, do I need to wrap the old functions into some kind of Class structure now?
Thanks in advance!
For the differences between C and C++, a starting point is David Tribble's "C99 vs C++98". Without any more details (original C environment, current C++ environment, some details on exact error messages) it is next to impossible to answer the question.

Database Postgres - Cannot load the database [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am new here. I am fighting with one problem like whole day and my friend told me, to check this site and make an topic about my problem. So I am here, tired of tryin and searching for resultion.
About the problem:
I want to start database on my postgres server by phpPgAdmin, but suddenly thanks to php(?) I am not allowed to.
The things looks like, that after loggin to phppgadmin without any problems, I am creating a database. Creation always goes fine, but the problem arrive just after that. I am not allowed to see what is inside and I am not even allowed to clic on the database, because the database cannot be loaded. It pops up some crazy error.
The error looks like that:
"Error Loading database.php?subject=database&server=127.0.0.1%3A5432%3Aallow&action=tree&database=postgres (500: Internal Server Error)"
http://speedy.sh/Skp8j/postgres1.jpg
http://postimage.org/image/hc56f1qnb/full/
Seriously I am tired of it already, I really hope so, that you guys can help me.
with regards Dariss
Heres the log file from apache. Tried to get an log file from php, but as far as I see, it do not generate any.
------nvm already :)

Licensing c program [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
How would i licence my c command line program, e.g limited functionality without a serial number?
Depends what licensing means ...
Write the license text into the source code resp. show the license text when installing or starting the program.
If you want prevent users from copying the program, things get complicated, you might need some hardware dongle.
Or just make it GPL and give the source code away ...
Include a EULA (End User License Agreement) in your program which users will have to accept while installing/using your application. You can get lots of sample EULAs in Internet. Replace the Names appropriately. But remember, you are gonna do things at your own risk. Read the EULA well, modify it to suit your needs.

Resources