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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dsullinger

  1. dsullinger

    Table Values Not Passing to Form

    If I have a table with 4 fields; FieldA, FieldB, FieldC, FieldD. I have one form with FieldA and FieldB, then a button that opens another form with FieldC and FieldD. When I push the button for the second form, the data for FieldC and FieldD from the table are not being passed to the form. I...
  2. dsullinger

    Using VBA to Filter a Query

    Yes, why is that a "no no"? I'm sure it shows that I'm not a dbase person. I've been writing in VB for years, but my work needed some work in Access so here I am plodding through this.
  3. dsullinger

    Using VBA to Filter a Query

    Ok, after messing with it some more, you are right. What I have in my Form is not a ListBox, but I have embedded the query tiself into the Form. I would like tha user to make changes and input data right into the query, but I need to filter the data in the query everytime the Form opens.
  4. dsullinger

    Using VBA to Filter a Query

    Wow, well probably if I had a clue on how to do that. Sorry to be such a Pod.
  5. dsullinger

    Using VBA to Filter a Query

    This is really getting frustrating. I have a Query called "PhotoList_Query" that 3 fields called "Structure Number", "Filename" and "Description". I have a Form that has a Listbox with the query as it's source object. I am trying to open the Form and filter the Listbox to only show specific...
  6. dsullinger

    Using VBA to Filter a Query

    I have tried: DoCmd.ApplyFilter , "[Structure Name] = '555'" It accepts the filter, but as I look at the embedded query, nothing changes in the "Structure Name" field.
  7. dsullinger

    Using VBA to Filter a Query

    I have a query embedded into a form. When I open the form I would like to filter the criteria of one of the columns in the query using VBA, but I am having no luck. Any pointers?
  8. dsullinger

    Sybase Anywhere 9 to SQL 2005 Express

    Is there anyway to convert my Sybase SQL Anywhere 9 database to Microsoft SQL 2005 Express? Thanks
  9. dsullinger

    Virtual Directories

    Ok, I got the problem solved and I'm not real sure what happened, but it's working. Maybe it was a bad combination of user permissions, I'm not sure but it's working great. I didn't have to setup a VirtualHosts, actually that stopped it from working so I turned it off. Yes on mod_userdir and...
  10. dsullinger

    Virtual Directories

    I've setup a OpenSUSE 10.1 box as a file/web server in our home. I've got all the shares setup using everyones /home/ directories and the Apache server is working fine. I would like to create a directory in each users Home as /home/user/www and the create a virtual redirector to each persons...
  11. dsullinger

    Network Server Drive Space

    I'm trying to update a web page with the drive space available on a server on our LAN. When I run this, I get an error with the "Set d=fs.GetDrive(drvPath)" command. If I run the same script against the web server the script is on, it works fine. Any ideas? <% ws = "idmssql1" drive = "c$"...
  12. dsullinger

    Download file from VBScript for Web Page

    Wow, sorry all... if I could figure out how to edit my post, I would fix my poor grammer... ugg!
  13. dsullinger

    Download file from VBScript for Web Page

    I ahve some VBScript in a web page and once it is completed, I need to download a Zip file. What would I need to insert int he code to begin the download... what if I also need it to open a new web page? Thanks <SCRIPT LANGUAGE="VBScript"> <!-- {stuff happends up here, but clipped out}...
  14. dsullinger

    Domain Login from Web Page with VBScript

    Wow, much thanks. Once I got the username, I then needed it to execute some Javascript, so here is what I did and it works fine. <html> <head> <title>Got Milk?</title> <link rel="stylesheet" href="dropdown.css" type="text/css"> <% strUserFull = Request.ServerVariables("LOGON_USER") If...
  15. dsullinger

    Domain Login from Web Page with VBScript

    I need to check what the users login is from within a web page when the page is loaded. I would like to use VBScript, but I can't seam to get it to function correctly. Below is what I currently have, but nothing happens. Any ideas? <html> <head> <meta http-equiv="Content-Type"...

Part and Inventory Search

Back
Top