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 TouchToneTommy 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: jsteff
  • Content: Threads
  • Order by date
  1. jsteff

    Can Anyone "ReFox" my .FXP

    All of our source code is gone, the invoices are due out, we cannot determine why a key file is generating an error 15. The error message is generated on line 164 Can anyone help me by de-compiling the attached 8k .FXP ??? I would greatly appreciate your assistance. Thanks. Jeff JSteff...
  2. jsteff

    My .FXP program generates an error 15

    I am using FoxPro 2.6 on a Windows2003 server. Everything has been running for 7 years.... no problem. Suddenly, two of my .fxp programs are generating Error #15. (my other 125 programs (.fxp) are running fine.) Does anyone have an idea? P.S. I do not have the source code for this...
  3. jsteff

    MSAccess Datasheet view does NOT show all columns in Table

    MSAccess works perfectly for all tables in my application. I have ONE table that contains 52 columns and works WITHOUT error. However, when I view the table in DATASHEET mode, I see only 16 columns. When I click to see DESIGN mode, all 52 columns are there. If I do an insert with all 52...
  4. jsteff

    Print Screen Displayed by PHP

    My PHP app displays a calendar page on the screen. I need to PRINT the screen display so that it looks professional. Does anyone know of a routine that will do this for me?
  5. jsteff

    Pass Arg to PHP Web Page at Startup

    I need to validate a user id before an app starts on the server. The userid is sitting on Drive C of a desktop running Windows. I have a PHP program on the server that will validate a user BUT currently, the user id is hardcoded. When I start the program on the server, I need to submit the user...
  6. jsteff

    kernel-module version mismatch

    Install a Digi product on my RedHat ES_#, I get: /lib/modules/2.4.21-15.EL/misc/dgrp.o was compiled for kernel version 2.4.21 while this kernel is version 2.4.21-15.EL Digi say I need to get a copy of the 2.4.21 kernel and install it. Two Issues: 1. I can't find it at RedHat. Do you know...
  7. jsteff

    Prompt for Cut-Off Date then use to Restrict Output

    I defined a parameter: DueDate I want the report to: select all the recs where INVDATE < DueDate What would the formula look like? How/where do I add the formula to restrict the output?? Thanks.
  8. jsteff

    Word Macro to Locate Fixed text and then &quot;bold&quot; it

    I have a single doc that represents many invoices. I need to create a macro that will locate three different strings globally, like "Grand Total", "For Services Rendered" and "Due Date". When the macro finds this text, I want it to make the text bold. I have done "keystroke" macros before...
  9. jsteff

    Run MS Word/Excel from ASP Form Link

    In my ASP form (running from a MS workstation) is a drop-down of MS Word documents (on the server) related to the ASP record in the form. When you click the link, I want the doc to show up at your workstation. Two questions: 1. I have found a third-party tool "ASPExec" that makes this...
  10. jsteff

    Can't Get Initial ASP Script to Run

    I have: Standalone PC WinXP Pro IIS 5.1 (installed and running) I created the following ASP script (START.ASP) and saved it to \inetpub\wwwroot When I open my browser and enter "http://localhost/START.ASP" the response is: "The Page Cannot Be Found". Any Ideas? <%@...
  11. jsteff

    Report Not Sorting Correctly

    Created a simple query that is the basis for a simple report involving 9 joined tables. When you look at the SQL version of the query, it perfectly ends with "..ORDER by ID_NUM" The report output looks great BUT it is not completely in ID_NUM sequence. Most of it is fine but a few of the...
  12. jsteff

    Make a Label Flash or Blink

    Simple Form. The user can navigate through the table using the buttons on the bottom of the form. (working) If the user gets to a record that has a status of "6", the label "DONE" appears on the screen (working) While the user is on the "DONE" record, I want the word "DONE" to flash. (not...
  13. jsteff

    Print the word &quot;DONE&quot; based on a related value in Form

    Very simple request....(i thought) In the form is the field, STATUS. I creted a "label" field (TaskStat) to simply display the word DONE in the lower corner of the form. So: IF the STATUS field=6 then print the word "DONE" in the label field (TaskStat). I want this to happen as the user...
  14. jsteff

    Records in FORM are Presented in No particular Order

    I have been using the same form for 4 months without an issue. When the user opens the form, the records have been presented in ascending order based on the primary key which is an "auto-number" field. This has been happening by DEFAULT (no code used here). Yesterday, this changed...
  15. jsteff

    Add Field to Table, BUT it does NOT appear in Report field list

    Report is done. Table has been modified to add a new column. DONE BUT when I go into the report design to add the column to the report, the NEW field does not show up on the field list. How do you update the field list in "Reports" to reflect the current content of the tables? thanks.
  16. jsteff

    Before Report Runs I need to Issue an UPDATE

    The form works perfectly. When the user clicks the report button on the form, the report works perfectly based on my query. Now, when the report button is pushed, i need to execute this statement BEFORE the report runs: UPDATE TASKS set CrossRefPriority="ZAZ" WHERE...
  17. jsteff

    Need to Change Margins AFTER I finished the Report

    The report runs well no problems. I need to change the top and bottom margins on a functioning report. When I lookup how to do this in Help, there is a note that says: ----- Notes Changing these options doesn't affect the margin settings for existing forms and reports. ----- I need to change...
  18. jsteff

    ORDER BY is alpha, I need to order by HIGH / MEDIUM / LOW

    I have a good, functioning report where the ORDER BY clause is "ORDER BY PRIORITY". That means is sorts as HIGH then LOW then MEDIUM (which is correct alpha order). I need to sort the output by PRIORITY but it must be in the sequence of HIGH MEDIUM LOW. Is there an easy way to do this...
  19. jsteff

    Runtime Error 2136 on a Simple Form

    My form runs perfectly. One of the users wants permission to use "DataSheetView" from the form. So i added the following as an "On Open" event for the form: If (Environ("username") = "dwhit142") Then Me.AllowDatasheetView = True THIS code generates the following error: runtime...
  20. jsteff

    Populate a Text Box on Form with Field from Another Table

    I have a form with a text boxes for PROJECT_CODE and START_DATE. (and 30 other fields). The "START_DATE" is a field in the MASTER table that is the basis for the form. However, the START_DATE should ALWAYS be retrieved from the "SCHED" table based on the PROJECT_CODE. Is there a simple way...

Part and Inventory Search

Back
Top