Hello,
Perhaps all you programmers of VBWorld can help me with this. :)
I need to know all the Keywords aviable in VB, Java and PHP.
Example VB:
- Dim, Const, Integer, ext..
Its for a project i am working on. thank you all..
Printable View
Hello,
Perhaps all you programmers of VBWorld can help me with this. :)
I need to know all the Keywords aviable in VB, Java and PHP.
Example VB:
- Dim, Const, Integer, ext..
Its for a project i am working on. thank you all..
Hit F2
yeah i know the object browser in VB and InterDev. But i only need to know those keywords like String and Integer ext.. not all the objects. :eek:
I'm sure there are a few that are missing from the list, but this will get you started.
Thank you MarkT for the list :D Now i have to search for Java and PHP keywords and i am real happy :D
BlackWords = "Abs |Add |AddItem |AppActivate |Array |Asc |Atn |Beep |Begin |BeginProperty |ChDir |ChDrive |Choose |Chr |Clear |Collection |Command |Cos |CreateObject |CurDir |DateAdd |DateDiff |DatePart |DateSerial |DateValue |Day |DDB |DeleteSetting |Dir |DoEvents |EndProperty |Environ |EOF |Err |Exp |FileAttr |FileCopy |FileDateTime |FileLen |Fix |Format |FV |GetAllSettings |GetAttr |GetObject |GetSetting |Hex |Hide |Hour |InputBox |InStr |Int |IPmt |IRR |IsArray |IsDate |IsEmpty |IsError |IsMissing |IsNull |IsNumeric |IsObject |Item |Kill |LCase |Left |Len |Load |Loc |LOF |Log |LTrim |Me |Mid |Minute |MIRR |MkDir |Month |Now |NPer |NPV |Oct |Pmt |PPmt |PV |QBColor |Raise |Randomize |Rate |Remove |RemoveItem |Reset |RGB |Right |RmDir |Rnd |RTrim |SaveSetting |Second |SendKeys |SetAttr |Sgn |Shell |Sin |SLN |Space |Sqr |Str |StrComp |StrConv |Switch |SYD |Tan |Text |Time |Time |Timer |TimeSerial |TimeValue |Trim |TypeName |UCase |Unload |Val |VarType |WeekDay |Width |Year "
BlueWord = "Const |Else |ElseIf |End If |If |Alias |And |As |Base |Binary |Boolean |Byte |ByVal |Call |CVar |CVErr |Decimal |Declare |DefBool |DefByte |DefCur |DefDate |DefDbl |DefDec |DefInt |DefLng |DefObj |DefSng |DefStr |DefVar |Dim |Do |Double |Each |Else |ElseIf |End |Enum |Eqv |Erase |Error |Exit |Explicit |False |For |Function |Get |Global |GoSub |GoTo |If |Imp |In |Input |Integer |Is |LBound |Let |Lib |Like |Line |Lock |Long |Loop |LSet |Name |New |Next |Not |Object |On |Open |Option |Or |Output |Print |Private |Property |Public |Put |Random |Read |ReDim |Resume |Return |RSet |Seek |Select |Set |Single |Spc |Static |String |Stop |Sub |Tab |Then |True |Type |UBound |Unlock |Variant |Wend |While |With |Xor |Nothing |To "
Java has the following reserved words
abstract boolean break byte byvalue case cast catch char class const continue
default do double else extends false final finally float for future generic
goto if implements import inner instanceof int interface long native new null
operator outer package private protected public rest return short static super switch
synchronized this throw throws transient true try var void volatile while
Best regards
And the following is the reserved words in PHP (taken from http://www.php.net/manual/en/reserved.php)
and E_PARSE old_function $argv E_ERROR or as E_WARNING parent $argc eval PHP_OS
break exit() $PHP_SELF case extends PHP_VERSION cfunction FALSE print()
class for require() continue foreach require_once() declare function return
default $HTTP_COOKIE_VARS static do $HTTP_GET_VARS switch die() $HTTP_POST_VARS
stdClass echo() $HTTP_POST_FILES $this else $HTTP_ENV_VARS TRUE elseif
$HTTP_SERVER_VARS var empty() if xor enddeclare include() virtual() endfor
include_once() while endforeach global __FILE__ endif list() __LINE__ endswitch
new __sleep endwhile not __wakeup E_ALL NULL
Best regards
Thank you all for your help. I realy appreciated. :) :) :)