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. jsteff

    MSAccess Datasheet view does NOT show all columns in Table

    This eventually worked. BUT... the key to success is the actual location of you mouse pointer when you click the RIGHT button. You will notice that depending on the location of pointer, you get a DIFFERENT list of options. To see the "Unhide Column" option, you need to RIGHT click when your...
  2. jsteff

    Can Anyone "ReFox" my .FXP

    Thanks for the insight. I am not trying to hack anything, don't want to rip anyone off, the company that wrote the code 20+ years ago is long gone, there are no updates, I just got here. I am just trying to determine what table or index is being referenced on one line of code in a library of...
  3. 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...
  4. 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...
  5. jsteff

    MSAccess Datasheet view does NOT show all columns in Table

    I am using Access 2007 and cannot find the "Unhide Fields" option as you suggest. Can you tell me how to get to that screen? Thanks. JSteff Virginia
  6. 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...
  7. 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?
  8. 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...
  9. 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...
  10. 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.
  11. jsteff

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

    My doc has many occurances of: Total Due: $ 12,999.22 I never know how many digits are in the value. So the following macro will bold all occurances of "Total Due: " but will not go to the end of the line with "bold". Selection.Find.ClearFormatting...
  12. jsteff

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

    My friends, All of your suggestions made it all work perfectly! Thank you. One more issue: In the macro, once I "Find and Replace", how do I get the "bold" to run all the way to the END of the line???
  13. 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...
  14. 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...
  15. 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? <%@...
  16. 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...
  17. 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...
  18. jsteff

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

    I added this code as you suggested: Private Sub Status_BeforeUpdate(Cancel As Integer) If Status = 6 Then Forms!MAIN!TaskStatDisp = "DONE" End If End Sub When I step through the field "Status", I get the error: Run-time error "438" Object doesn't support this property or method. FYI: the...
  19. 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...

Part and Inventory Search

Back
Top