It depends on the data you're assigning really. You can't do it in the way you've asked, but depending on the data you could load it in a loop, or possibly...
Thanks! That is what I was looking for! Meanwhile what I did was: A = "A,B,C" B = "X,Y,Z" C = "Q,W,E" (etc) SomeArr = Array(A,B,C) For x = 0 to UBound(SomeArr)...
Doesn't that give you an array of arrays, as opposed to a multi-dimensional array? So in theory the "second dimension" could have all sorts of different...
Not really. A true multi-dimensioned array (such as FORTRAN has) is a specific shape. I.e. if it's 5,4 it will have exactly 20 items (assuming minimum index...
I think it's a bit disingenuous to say "that's not how it was in this language, so it is not so here..." I've noticed that most languages have their own way to...
I wasn't trying to say that as such. The point I was trying to make is that there are "true" multi-dimension arrays (such as FORTRAN's) and there are arrays of...
Hi guys, ... There is a very real difference between "multidimensional arrays" and "arrays of arrays". An array of arrays is a variant array of variants with...
One thing I have found that is good about multi-dimensional arrays is if you are not using a database to look something up. You can use it like a cube: go to...
My main use (in ASP) is as a replacement for RecordSets. These days, I tend to query my database first, then populate an array using GetRows, then disconnect...
Hi: I downloaded the kba zip file from your site and followed the instructions to embed that stuff in my site. But I am receiving an error msg saying "kbAlertz...
Did you try looking at the examples which come with FCKEditor in the _samples/asp folder? (http://wiki.fckeditor.net/Developer%27s_Guide/Integration/ASP) Dan ...
Hello All: I am having a hard time with this, and hoping someone else might have done this. I have in my database, images (thumbnail and fullsized version)...
Use the Persits mail component. Already installed on my many asp hosts. Do a google for persits. I have written a full blown web based email application using...
Hello All: I am storing my images in an Access database as an OLEObject (binary) (please, I know. But I can't afford SQL for my site). For the life of me, I...
... (please, I know. But I can't afford SQL for my site). For the life of me, I cannot find how to get the images to display in a Datalist if they are stored...
My apologies, but I think you are misunderstanding. I am not opening the table manually and attempting to view the image, if that is what you mean. Your...
Hi all, Im back with another probs. Heres the detail: I have made one html page with mouseover img and the page is working fine. The mouseover effect are...
Hi Javed, ... I don't see anything wrong with the code itself, other than some major chunks of it missing (like the head, the doctype, stuff like that). ;) If...
Hi Andy, ... Have you tried a Perl GET of the URL to see if it is returning anything at all? It's possible the image was stored in the table in ASCII or ...
Shawn: Very true. Do you know of a web-host that is reasonably priced that would allow for such a thing? I have a 1GB storage with 15GB bandwidth per month...
Hi Soren, ... You can use it to test the validity of uploaded pictures (in order to ensure that they "really are" image files and not script or exploit code)...
Hello All: I am trying to secure my maintenance portion of my webapp using the web.config in my root. However: for some reason, I am able to type in the URL...
Good Day - I have a memo field which I need to activate links. If a user adds a news posting/article, and places links within the post, I would like to have...