Search This Blog

Latest Plate Number with barcode in the Philippines

LTO show the latest design of Plate Number in the Philippines.
August 2013 announced the new confirmed Plate Number.

    

The current Plate Number having 3 letters and 3 numbers for Vehicles will replaced to  3 letters and 4 numbers with barcode and for current motorcycles having 2 letters and 4 numbers change to 2 letters and 5 numbers with barcode.

The current license plate design - three letters and three numbers for motor vehicles and two letters and four numbers for motorcycles - has been in use since 1981.




How to add Advertisement to your Blogger / Blogspot

 Advertisements like:

  • Google Adsense
  • Bidvertiser
  • Chitika
  • AdHitz
  • Infolinks
  • Kontera

Follow this step

1) Copy the code provided from Publisher websites.
2) In blogger, Go to Layout section and select Add a Gadget
3) Now select HTML/Javascript and paste the adcode which you copied.








1) Copy the code provided.
2) In blogger, Go to Layout section and select Add a Gadget
3) Now select HTML/Javascript and paste the adcode which you copied.
4) Drag the gadget to the place you want it and save - See more at: http://talk.thewebhostingdir.com/questions-answers/25639-how-put-bidvertiser-adcode-blogspot-site.html#sthash.TmRqsqn0.dpuf
1) Copy the code provided.
2) In blogger, Go to Layout section and select Add a Gadget
3) Now select HTML/Javascript and paste the adcode which you copied.
4) Drag the gadget to the place you want it and save - See more at: http://talk.thewebhostingdir.com/questions-answers/25639-how-put-bidvertiser-adcode-blogspot-site.html#sthash.TmRqsqn0.dpuf
1) Copy the code provided.
2) In blogger, Go to Layout section and select Add a Gadget
3) Now select HTML/Javascript and paste the adcode which you copied.
4) Drag the gadget to the place you want it and save - See more at: http://talk.thewebhostingdir.com/questions-answers/25639-how-put-bidvertiser-adcode-blogspot-site.html#sthash.TmRqsqn0.dpuf

Check Date (DatePicker) If Already Exists in Database

This tutorials is to identify if the Date in DatePicker is already exists in Database.


Follow this step...

Add ODBC in your Components


Select "Microsoft ADO Data Control 6.0 (OLEDB)"


Drag "Adodbc1" in to you VB Form


Open your Command Button and paste this code.


Public dbcon As New ADODB.Connection
Public rst As New ADODB.Recordset


Private Sub Command1_Click()

 Set dbcon = New ADODB.Connection
    dbcon.Open "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=myDBRecords"


 If rst.State = 1 Then rst.Close
   
      strsql = "select * from tblrecords where mydate='" & DTPicker1.Value & "'"
      rst.Open strsql, dbcon, adOpenKeyset, adLockOptimistic
        While Not rst.EOF
            If DTPicker1.Value = rst!mydate Then
                MsgBox "The Date Already Exists!", , "Success"
                Exit Sub
            Else
                MsgBox "The Date not Found!", , "Error"
            End If
           
            rst.MoveNext
        Wend
        rst.Close


End Sub








Now run your VB Project (click F5) on your keyboard
Done!!!.