Click here to Skip to main content
16,020,261 members

Comments by Voley (Top 17 by date)

Voley 5-Mar-15 9:27am View    
I read it :) I really did...


but i had problems...
I made an recursive method


Public Sub Getdirectory(ByVal path As String)

For Each Dir As String In Directory.GetDirectories(path)
Dim podFolder As String

cmbDirectories.Items.Add(Dir)
subFolder = Dir.ToString

Getdirectory(podFolder)
Next

End Sub

Thankyou for your help
Voley 5-Mar-15 8:40am View    
Can u send me some code PLEASE?
Voley 5-Mar-15 8:21am View    
I tried that, but that doesnt get the subfolders of the subfolders.. I want them all :(
Voley 9-Feb-15 6:18am View    
Hey, Thnx for the link :)

I tried it, and I am gettin an error in the line: crystalReport.ExportToHttpResponse(formatType, Response, True, "Crystal") which says "Missing parameter values".
Voley 27-Nov-14 10:17am View    
I have an additional problem with the function:

function checkInp() {
var input = document.getElementsByTagName("input");
for (var i =0; i < input.length; i++) {
if (input[i].type == "text") {
if (isNaN(input[i].value)) {
alert("Not Number");
return false;
}
}
}
}

this fucntion works finde till I have to input negative numbers and decimal numbers wich I separet them with comma (,) ex: -12.3 or -3,4 ... How can I exclude , and - to recognize them as caracters?
Improve solution Permalink Posted 1 sec ago