Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: siris
  • Order by date
  1. siris

    Expanding the Textarea

    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...
  2. siris

    Adding existing user list

    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
  3. siris

    File System Object

    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 = &quot;File Exists&quot; Else flag = &quot;File does...
  4. siris

    Image as submit button

    Hi, How can I use an Image as a submit button. Onclick of that it should take me to the respective form. But I don't have any ideas. Any help??
  5. siris

    File System Object - last modified

    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??
  6. siris

    File System Object - last modified

    I'm using the following code to find out whether a file exists or not Set objFSO = Server.CreateObject(&quot;Scripting.FileSystemObject&quot;) If objFSO.FileExists(someFile) Then response.write(&quot;File Exists&quot;) End If But after that I want to know when was it last modified. But is...
  7. siris

    &lt;input type=file&gt;

    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
  8. siris

    How to place an image over an image

    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=&quot;images/x.gif&quot;><img src=&quot;images/y.gif&quot;> then both the images...
  9. siris

    SQL for Pivot Table like output

    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...
  10. siris

    Method 'Cells' of Object _Global failed

    that is what I get when I execute the following line to generate a graph through VBA. ActiveChart.SetSourceData Source:=Sheets(&quot;2001 Data&quot;).Range(Cells(1, 1), Cells(currRow, 1)), PlotBy:=xlColumns where currRow is the variable which stores the last row number, because I'm entering...

Part and Inventory Search

Back
Top