Click here to Skip to main content
16,012,352 members
Home / Discussions / Web Development
   

Web Development

 
GeneralDisplaying ActiveX in Netscape Pin
Philip Patrick24-Jun-02 10:27
professionalPhilip Patrick24-Jun-02 10:27 
GeneralRe: Displaying ActiveX in Netscape Pin
Jeremy Falcon27-Jun-02 5:14
professionalJeremy Falcon27-Jun-02 5:14 
GeneralRe: Displaying ActiveX in Netscape Pin
Philip Patrick27-Jun-02 6:15
professionalPhilip Patrick27-Jun-02 6:15 
GeneralRe: Displaying ActiveX in Netscape Pin
Jeremy Falcon27-Jun-02 7:37
professionalJeremy Falcon27-Jun-02 7:37 
QuestionHow to set focus? Pin
Marc Clifton24-Jun-02 7:53
mvaMarc Clifton24-Jun-02 7:53 
AnswerRe: How to set focus? Pin
Philip Patrick24-Jun-02 10:26
professionalPhilip Patrick24-Jun-02 10:26 
QuestionString conversions in asp code??? Pin
CherezZaboro24-Jun-02 7:01
CherezZaboro24-Jun-02 7:01 
AnswerRe: String conversions in asp code??? Pin
Chris Rickard24-Jun-02 7:07
Chris Rickard24-Jun-02 7:07 
Function RegExpTest(patrn, strng)
  Dim regEx, Match, Matches      ' Create variable.
  Set regEx = New RegExp         ' Create a regular expression.
  regEx.Pattern = patrn         ' Set pattern.
  regEx.IgnoreCase = True         ' Set case insensitivity.
  regEx.Global = True         ' Set global applicability.
  Set Matches = regEx.Execute(strng)   ' Execute search.
  For Each Match in Matches      ' Iterate Matches collection.
    RetStr = RetStr & "Match found at position "
    RetStr = RetStr & Match.FirstIndex & ". Match Value is '"
    RetStr = RetStr & Match.Value & "'." & vbCRLF
  Next
  RegExpTest = RetStr
End Function
MsgBox(RegExpTest("is.", "IS1 is2 IS3 is4"))

* From MSDN Library
GeneralRe: String conversions in asp code??? Pin
CherezZaboro25-Jun-02 6:33
CherezZaboro25-Jun-02 6:33 
GeneralRe: String conversions in asp code??? Pin
Chris Rickard25-Jun-02 6:48
Chris Rickard25-Jun-02 6:48 
Generala question aboub IIS! Pin
24-Jun-02 3:01
suss24-Jun-02 3:01 
GeneralRe: a question aboub IIS! Pin
Chris Rickard24-Jun-02 5:26
Chris Rickard24-Jun-02 5:26 
GeneralTreeView control Pin
23-Jun-02 18:15
suss23-Jun-02 18:15 
Questionhttp://dev.idleplay.net/dev/index.asp?? Pin
zhoujun22-Jun-02 23:20
zhoujun22-Jun-02 23:20 
Generaldatabinding Pin
22-Jun-02 12:26
suss22-Jun-02 12:26 
GeneralRe: databinding Pin
22-Jun-02 12:28
suss22-Jun-02 12:28 
Generaldates and combo boxes Pin
Shotgun22-Jun-02 4:00
Shotgun22-Jun-02 4:00 
GeneralRe: dates and combo boxes Pin
Chris Rickard25-Jun-02 15:13
Chris Rickard25-Jun-02 15:13 
GeneralLooking for ASP contact form Pin
21-Jun-02 19:39
suss21-Jun-02 19:39 
GeneralModifying indexsearch.asp Pin
21-Jun-02 19:37
suss21-Jun-02 19:37 
QuestionCSS? Pin
Matt Newman21-Jun-02 11:38
Matt Newman21-Jun-02 11:38 
AnswerRe: CSS? Pin
Christopher Lord21-Jun-02 20:05
Christopher Lord21-Jun-02 20:05 
GeneralRe: CSS? Pin
Matt Newman22-Jun-02 4:46
Matt Newman22-Jun-02 4:46 
GeneralRe: CSS? Pin
Christopher Lord23-Jun-02 7:47
Christopher Lord23-Jun-02 7:47 
GeneralRe: CSS? Pin
Matt Newman23-Jun-02 16:55
Matt Newman23-Jun-02 16:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.