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 SkipVought 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: *

  1. runningphan

    Duplicate record when adding data

    I have code that executes without errors in Firefox but gives me a duplicate record error in IE and it is driving me crazy. I can't seem to find where the problem is. The form data that is being posted is writing properly to the new database record but for some reason it appears that the ASP...
  2. runningphan

    Suppress Group Issue

    Hi there...got a bit of a suppression problem. I have a count that is essentially counting detail records and I have two groups. A user is providing a value that is compared to the count for suppression purposes and then this formula is used within the suppression of the a group header. The...
  3. runningphan

    Variables from form values not working with ASP / VBscript

    Great! You explained it perfectly and the sample code was enough to get me going. Here is the actual code that I used in order to get it working. I will have to modify it even more to do some password validation but this was my biggest concern and I can handle it from here. Thanks again...
  4. runningphan

    Variables from form values not working with ASP / VBscript

    I have a form using the following code. <form action="default.asp" method="post" name="login"> <input name="User" type="text" size="20"/> <input name="Pass" type="password" size="20"/> What I need default.asp to do is capture those form inputs and store them in a variable that I can call...
  5. runningphan

    PHP 5.166 on IIS 6 working - sort of

    I have the settings as you describe but do not get an error message. I believe that IIS uses IUSR_COMPUTERNAME as the account and that account has been given permission to write to the folder within security.
  6. runningphan

    PHP 5.166 on IIS 6 working - sort of

    Yes <?php // Show all information, defaults to INFO_ALL phpinfo(); ?> works just fine and show all the php information BUT <?php $my_data = "This is the data to be stored in the text file."; // Open the file and erase the contents if any $fp = fopen("test.txt", "w"); // Write the data...
  7. runningphan

    PHP 5.166 on IIS 6 working - sort of

    I am able to view php file that shows me the entire PHP configuration so I know that PHP is installed properly and php files are being sent to the php5isapi.dll on an IIS 6 2003 server. I have some other php pages that collect information on a form and then write it to a text file. Simple...
  8. runningphan

    TS licensing question

    Yes, it has a back end database that will reside locally on the TS. All settings and database path configurations for each user are stored in an .ini so we should be fine on that route. I just wish we could feasibly use 2003 for all of the advancements in the virtual address space utilization...
  9. runningphan

    TS licensing question

    It's a manufacturing application that allows users to see inventory levels, production levels, job requests, scheduled maintenance and a lot more. The problem is that it is not web based but we 100+ users in multiple locations that will be using the software almost all of the time as their only...
  10. runningphan

    TS licensing question

    I know this gets asked quite a bit but I was given the task of actually finding out and this seems like the best place to go for good honest advice. We are getting ready to roll out a new application that will require a limited number of users at first but will grow steadly afterwards. Users...
  11. runningphan

    XML Export: Change schema

    We are doing an HTTP POST where the vendor needs a specific XML schema for import into their system. If everything was on the same system then we would probably be able to get ODBC to work or simply write a quick interface, but we are working with different systems....
  12. runningphan

    XML Export: Change schema

    I've been looking at the XML export function in XI becuase I have a need to import data into a vendor's system using XML. I've spent time inthe XML expert area and can see how to limit which tags are present but I'm wondering how I can modify the tags.... For example I need...
  13. runningphan

    Time Difference Calculation

    I have kind of a tricky time difference calculation (well, tricky for me ;)). I need to calculate the difference between date/time fields in different records. Each record can have one of three types (started = 3, stopped = 4, and finished = 6) and then the status type date/time. Well, I need...
  14. runningphan

    Use VBA to copy pages from one document to another

    I am also seeing some strange activity with regards to header/footers....when I have a range of < 11 pages I do not get the header/footer but when the range is > 11 pages, I do get the header/footer...strange... Thanks again for any insight you might have.
  15. runningphan

    Use VBA to copy pages from one document to another

    I have a document that is 120 pages long that individuals want to be able to specify specific pages within the document to extract and create a new document. For instance, they may want pages 1,3,9,35 for one new document and 2,88,94 for another. I found a way to do a range (1 - 10) but am...
  16. runningphan

    AutoOpen on a word document

    The document has an opening page with three different options. If the user clicks on option A it goes to Bookmark A, if the user clicks B it goes to Bookmark B and so on. There are hundreds of hyperlinks to bookmarks (one bookmark per page) so that the user can navigate where they please. It...
  17. runningphan

    AutoOpen on a word document

    Here is my main problem. I have created a word document where users will click on hyperlinks to navigate their way through the document...a choose your own adventure if you will. In order for this to look and function at its best, I found that the print preview with the magnifier option turned...
  18. runningphan

    controlling the back button when using bookmarks

    Well, I found a way to do it, but am still looking for sexier ways of doing it. Here is what I have done. Sub AutoOpen() ' ' Full_Page_View Macro ' Open Document in Print Preview with Web Toolbar and No Magnifier ' ActiveDocument.PrintPreview CommandBars("Web").Visible = True...
  19. runningphan

    controlling the back button when using bookmarks

    Is there a way to control the behavior of the back button after clicking on a bookmark to take the user to the previous bookmark instead of the previous link? I like to keep all navigation to pages instead of to links. Thanks.
  20. runningphan

    Append Query Not working - Duplicate Output Destination error

    I have kind of a strang Append Query and it isn't working. I have a field in a table that needs to be updated by potentially 10 different fields in another source. For example 'Shelf' needs to be updated by 'Shelf0' or 'Shelf1' or 'Shelf2'...'Shelf9' depending on which has data. Here's the...

Part and Inventory Search

Back
Top