- Upvotes Received
- 5
- Posts with Upvotes
- 3
- Upvoting Members
- 5
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
13 Posted Topics
[B]Module .bas[/B] [CODE]Public path As String Sub Main() Set db = New ADODB.Connection path = App.path & "\Data\yourdb.mdb" db.CursorLocation = adUseClient db.Open "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Data Source=" & path frmODBCLogon.Show End Sub[/CODE] [B]frmODBCLogon (Form)[/B] [CODE]Private Sub CmdOk_Click() Set rs = New ADODB.Recordset Static countx Static CountY CountY = 1 If txtUserName.Text …
Wireless Projects Mobile Ticketing via SMS gateway(using Clickatell) Student Attendance Monitoring System w/ SMS Alert (using GSM modem) SMS Grading System (Globe Labs) Fleet Monitoring via GPS GPRS/GSM (using Huawei Modem) Flood Monitoring with GPRS TEch (using Google Earth API) SMS Marketing Software (Bulk sending- email to SMS) Traffic APrking …
You can use Digital Persona Fprint reader and One touch SDK here's the sample code. [code]Option Explicit Private Sub Close_Click() Unload Me End Sub Private Sub Form_Activate() ' Set properties to DPFPEnrollment object. On Error Resume Next EnrollmentDialog.DPFPEnrollmentControl1.MaxEnrollFingerCount = MainForm.MaxCount If Err.Number <> 0 Then MsgBox "Wrong parameter MaxEnrollFingerCount: " …
[QUOTE=zoraster01;1615455]can you help me to my fingerprint scanner .. do you have idea how will work to vb6 .. i am doing a time attendance.. its better if its a simple program.[/QUOTE] Use Digital Persona FPreader with FREE One Touch SDK Here's the sample FingerPrint Enrollment codes, If you want …
` Dim reader As MySqlDataReader Dim command As MySqlCommand = connection.CreateCommand() command.CommandText = "SELECT * from motorproblem where id= '" & ListView1.SelectedItems(0).Text & "'" reader = command.ExecuteReader() If (reader.HasRows) Then While (reader.Read()) With Me 'fetch image from database Dim imgBytes() As Byte = reader("image") 'image field Dim image As Bitmap …
Hi, You can use AT commands to send and receive SMS. Do you want sample program? BEst Regards, emond
[QUOTE=cloris;1644597]If i may ask, what type of rfid reader and tag would be appropriate for such a project as this Cos i google it and there are so many options i just get a little confused on the one to suit the project.[/QUOTE] [url]http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/316647/1627088#post1627088[/url] Hardware: [url]http://www.acs.com.hk/[/url] [url]http://www.facebook.com/media/set/?set=a.222721127771796.55287.120502167993693&type=1[/url]
Please see may sample: <[CODE] 'byte Variables for storing images Public pBag As PropertyBag Public pByteA() As Byte Private Sub cmdbrowse_Click() Dim fileName As String On Error Resume Next browsedialog.Filter = "Image Files (*.jpg;*.gif;*.bmp)|*.jpg;*.gif;*.bmp" browsedialog.ShowOpen 'common dialog fileName = browsedialog.fileName Image2.Picture = LoadPicture(fileName) End Sub Private Sub cmdsave_Click() If Image2.Picture …
[CODE] Set rs = New ADODB.Recordset If rs.State = 1 Then rs.Close rs.Open "SELECT * FROM yourtable", cn, 3, 2 rs!date_time = DTPicker1.Value rs.Update[/CODE]
[QUOTE=abby_122105;1585676]hi....I wanna know if there are any vb codes that will help me connect RFID to vb 6 if the connector (serial to USB connector), the comm port is 51. I usually read some codes for comm1 and comm2 but I think that ain't help me. Is there any solution …
[url]http://www.facebook.com/photo.php?fbid=183832991660610&set=a.183832834993959.38686.120502167993693&type=1&theater[/url] [url]http://www.sourcecodester.com/tutorials/c/webcam-face-detection-c-using-emgu-cv.html[/url] [url]http://www.sourcecodester.com/tutorials/c/camera-capture-7-lines-code-using-emgu-cv.html[/url]
[QUOTE=ruchi18;1457966]HEllo I want to make a sms application C# and .net but i don't have any knowlegdge about sms messaging by computer application i search for this on google so much and the only idea i got it is that i have to buy a sam gateway but what the …
The End.