Protect your application using online Sql database – Visual Basic 2008 (Working 100%)
online database
Protect your application from unauthorized use with unique serial number. You can use one serial number only once on specified computer and after that only that computer can start your application. If you want to start it on another computer then just add another serial directly to your database and activate it with it. ONE COMPUTER – ONE SERIAL NUMBER!
This entry was posted by admin on February 7, 2011 at 11:04 am, and is filed under Software. Follow any responses to this post through RSS 2.0.You can leave a response or trackback from your own site.
-
-
#6 written by ivanjakovl 1 year ago
-
#7 written by ivanjakovl 1 year ago
ok, i’ve just found out that you need to upgrade your account on 000webhost to use mysql database from your vb application. It works fine with php, but “db4free” now works ok so you should not have any problems with creating your database there for free. If you’ll still have problem with that site then you just have to google for similar host with free mysql .
i have created an application on db4free in 2 minutes just to test my database and it lists informations just fine.
Good luck!
-
#11 written by jkurtzman1 1 year ago
Could you please e-mail me the code at: jasonkurtzman@yahoo.com
Please….. -
#12 written by ivanjakovl 1 year ago
@jkurtzman1
You have pretty much all you need on this vid. There’s like 10- 20 lines of code and if you are stuck at some point, you’ll have to send me the line of code you are stuck at. I’m not going to write the whole code again and explaine it to you just so you could copy and paste it into your application. Even if i would wanted to do that it would not work, so send me the code you have done so far and i will help you.
-
#14 written by ivanjakovl 1 year ago
@jkurtzman1 Hai ! “logiranje” is the name of the table in your database. It depence on how did you named yours.
“baze4″ is source table of dataset. So when you call your table in dataset you call it like this: ds1.Tables(“baze4″).Rows.Count. If that is the only table in your dataset then you can call it like this also : ds1.Tables(0).Rows.Count , and if you have two tables and you want to call second one then you can call it like this ds1.Tables(1).Rows.Count and so on…
-
#16 written by ivanjakovl 1 year ago
@jkurtzman1 First question : Well it’s the source table you named with this line of code : myadapter3.Fill(ds1, “baze4″), in this case it’s “baze4″. It’s just a name of your table in dataset (ds1).
Second question : Like the error says, you have to assign property access to the property or use its value. Try like this : Dim a As Integer = ds1.Tables(0).Rows.Count – 1
MsgBox(a)P.S. I hope you have done all the other codes like it was presented in vid and that you have mysql database.
-
#18 written by ivanjakovl 1 year ago
@jkurtzman1 Hai. I don’t have “BC” nor “boc” variable in my code. Don’t know how did you declared your variables before that line so i will advice to check that once more. Also be sure that you have included these references :
Imports System.Management
Imports System.Management.InstrumentationThat goes on top of your entire code before “Public Class Form” line.
- Comment Feed for this Post
- Laptop or computer Hardware Online – Is the Internet Beat The Large Street stores?
- Aarkstore Enterprise OEM Pc Diagnostics Software Market place Opportunities Techniques and Forecasts from 2008 2014
- Laptop or computer parts and equipment aid to protect a healthful workplace
- Fundamental Manual to Computer & Application Sections
- How to procure Electronic Components On-line
- Basic portion of computer hardware
- Computer Elements And Their Makes Uses
- Purchase Computer Accessories Online in India
- Find pc parts in the UK online
- Making use of On-line Personal computer Parts to Build Your New Rig
Could you please post the codes somewhere else? Tq