a circus freak has a 3rd leg
» Read More...
a circus freak has a 3rd leg
» Read More...
» Read More...
» Read More...
» Read More...
» Read More...
» Read More...
» Read More...
» Read More...
Many books on the internet that you can get everywhere but here i was composite and give that free, i've get from many reference..
[ENGLISH]
» Read More...
Many books on the internet that you can get everywhere but here i was composite and give that free, i've get from many reference..
[ENGLISH]
» Read More...
Ohm's law states that the current through a conductor between two points is directly proportional to the potential difference across the two points. Introducing the constant of proportionality, the resistance, one arrives at the usual mathematical equation that describes this relationship:

» Read More...
Wheatstone bridge is a measuring instrument invented by Samuel Hunter Christie in 1833 and improved and popularized by Sir Charles Wheatstone in 1843. This is used to measure an unknown electrical resistance by balancing two legs of the bridge, one leg that includes the components known. it works similar to the original potentiometer.
» Read More...
» Read More...
make a login form on visual basic it's so easy, but we can make some creation to make an user id can identifiying on the next form,
follow thats instruction:
1. create new project, choice vb enterprise edition control
2. go to Project, references, include that :
- visual basic for apps
- visual basic runtime object and procedure
- ole automation
- microsoft access 9 object library
- microsoft activex data objects 2.51 library
- microsoft DAO 3.51 objects library
- microsoft data binding collection
3. add 2 form, login form and main form
4. on the login form, add 2 text and 2 command button, the include this code :
Private Sub form_load()
'open connection to db
cn.Open ("Provider= Microsoft.Jet.OLEDB.4.0;Persist security info=False;Data Source=" & App.Path & "\database.mdb" & ";Jet OLEDB:Database;")
End Sub
Private Sub Command1_Click()
'access table user "tbuser", with "if id=text1 anf password=text2", if one of them not correct then login would fail
rs.Open "Select*from tbuser where id='" & Text1.Text & "' AND Password ='" & Text2.Text & "'", cn, 3, 3
If rs.EOF Then
'EOF yaitu end of field or if did'nt find
MsgBox "ID not registered or incorrect password", vbOKOnly + vbExclamation, "Attention !"
Text1.Text = ""
Text2.Text = ""
'clear text1 and text2
rs.Close
'close
Else
'-----------------------------------------------------------------
'use this code to get user login name
With rs
strid_user = !id 'set strid_user same as id login
End With
rs.Close 'close recordset
'============
Unload Me 'close form login
Main.Show 'show form main
End If
End Sub
Private Sub Command2_Click()
cn.Close
Unload Me
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
' Enter
If KeyAscii = 13 Then
'TAB
SendKeys vbTab
End If
End Sub
Private Sub Text2_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
'TAB
SendKeys vbTab
End If
End Sub
Private Sub form_load()6. make a module then include this :
'load eeverything here
'show day
Ahari = Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")
SHari = Ahari(Abs(Weekday(Date) - 1))
'chow info
Label17 = "information of form"
'show user as login
Label10 = strid_user
'show date
Label12 = "" & SHari & ", " & Format(Date, "dd-mm-yyyy")
'call timer to show time
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
Label11 = Format(Time, "hh:mm:ss")
End Sub
Public cn As New ADODB.Connection7. dont forget include database.mdb on link download bottom, and run your project, use p id = a pass = a...
Public rs As New ADODB.Recordset
Public strid_user As String
» Read More...
now.., if you think to print all data on a richtextbox is a hard to do, you wrong just foolow that steps:
1. create new project
2. create new form, richtextbox, and one command1 button then include that code :
Private Sub Command1_Click()
Printer.FontName = "Courier New" 'font type
Printer.FontSize = "9" 'size
Printer.Print RichTextBox1.Text 'print all
'to printer
Printer.EndDoc
End Sub
» Read More...
sometimes we need to create new form without close another or a form cannot be touched before new form closed, follow steps :
1. create new project
2. create form1, command1, command2, command3 on the form, include the code :
Private Sub Command1_Click()3. create form2, and run your project, looks the different
Form2.Show vbModeless, Me
End Sub
Private Sub Command2_Click()
Form2.Show vbModal, Me
End Sub
Private Sub Command3_Click()
Form2.Show
End Sub
» Read More...

Now it has come Proteus 7.8 sp2 is newer and has a complete library, Proteus is a software used to design electronic circuits and can be simulated, the thing that distinguishes and very interesting from proteus 7.8 sp2 with microcontroller simulation source code from another program ex: codevision AVR can be performed, not only that proteus also able to design pcb layout.
please download here, really free
Proteus 7.8 SP2 7.8sp2 10468 x86 2011 + Crack | 104MB
» Read More...
Servo motor is a important part in world technology, but using that is so different with other motor types, every angle of rotation must be controlled by digital signal for example, using microcontroller ( in this section we would use parallax servo motor type standard )
» Read More...
Project output LED basic using Atmega8535 compiler codevisionAVR
Project running LED using Atmega8535 compiler codevisionAVR
Project output LCD basic using Atmega8535 compiler codevisionAVR
Project running Text LCD 2x16 using Atmega8535 compiler codevisionAVR
Project Digital Thermometer using Atmega8535 compiler codevisionAVR
project atmega8535 codevisionAVR input output basic 1.rar
project atmega8535 codevisionAVR input output basic 2.rar
project atmega8535 codevisionAVR dasar motor servo standard1.rar