Click here to Skip to main content
16,006,001 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How can i create Folder on server from client Pin
Pradhip12-Jul-02 5:03
Pradhip12-Jul-02 5:03 
Generalcapture audio data while recording Pin
7-Jul-02 22:02
suss7-Jul-02 22:02 
GeneralValidate Property Pages Pin
Ravi_Shankar7-Jul-02 21:23
Ravi_Shankar7-Jul-02 21:23 
GeneralRe: Validate Property Pages Pin
Steven Szelei8-Jul-02 8:04
Steven Szelei8-Jul-02 8:04 
GeneralCheck for Active VPN connection Pin
7-Jul-02 15:09
suss7-Jul-02 15:09 
QuestionDLL Debuging? Pin
MStanbrook7-Jul-02 12:43
MStanbrook7-Jul-02 12:43 
Generalread elements form filename (VBS) Pin
3-Jul-02 2:00
suss3-Jul-02 2:00 
GeneralRe: read elements form filename (VBS) Pin
Steven Szelei3-Jul-02 6:28
Steven Szelei3-Jul-02 6:28 
write a parser that parses on "_"
Dim mystring As String
Dim resultstr(3) As String
Dim nStart As Integer
Dim nEnd As Integer
Dim cnt As Integer

mystring = "hfskh_XXX_YYY_ZZZ.txt"
nStart = InStr(mystring, "_")
Do While (nStart > 0)
nEnd = InStr(nStart + 1, mystring, "_")
If nEnd = 0 Then
nEnd = InStr(nStart, mystring, ".")
End If
resultstr(cnt) = Mid(mystring, nStart + 1, nEnd - nStart - 1)
nStart = InStr(nStart + 1, mystring, "_")
cnt = cnt + 1
Loop
Sleepy | :zzz:
Generalopen pdf files Pin
Andy Chiang3-Jul-02 0:49
Andy Chiang3-Jul-02 0:49 
GeneralRe: open pdf files Pin
Nish Nishant3-Jul-02 2:05
sitebuilderNish Nishant3-Jul-02 2:05 
GeneralRe: open pdf files Pin
Andy Chiang3-Jul-02 3:51
Andy Chiang3-Jul-02 3:51 
GeneralRe: open pdf files Pin
Nish Nishant3-Jul-02 7:53
sitebuilderNish Nishant3-Jul-02 7:53 
GeneralMSHTML Advanced Hosting Interfaces VB.Net Pin
Gene Sivorot2-Jul-02 18:53
Gene Sivorot2-Jul-02 18:53 
GeneralRe: MSHTML Advanced Hosting Interfaces VB.Net Pin
Todd Smith2-Jul-02 18:58
Todd Smith2-Jul-02 18:58 
GeneralRelative file path Pin
Andy Chiang2-Jul-02 0:40
Andy Chiang2-Jul-02 0:40 
GeneralRe: Relative file path Pin
Jerome Conus2-Jul-02 0:56
Jerome Conus2-Jul-02 0:56 
GeneralWindow Messages in VB Pin
Renegade1-Jul-02 23:32
Renegade1-Jul-02 23:32 
GeneralRe: Window Messages in VB Pin
Richard Deeming1-Jul-02 23:56
mveRichard Deeming1-Jul-02 23:56 
GeneralRe: Window Messages in VB Pin
Ravi_Shankar3-Jul-02 19:36
Ravi_Shankar3-Jul-02 19:36 
GeneralFrom Access97 to Access2000 Pin
XAlien1-Jul-02 22:32
XAlien1-Jul-02 22:32 
GeneralRe: From Access97 to Access2000 Pin
2-Jul-02 8:02
suss2-Jul-02 8:02 
GeneralAuto Patch Client VB.NET Apps Pin
Knappen1-Jul-02 7:36
Knappen1-Jul-02 7:36 
GeneralRe: Auto Patch Client VB.NET Apps Pin
Andy Smith1-Jul-02 10:49
Andy Smith1-Jul-02 10:49 
GeneralCustom Control Pin
Lasse Johansen1-Jul-02 6:36
Lasse Johansen1-Jul-02 6:36 
GeneralVB and dll Pin
Mau30-Jun-02 22:13
Mau30-Jun-02 22:13 

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.