I have a text area like this
<textarea rows=4 name=txtAction cols='67%'></textarea>
but instead of the percentage I want to expand the textarea element to certain pixels. I know that my screen width is 1024. Now if I want to expand the text area to 550 pixels, how can I do that. Any help would...
In Sql Server 7.0 I have a certain number of users who can use my database A. Now, If I create a database B, how can I retain all the users from database A. In short, how can I let the database A users access database B.
Is there some import users kinda thing???
Thanks
In my intranet site I let the user enter the path of a file for documentation. But before saving it to the database I use the following statement to check whether the file really exists or not.
If objFSO.FileExists(scPath1) Then
flag = "File Exists"
Else
flag = "File does...
So aaron, how can I set the file object. Can I say
someFile.dateLastModified because someFile is just a variable. Or how can I change that to a real file??
I'm using the following code to find out whether a file exists or not
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(someFile) Then
response.write("File Exists")
End If
But after that I want to know when was it last modified. But is...
if I use the above syntax it gives me a text box and a button with Browse as it's text. How can I change it to whatever I like. I mean if I want '...' as the text what should I do?? Thx
I have a set of images which needs to be put one over the other vertically. Like I have to squares of equal size which I want to put on top of the first. I don't want to place it on it's side.
If I use <img src="images/x.gif"><img src="images/y.gif"> then both the images...
I want to display certain set of records in a pivot table format. For that I'm giving the statement as :
SELECT criticality, subsystem, COUNT(*) AS Tot
FROM tblBSSCSRProblem WHERE csrstatus NOT LIKE 'C%'
GROUP BY subsystem, criticality
which gives the output as
criticality subsystem Tot...
that is what I get when I execute the following line to generate a graph through VBA.
ActiveChart.SetSourceData Source:=Sheets("2001 Data").Range(Cells(1, 1), Cells(currRow, 1)), PlotBy:=xlColumns
where currRow is the variable which stores the last row number, because I'm entering...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.