Taillieu.Info

More Than a Hobby..

openDNS or 8.8.8.8

or Google Public DNS IP Address : 8.8.8.8 and 8.8.4.4


Where will you be setting up OpenDNS?

Mac OS X

  1. Go to System Preferences.
  2. Click on Network.
  3. Select the first connection in your list and click Advanced.
  4. Select the DNS tab and add 208.67.222.222 and 208.67.220.220 to the list of DNS servers.
  5. Click OK

Windows 7

  1. Click the Start Orb, then select Control Panel.
  2. Click on Network and Sharing Center.
  3. Click on your primary connection or Local Area Connection under Active Networks.
  4. Click the Properties button.
    Windows 7 may prompt you for permission to make network setting changes.
  5. Highlight 'Internet Protocol Version 4' and click Properties.
  6. Click the radio button 'Use the following DNS server addresses:' and type 208.67.222.222 and 208.67.220.220 in the Preferred DNS server and Alternate DNS server fields.
  7. Click OK button, then the Close button, then Close again. Finally, close the Network and Sharing Center window.
    At this point, we highly suggest that you flush your DNS resolver cache and web browser caches to ensure that your new configuration settings take effect.

Windows XP

  1. Select Control Panel from the Start menu.
  2. Click Network Connections from the Control Panel choices.
  3. Choose your connection from the Network Connections window.
    If you have more than one, choose your default/current connection.
  4. Click Properties button.
  5. Select Internet Protocol (TCP/IP) and click Properties.
  6. Click the radio button Use the following DNS server addresses and type 208.67.222.222 and 208.67.220.220 in the Preferred DNS server and Alternate DNS server fields.
  7. Click OK

Windows Vista

  1. Click the Start Orb, then select Control Panel.
  2. Click on View network status and tasks.
  3. Click on View status.
  4. Click the Properties button.
  5. Vista may ask for your permission to make changes. If so, click the Continue button.
  6. Select Internet Protocol Version 4 (TCP/IPv4), then click the Properties button.
  7. Click the radio button "Use the following DNS server addresses:" and type in OpenDNS addresses, 208.67.222.222 and 208.67.220.220, in the Preferred DNS server and Alternate DNS server fields.
  8. Click the OK button, then the Close button, and the Close button again. Close the Network and Sharing Center window.

Generic Router

  1. Open the preferences for your router.

    Often, the preferences are set in your web browser, via a URL with numbers (example: http://192.168.0.1). You may need a password.

    If you're like us, and you set the router password long ago and cannot remember it now, you can often reset the password to the manufacturer default by pressing a button on the router itself.

    Or preferences may be set via specific application for your router, which you installed on your computer when you added the router.

  2. Find the DNS server settings.
    Scan for the letters DNS next to a field which allows two or three sets of numbers, each broken into four groups of one to three numbers.
  3. Put in the OpenDNS server addresses, 208.67.222.222 and 208.67.220.220, as your DNS server settings and save/apply.

Linksys Router

  1. Visit the router's IP address in a new browser window.
    http://192.168.1.1 is the default Linksys router IP address.
  2. Enter the Network password.
    The "Enter Network Password" window will appear. Skip user name and type the router's password (admin is the default password, if you haven't changed it) and click the OK button.
  3. Type in OpenDNS addresses, 208.67.222.222, 208.67.220.220, in Static DNS 1 and Static DNS 2 fields.
  4. Click Save Settings button.

Netgear Router

  1. Type the router's setup URL (http://www.routerlogin.nethttp://192.168.0.1or http://192.168.1.1) into a web browser address bar.
    http://192.168.1.1 is the default Netgear router IP address.
  2. Enter the password.
  3. Type in OpenDNS addresses, 208.67.222.222 and 208.67.220.220, in Primary DNS and Secondary DNS fields.
  4. Click Apply button.
  5. Wait for the settings to be updated.

D-Link Router

  1. Visit the router's IP address (http://192.168.0.1) in a new browser window.
    If you are attempting to configure a D-Link router, take note of your computer's Default Gateway IP address. The Default Gateway is the IP address of the D-Link router. By default, it should be 192.168.0.1. Most D-Link devices use the 192.168.0.X range.
  2. Enter the router password.
    Note: if you have not changed the original settings, the default username is admin and the password is blank (nothing).
  3. Click on the Manual Internet Connection Setup button at the bottom.
  4. Enter the OpenDNS addresses, 208.67.222.222 and 208.67.220.220, in Primary DNS Server and Secondary DNS Server fields.
  5. Click Save Settings button at the top.

BE EID_Wrapper VBA 2015

Option Explicit
Option Compare Database

' https://github.com/jdt/EID.Wrapper
' EID_Wrapper

'***** User defined type
'Public Type EID_Type
' cardnumber As String 'eIDKaartnummer
' name As String 'Naam
' firstname As String 'Voornaam
' middlenames As String 'Voornaam2
' placeofbirth As String 'Geboorteplaats
' dateofbirth As String 'Geboortedatum
' gender As String 'Geslacht
' nationality As String 'Nationaliteit
' nationalnumber As String 'RijksregisterNummer
' streetandnumber As String 'Adres
' zip As String 'Postcode
' municipality As String 'Woonplaats
' photo As String 'Foto
'End Type

'---------------------------------------------------------------------------------------
' Function : AddReference_EID_Wrapper()
' Return : No
' Author : Francis Taillieu
' Date : 08/10/2015
' Purpose : Check if EID.Wrapper was registered if not do as such
'---------------------------------------------------------------------------------------

Sub AddReference_EID_Wrapper()

Dim chkRef As Variant
Dim BoolExists As Boolean

For Each chkRef In Application.VBE.ActiveVBProject.References
If chkRef.name = "EID_Wrapper" Then 'eID_Wrapper01.AddReference_EID_Wrapper
BoolExists = True
GoTo CleanUp
End If
Next

CleanUp:
If BoolExists = False Then

Application.VBE.ActiveVBProject.References.AddFromFile "EID.Wrapper.tlb" '"C:\Taillieu.Info\GitHub\EID.Wrapper\Source\EID.Wrapper\bin\x86\Debug\EID.Wrapper.tlb"
Call AddMessage("AddReference_EID_Wrapper", CInt(Nz(TempVars!tmpEmployeeID, 0)), "AddReference_EID_Wrapper - EID.Wrapper.dll")
MsgBox "EID_Wrapper - Reference Added Successfully"

End If

' Set vbProj = Nothing
' Set VBAEditor = Nothing
End Sub


'---------------------------------------------------------------------------------------
' Function : CheckValidCardReader()
' Return : Boolean
' Author : Francis Taillieu
' Date : 08/10/2015
' Purpose : Checking for the presence of a valid card in the cardreader
'---------------------------------------------------------------------------------------

Function CheckValidCardReader()
On Error GoTo MyErrorHandler_Err

Dim Wrapper As New EID_Wrapper.Wrapper
Dim data As EID_Wrapper.CardData
Dim bCheckValidCardReader As Boolean

DoCmd.Hourglass True ' turn on Hourglass

bCheckValidCardReader = False
Set data = Wrapper.GetCardData()

If data.FirstCard Is Nothing Then
bCheckValidCardReader = False
If (TempVars!tmpDebugMode) Then
MsgBox ("No valid eID card found!")
End If
Else
bCheckValidCardReader = True
If (TempVars!tmpDebugMode) Then
MsgBox ("Valid eID card found!")
End If
End If

MyErrorHandler_Exit:
DoCmd.Hourglass False ' turn on Hourglass
CheckValidCardReader = bCheckValidCardReader
Exit Function

MyErrorHandler_Err:
Call Utilities_ErrorAlert("CheckValidCardReader", Err)
Resume MyErrorHandler_Exit

End Function

'---------------------------------------------------------------------------------------
' Function : eID_ReadeID()
' Return : String NationalNumber
' Author : Francis Taillieu
' Date : 08/10/2015
' Purpose : Reading NationalNumber
'---------------------------------------------------------------------------------------

Function eID_ReadNationalNumber()
On Error GoTo MyErrorHandler_Err

Dim Wrapper As New EID_Wrapper.Wrapper
Dim data As EID_Wrapper.CardData

Dim sNationalNumber As String

DoCmd.Hourglass True ' turn on Hourglass

Set data = Wrapper.GetCardData()


If Not data.FirstCard Is Nothing Then

If (TempVars!tmpDebugMode) Then
MsgBox ("Valid eID card found!")
End If

sNationalNumber = data.FirstCard.nationalnumber

End If

MyErrorHandler_Exit:
DoCmd.Hourglass False ' turn on Hourglass
eID_ReadNationalNumber = sNationalNumber
Exit Function

MyErrorHandler_Err:
Call Utilities_ErrorAlert("eID_ReadName", Err)
Resume MyErrorHandler_Exit

End Function

'---------------------------------------------------------------------------------------
' Function : eID_PassportReader()
' Procedure : PassportReaderFromXml
' Author : Francis Taillieu
' Date : 10/1/2015
' Purpose : Read eID info out xml-file and import data into Form.
'---------------------------------------------------------------------------------------

Function eID_PassportReader() As EID_Type

On Error GoTo errMyErrorHandler:
Dim strPath As String
Dim eID As EID_Type
Dim Wrapper As New EID_Wrapper.Wrapper
Dim data As EID_Wrapper.CardData

DoCmd.Hourglass True ' turn on Hourglass

strPath = CurrentProject.path + "\eid-viewer"

Set data = Wrapper.GetCardData()

If Not data.FirstCard Is Nothing Then

If (TempVars!tmpDebugMode) Then
MsgBox ("Valid eID card found!")
End If

eID.nationalnumber = data.FirstCard.nationalnumber
eID.dateofbirth = data.FirstCard.BirthDate
eID.gender = data.FirstCard.gender
eID.name = data.FirstCard.Surname
eID.firstname = data.FirstCard.FirstNames
eID.middlenames = ""
eID.nationality = data.FirstCard.nationality
eID.placeofbirth = data.FirstCard.BirthPlace
eID.photo = data.FirstCard.PhotoData

eID.cardnumber = data.FirstCard.cardnumber

eID.streetandnumber = data.FirstCard.streetandnumber
eID.zip = data.FirstCard.ZipCode
eID.municipality = data.FirstCard.municipality
End If
eID_PassportReader = eID

DoCmd.Hourglass False ' turn on Hourglass

Exit Function

errMyErrorHandler:
MsgBox Err.Description, _
vbExclamation + vbOKCancel, _
"Error: " & CStr(Err.Number)
Err.Clear
Resume Next
End Function

Wanscam HW0028

http://www.wanscam.com/xiazai/###

http://www.bleepingcomputer.com/forums/t/488281/help-configuring-wanscam-wireless-ip-camera-x3/page-17


Hello all!!!!

NOTE: this update must be do it with carefull!!!! the simple error could turn you camera useless!! If your camera works fine, don't do the update, unless the factory sends a communicate. Do it by your own risk! If you have question please feel free to ask or to contact Wanscam Support :ph34r:

I'd asked to the support about the firmware and UI versions of each, and the answer was:

The firmware of JW0008 is the latest.
 
HW0022: https://www.dropbox.com/s/o6af8cramg35d8p/www.bin         UI  (first install)
                https://www.dropbox.com/s/8b4cjzpto4pivx0/67.4.64.26.bin          firmware (second install)
 
HW0028: https://www.dropbox.com/s/c0ne4zqidi21u6o/www.bin                  UI (first install)
https://www.dropbox.com/s/8b4cjzpto4pivx0/67.4.64.26.bin       firmware (second install)
               
 
When you update the camera,please note below two things.
1.The camera cant be used wirelessly.
2.Dont shut down the power
After you finished updating ,the camera can be used wirelessly again

Please, if you are going to update your camera:

1) you must follow the instructions above.

2) do not open other camera in the same browser at the moment

3) if your camera runs fine... it's not necessary to do the update, "Warm prompt from Shenzhen Wanscam Co.,Ltd:update with risk, use cautiously!"

Tnks!!!

eIDToegangsControle

ConCierge

3D Printing