Linked Questions

0 votes
0 answers
66 views

i have an issue that i just cant get working - I have to use VBSCRIPT for this. I have a data that is being extracted from a log file but unfortunatly its not sorted post the extract (Im just parsing ...
Rory's user avatar
  • 21
5 votes
2 answers
18k views

Here's my code: Sub isdofsodjisf48023jroi23f984444444jiodfiosj12348023jroi23f98() Dim colFiles As New Collection RecursiveDir colFiles, "C:\Documents and Settings\Alex Gordon\Desktop\testing\...
Alex Gordon's user avatar
  • 61.5k
2 votes
2 answers
3k views

I am a C student in VBScript coding and need a little help. My code executes a split command as follows: outputArray = split(Description," ") With the individual words from Description now in an ...
user1883779's user avatar
0 votes
1 answer
6k views

I think my code successfully creates the multi dimensional array because I get the right amount when I count it with UBound(DataArray). But I get null value when I try to display one of the data as ...
Efe's user avatar
  • 954
1 vote
2 answers
791 views

I'd like to be able to query an array (multi and single dimensional ) with something like SQL. Is there a way to do this? It just seems extraordinarily wasteful to step through it one record at a ...
Keng's user avatar
  • 53.3k
0 votes
1 answer
702 views

There is a java table in my application which has 1 column & 5 rows. Contents of rows are as below. These contents are arranged in descending order 172-18-zfs MKTLAB NFSVOL ...
onkar's user avatar
  • 249
-2 votes
1 answer
931 views

I just created vbscript code to find the greatest numbers from 10 input numbers. It works only for numbers between 1 to 10. Why? <html> <head> <title>Enter 10 numbers to find the ...
hasan taha's user avatar
1 vote
1 answer
227 views

Suppose I want to have a list of item as below arr["john"] = 40 arr["mark"] = 12 arr["clark"] = 53 arr["sam"] = 23 Now I want to sort them depending on the values as below arr["clark"] = 53 arr["...
user avatar
0 votes
0 answers
148 views

I want to sort the data by the SuppCodeArry in a loop. This is my code: <% SuppCodeArry="SA^SA^SB^SA^SC^SB^SA^" ITEMArry="A^B^C^D^E^F^G^" str_SuppCode = Split(SuppCodeArry,"^") ...
Yumi's user avatar
  • 31
1 vote
0 answers
106 views

I have a 2d array and would like to sort each row based on the final column. I have created a mergesort algorithm in VBScript (which is what I am going to use) that does the sorting for a single ...
user avatar