-
Recent Posts
- Designing todo app backend using redis and mongodb
- Multicast Firewall Load Sharing on Checkpoint ClusterXL Firewalls with Cisco Devices
- Configure 3-Leg Perimeter (DMZ) using Forefront TMG 2010
- Build Your Own Cheap iSCSI SAN for ESX Server
- VMware (finally) admits that its costs are higher than Microsoft’s
Archives
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- May 2009
- April 2009
- March 2009
- January 2009
- December 2008
- November 2008
- September 2008
- August 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- May 2007
- April 2007
- March 2007
Categories
- Bildbearbeitung
- CheckPoint
- Cisco
- CISCO / NAT / ROUTE-MAP
- Cisco NBAR
- Cisco Private VLAN
- Cisco WebVPN
- Code Snippets
- Configuration Change Tracking
- DMVPN
- Juniper
- Juniper SRX
- Lightroom
- Microsoft Exchange Server
- MySQL
- Network Monitoring Software
- Networking
- NHRP
- nodejs
- Photography
- ppt
- Software
- SQL Server 2005
- SQL Server 2008
- Texte
- The Cable Guy
- Travel
- Uncategorized
- VBasic
- XML / XSL
- Zitate
Meta
Top Posts & Pages
- Why You Should Use XMLHttpRequest Asynchronously
- vbscript - base32/base36 (base62) encoding
- ACL for HSRP, BGP, OSPF, VRRP, GLBP (Cisco IOS)
- SQLite COM Wrappers / Visual Basic DLLs
- Checkpoint - Internal ports explained
- Juniper SRX - Route-failover in a typical DUAL ISP scenario
- Checkpoint - delete all ARP entries on SPLAT
- route-server.he.net
- CheckPoint: Android / iPhone / Windows - L2TP VPN ...
- Checkpoint - count matches of rule hits
Top Clicks
Category Archives: VBasic
ipAddrInt, ipAddrStr in VBscript / VBA / VB6
Function ipAddrInt(ip) Dim a, tmp a = Split(ip, “.”, 4) tmp = a(0) * 16777216# + a(1) * 65536 + a(2) * 256 + a(3) * 1 ipAddrInt = tmp End Function Function ipAddrStr(i) Dim s, tmp s = Right(String(8, … Continue reading
[MXXMLWriter.indent] – use MXXMLWriter and SAXXMLReader to generate a well formated xml file
indent Property [MXXMLWriter]. Sets whether to indent output. When set to True, this property indents output for “pretty printing” to reflect the nesting structure of the document. use MXXMLWriter and SAXXMLReader to generate a well formated xml file Sub indent_xml() … Continue reading
Get flickr photos with Classic ASP & Flickr API
Get flickr photos with Classic ASP & Flickr API. flickr.photosets.getPhotos, to get list photos of a photosets since i store all those screenshots in a photosets flickr.photos.getInfo, to get the detail photo information List of functions: flickrGetUrlPhotosets, setup the “flickr.photosets.getPhotos” … Continue reading
Posted in VBasic
Leave a comment
AJAX, XML, XSLT (and some ASP) tricks: Generate HTML form data in VBscript
Function URLEncoded(V) ‘ private Dim CC,I,Enc Enc = “” For I = 1 To Len(V) CC = AscW(Mid(V,I,1)) If (CC >= 48 And CC < 58) Or (CC >= 64 And CC < 90) Or (CC >= 97 And CC … Continue reading
Posted in Code Snippets, VBasic
Leave a comment
VBscript/ASP Classic Date Format Unix Timestamp
VBscript/ASP Classic Date Format Unix Timestamp.
Posted in Code Snippets, VBasic
Leave a comment
EscapeURL() – VBasic wrapper for encode URL API function
Function EscapeURL(ByVal URL As String) As String – API CALL VBASIC VBASIC API call to encode url Private Declare PtrSafe Function UrlEscape Lib “Shlwapi.dll” Alias “UrlEscapeA” ( _ ByVal pszURL As String, ByVal pszEscaped As String, ByRef pcchEscaped As Long, … Continue reading
Posted in Code Snippets, VBasic
Tagged API, EscapeURL, UrlEscape, VB Classic, vb6, VBA, vbasic
2 Comments