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 Wanet Telecoms Ltd 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: charlotte49er
  • Content: Threads
  • Order by date
  1. charlotte49er

    textfields appear differently in IE

    I have a form with 10 textfields in it. When loaded in IE some of them appear flat with a white background and the others are 3d text boxes with background shading. The tags are the same between the textfields and it does not appear this way in Firefox. Can anyone shed some light on why this...
  2. charlotte49er

    print table design description

    I would like to be able to take the design view of a table and either print it out, save it to a report, save it as some other format. Is there a fairly easy to way to do this? Thanks.
  3. charlotte49er

    search folder for files using wildcards

    Has anyone run across a way of searching a folder for files using a wildcard? I have a directory with several files with the same base name but different extensions. What I would like to be able to do is create an array of the files with the same base name without looping through all of the...
  4. charlotte49er

    how to append a field

    I need to append a field to a dbase file using ado. I'm attempting to accomplish this with the code below but the field is not added and I don't receive any errors. Would someone offer some help/suggestions? Thanks. Set oRS = Server.CreateObject( "ADODB.Recordset" ) ors.Fields.Append...
  5. charlotte49er

    opening a recordset & deleting a file

    I'm using ASP & ADO to create a dBase file. When I am finished, I close the recordset and connection objects and set them to Nothing. However, if I then go into Windows Explorer and try to delete the new file I can't. After a period of time I can delete. Why the delay? I can foresee that...
  6. charlotte49er

    where do sql server components reside

    Please help me understand where SQL server can best be configured. Our sys admin guy has said that we are getting a database server along with a SAN. Will the "database server" run only the SQL server software while the actual database resides on the SAN? Is the database usually on the same...
  7. charlotte49er

    joining 2 txt files

    I'm trying to join 2 txt files using ado. I've seen a couple of obscure examples but I can't seem to get them to work. Can someone please provide some suggestions or correct my code below? Thanks in advance. oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" &...
  8. charlotte49er

    link 2 csv files & open as recordset

    I'm trying to write an asp page that uses Jet to open two csv files. I'm trying several variations but haven't had any luck. Has anyone been able to successfully do this? oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & strPathtoTextFile & ";" & _...
  9. charlotte49er

    check for more recent file on remote server

    I have been tasked with a project that potentially needs to download data from a remote server. The data is posted at irregular intervals and the name of the file changes slightly with each new post. Therefore, what I would like to be able to do is to connect to the server and check to see if...
  10. charlotte49er

    syntax of for...loop with counter increase by 1/2

    I am trying to populate a select box with values beginning with the var minHt and increasing by 0.5 until I reach maxHt. So the select box would list 25, 25.5, 26, etc. Here is the code snippet I have tried below but when I attempt to run it the browsers hang. Any suggestions are greatly...
  11. charlotte49er

    ado typelibrary in global.asa not recognized

    I have an application in IIS called &quot;flood_warn.&quot; In that directory I have a global.asa file with two includes: <!-- METADATA TYPE=&quot;typelib&quot; FILE=&quot;C:\Program Files\Common Files\System\ADO\msado20.tlb&quot; --> <!-- #include...
  12. charlotte49er

    sort recordset and then save

    I need to be able to sort a table based on a field. But, (isn't there always a but?!) I need for the table contents to physically be sorted not the recordset. Is there a way to sort a recordset and then write the sorted results back into the source table? To accomplish this, will this require...
  13. charlotte49er

    JOIN sql statement works in Access but not dbf

    I am trying to join together 3 separate dbf files (common field is SITE_ID) using the following sql statement in an asp page: strSQL = &quot;SELECT extents.*, usgsdata.*, usgsgage.* FROM usgsgage.dbf INNER JOIN (extents.dbf INNER JOIN usgsdata.dbf ON extents.SITE_ID = usgsdata.SITE_ID) ON...
  14. charlotte49er

    JOIN sql statement works on Access but not dbf's - help

    I am trying to join together 3 separate dbf files (common field is SITE_ID) using the following sql statement in an asp page: strSQL = &quot;SELECT extents.*, usgsdata.*, usgsgage.* FROM usgsgage.dbf INNER JOIN (extents.dbf INNER JOIN usgsdata.dbf ON extents.SITE_ID = usgsdata.SITE_ID) ON...
  15. charlotte49er

    select statement not working with joined dbf files

    I want to grab all of the fields from two dbf files. However, the following statement hangs up: strSQL = &quot;SELECT * FROM usgs_gages.dbf INNER JOIN usgsdata.dbf ON usgs_gages.SITE_ID=usgsdata.SITE_ID&quot; If I replace the * with the individual field names it works but I was hoping to not...
  16. charlotte49er

    How to use a hit counter with a session var

    Okay, I am a newbie here so be gentle...What I want to do is have a hit counter that uses a session variable so that the hit counter is increased only if the visitor hasn't been around for awhile. My code below works fine as long as I comment out the code line relating the session. However...
  17. charlotte49er

    are the holes in the back of atx cases all the same

    I want to put a shuttle AK31A mboard into an Enlight 7237 case. This is my first time building a machine so I want to make sure that the holes in the back of the case will line up with the ports for the motherboard. Are these all standardized? Will this combo work? Any info. please! Thanks

Part and Inventory Search

Back
Top