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 strongm 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: FoxRookie
  • Order by date
  1. FoxRookie

    Report Detail Band Not Using Full Page

    Thank you all for your assistance!
  2. FoxRookie

    Report Detail Band Not Using Full Page

    Thanks for the quick reply. Absolutely I am using remove line if blank and i double checked all objects to see if one may not have been set, but all are set correctly
  3. FoxRookie

    Report Detail Band Not Using Full Page

    In our client information module we have a ton of demographic info and then six embedded forms that are one-to-many, thus, requiring a multi-banded report. This is no problem, I have used a technique to add all the objects I need in the detail band to cover all the child forms and then...
  4. FoxRookie

    Dr. Watson error with unknown cause

    I am hoping someone can provide a little insight to an inconsistently consistent error that occurs in our app that I can not find the source. We have a VFP 6.0 app that runs some old fox 2.6 screens. The error occurs from our citrix servers as Dr. Watson, but natively we will get a windows...
  5. FoxRookie

    MOD() and % operator

    Thanks guys - i needed the 3rd grade explanation
  6. FoxRookie

    sql or not

    We have a huge Fox App - some tables have over 2 million records in them. For many of our customers we have a DB server hooked to as many as 11 citrix metaframe boxes and client's are spread out over serveral counties (as many as 100 clients simultaneously). We found that client nic cards...
  7. FoxRookie

    MOD() and % operator

    Can anyone explain how the modulus works. I tried to use %, but the return value was not what i expected. I read the help in fox 6, which says: Returns the remainder (modulus) obtained by dividing one numeric expression into another ? 3089%60 returns 29 and I was expecting 483... I think...
  8. FoxRookie

    Underscores in Program Editor

    I am using the defaults. Courier New size 9. I changed it to 10 and it solved the problem. Thanks!
  9. FoxRookie

    Underscores in Program Editor

    Since the beginning i have noticed that fox will not display an underscore in a variable, 'my_var' appears as 'My Var'. This was never a problem until a typo where i typed '_' rather than a space. I new the code was fine but I kept getting a syntax error. I only noticed this when I copied the...
  10. FoxRookie

    Share.exe 'Today'

    The platform is NT4 using terminal sever and metaframe - thanks
  11. FoxRookie

    Exception - Access Violation (0xc0000005)~Dr.Watson

    Good Point, I do not know whether the Win95 computers may be running on a deficit --- Good Point I can't tell you how much i appreciate the imput!
  12. FoxRookie

    Share.exe 'Today'

    One of our network consultants insisted that we need to configure share.exe to make our fox6.0 app run properly as a client/server app. Hence, he gave all the specs for configuing this "dog", share.exe. Everyone was so happy with this finding, but, isn't this an old sharing program...
  13. FoxRookie

    Exception - Access Violation (0xc0000005)~Dr.Watson

    Before my elaboration, 'This site Rocks!' I have solved so many problems with the help of the feedback here. The sad story begins with one of five customers experiencing a Dr. Watson exception error, Access Violation (0xc0000005) Address: (0x0c00556) Background: Our application is for mental...
  14. FoxRookie

    Report grouping with 2 identical tables

    Addendum: to my prior exhaustion, if you order your query correctly, the fox report engine will group correctly...
  15. FoxRookie

    Report grouping with 2 identical tables

    Union your queries -- make sure the first query defines all possible field lengths etc of the second table, (i use nvl()) when in doubt or the eqivalent thereof. select nvl(field1,space(20)) as one, field2 as two ; from mytable1 ; union all (select field1 as one, field2 as two ; from mytable2)...
  16. FoxRookie

    Debug directly from source code

    Thank you!
  17. FoxRookie

    Debug directly from source code

    Can anyone explain how a developer can run their application directly from source code without having to compile the app every time a change is made and re-tested? thanks! darrin

Part and Inventory Search

Back
Top