VBS FAQ: VBScript Functions and their usage syntax
Grok Headline matches for VBS FAQ: VBScript Functions and their usage syntax
VBScript FAQ: How do I add a literal
quote to my VBScript code?
VBScript FAQ: How do I add a literal
quote to my VBScript code?
05/31/2004 02:34 AMVBScript FAQ: How do I retrieve the IP
Address using VBScript?
VBScript FAQ: How do I retrieve the IP
Address using VBScript?
07/01/2004 03:20 PMForgotten Functions: Lesser Used PHP
Functions
Forgotten Functions: Lesser Used PHP
Functions
08/12/2002 07:44 AMVBScript Error with FTM
VBScript Error with FTM
09/02/2004 02:43 AMRun 20clicln silent using vbscript
Run 20clicln silent using vbscript
08/14/2004 08:14 AMSetting the pagefile via VBScript
Setting the pagefile via VBScript
02/15/2004 09:28 AMUsing VBScript to Modify All Objects in
the OU
Using VBScript to Modify All Objects in
the OU
07/10/2004 10:35 AMVBScript to remove SMS 2.0 Client
VBScript to remove SMS 2.0 Client
05/04/2004 03:11 PMWhy VBScript Logical Operators Aren't
Why VBScript Logical Operators Aren't
07/15/2004 04:59 PMIf you've ever lost a monitor to VBScript (from frustrated
punching, mine has dents), Eric Lippert provides some solace in that
there's at least a reason why it behaves that way.
In JScript you can do something like this:
if (blah != null && blah.frob == 123)
and it works just fine. But in VBScript
If (Not Blah Is Nothing) And (Blah.Frob = 123) Then
Then if Blah actually is Nothing, this still crashes and dies, whereas
JScript does not. What the heck is going on here?
What's going on is that VBScript is not logical. VBScript is bitwise.
All the so-called logical operators work on numbers, not on Boolean
values! Not, And, Or, XOr, Eqv and Imp all convert their arguments to
four-byte integers, do the logical operation on each pair of bits in
the integers, and return the result. If True is -1 and False is 0 then
everything works out, because -1 has all its bits turned on and 0 has
all its bits turned off. But if other numbers get in there, all bets
are off.
I didn't say it was a good reason. I just said it was a reason.
Click here to comment on this entry
Delegating Control of an OU to a User
Using VBScript
Delegating Control of an OU to a User
Using VBScript
05/24/2004 12:11 AMSend messages automatically through
VBScript
Send messages automatically through
VBScript
01/23/2004 01:21 AMVBScript Tip: Using 'On Error Resume
Next'
VBScript Tip: Using 'On Error Resume
Next'
08/19/2004 10:46 PMUsing the Windows Common Dialog Control
with VBScript
Using the Windows Common Dialog Control
with VBScript
06/14/2004 06:15 PMVBScript function for automating client
repairs
VBScript function for automating client
repairs
08/29/2004 09:15 AMPublishing a Shared Folder in Active
Directory with VBScript
Publishing a Shared Folder in Active
Directory with VBScript
04/18/2004 08:22 AMVBScript to modify Windows startup
timeout (Boot.ini)
VBScript to modify Windows startup
timeout (Boot.ini)
07/31/2004 03:18 PMdate_sun* PHP Functions
date_sun* PHP Functions
02/01/2005 09:08 PMPHP:
date_sunrise - Manual: I don't know how closely you all are
looking at the PHP 5 function libraries, but I stumbled on this
function today (and its sibling).
date_sunset() returns the sunset time for a given day (specified as
a timestamp) and location. The latitude, longitude and zenith
parameters default to the date.default_latitude,
date.default_longitude and date.sunset_zenith configuration options,
respectively.
The latitude defaults to North. So, if you want to specify a South
value, you must pass a negative value. The same note applies to
longitude, which defaults to East.
I love PHP, but I really wonder about things like this. We've talked
before about some problems with the language (especially compared
to Perl), like inconsistent function naming, and — as this
function perhaps demonstrates — having too many functions in the
core.
Isn't this something that PEAR
could have handled? Does this need to be built into the core? What
percentage of PHP programmers have a need for this?
PHP-Functions-Mail-0.03
PHP-Functions-Mail-0.03
04/11/2005 08:45 AMPHP-Functions-Mail-0.04
PHP-Functions-Mail-0.04
04/11/2005 08:45 AMASP Functions and Subprocedures
ASP Functions and Subprocedures
07/07/2002 09:36 PMStickysauce Jul 7 2002 8:43PM ET
PHP Posix_getpw* Functions
PHP Posix_getpw* Functions
05/24/2002 11:27 AMMySQL Gets Functions in Java
MySQL Gets Functions in Java
12/19/2003 03:39 PMJava Coward writes "Eric Herman and MySQL's Brian "Krow" Aker have
released code to allow the DBMS MySQL to run Java natively inside of
the database. The code ...
Advanced JavaScript functions
Advanced JavaScript functions
01/05/2003 03:04 AMCNET Jan 5 2003 1:02AM ET
Tap into advanced JavaScript functions
Tap into advanced JavaScript functions
01/03/2003 02:50 AMCNET Jan 3 2003 1:02AM ET
Using the Built-in Functions of IE to
Block Pop-up Ads
Using the Built-in Functions of IE to
Block Pop-up Ads
08/09/2004 06:48 PMIadstools.dll Functions for Scripting
Iadstools.dll Functions for Scripting
07/08/2004 07:16 PMPHP Functions Essential Reference
PHP Functions Essential Reference
06/09/2002 06:15 PMFor those that are looking for good PHP documentation that explains
more about the purpose than just the usage of PHP functions and
extensions as it is available in the official PHP manual, this book
can certainly be a good acquisition.
IBM DB2 XML functions overflows
(#NISR05012005H)
IBM DB2 XML functions overflows
(#NISR05012005H)
01/05/2005 06:39 PMNGSSoftware Insight Security Research (Jan 05 2005)
Add More System Functions to Your
PocketPC
Add More System Functions to Your
PocketPC
02/19/2004 06:10 PMSix MySQL/PHP functions to streamline
development
Six MySQL/PHP functions to streamline
development
07/08/2002 10:50 PMCNET Jul 8 2002 10:13PM ET
YellowPages.ca offers new search
functions
YellowPages.ca offers new search
functions
05/27/2004 11:08 PMglobetechnology.com May 28 2004 2:53AM GMT
Java DBMS functions for MySQL 0.2
Java DBMS functions for MySQL 0.2
12/22/2003 05:21 PMProvides Java DBMS functions for MySQL
The poptasticDB database access
functions for PHP 1.0 v0.4
The poptasticDB database access
functions for PHP 1.0 v0.4
12/21/2003 03:47 AMA set of simple, cross-platform database libraries for PHP
C++ Tricks of the Trade: Friend
Functions
C++ Tricks of the Trade: Friend
Functions
06/26/2002 01:02 PMFriend classes in C++ give us access to non-member functions or other
classes. In this article Kais shows us exactly how and why we should
use friend classes and functions. 5 Free Bonuses!!! "Attention All
Web Developers" Now includes 5 FREE eBooks to help you promote your
ConMan website! "This is one of the best pieces of software that we
have ever used. It's quick, streamlined, and allowed us to have a
fully working site packed with articles in just 3 hours" Ever wanted
to run your own content driven web site? Well now you can with ConMan:
the fast, flexible and secure web site + admin suite. Try it for
free!Click here. Get notified when we post new content: New Forum
Threads 1. strange hyperlinkcolumn error 2. MySQL, MS-SQL2000, DB2 &
Oracle Benchmark 3. PHP to EXE file 4. ASP Across multiple pages... 5.
BuildaGate Suite Technology - MySQL database builder 6. ADO Help 7.
pass a form data from web page to SQL 8. "Creating a content feed" -
question 9. Mytch About The Newsletter Popup! 10. Article Discussion:
An Introduction To RMI With Java More Forum Threads... Other Recent
Articles PHP Date + Time Primer // by Ryan Schwiebert - 19th Jun 2002
Java DBMS functions for MySQL 0.1
Java DBMS functions for MySQL 0.1
12/19/2003 11:39 AMProvides Java DBMS functions for MySQL
SAP adds more RFID functions to SCM
tools
SAP adds more RFID functions to SCM
tools
04/19/2004 09:39 AMSAP AG intends to give businesses a real-time view of what's happening
to their inventory with an upgrade to its supply chain management
(SCM) tools, it announced Monday.
Word: Learn How to Use the Proofreading
Functions
Word: Learn How to Use the Proofreading
Functions
02/10/2004 02:47 AMTech-Recipes Feb 10 2004 7:11AM GMT
Take advantage of advanced JavaScript
functions
Take advantage of advanced JavaScript
functions
01/04/2003 01:58 AMCNET Jan 4 2003 1:02AM ET
Bourne shell script functions
Bourne shell script functions
08/06/2004 12:31 AMTech-Recipes Aug 6 2004 4:48AM GMT
Grok Description matches for VBS FAQ: VBScript Functions and their usage syntax
GrokA matches for VBS FAQ: VBScript Functions and their usage syntax
VBS FAQ: VBScript Functions and their usage syntax