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

    Shared Database Help please

    I have pushed my app to all my workstations. Everything seems to run smoothly except for that every once in a while when a workstation does a search or access a database some or all the files are missing, but if another workstation does the samething at the same thing right after everything is...
  2. Serincino

    Customizing Browse Window

    I'm using VFP8. In several parts of my program I need to pop a browse window so the user can select the correct record to use in the rest of the program ( I can't use a grid cause this choice needs to be made inthe middle of code and pause will not work and the browse acts like a pause or a...
  3. Serincino

    USB Printing problems

    I'm currently running an old Foxpro 2.0 app. Orginally the program was designed to print to LPT ports (we are upgrading the program to VFP 8.0). I just installed a new workstation in our network and is running Windows 2000. The computer only has 1 LPT port and does not recognize the old LPT...
  4. Serincino

    Interesting Problem

    On my form I have 2 checkboxes that are attached to a Logical Data field. Date Source for one check box is thislogicalfield while the other is !thislogicalfield when the form is first shown the checkboxes are readonly. When the user clicks the edit button the checkboxes are set to readonly =...
  5. Serincino

    Making a Slide bar work

    Hey guys, I hope you can all help me. I have an image of a paper form that is used in the company I am creating the app for. In order for the image to be legible I have had to make the form longer than the VFP form I am placing it in. I have placed a slide bar on the VFP for, but I can't...
  6. Serincino

    Table does not Save Character Correctly, why??

    My program uses some special characters that need to be saved into a Table. Here is an example. r = chr(169) replace table.field with r for anyone that doesn't know ASCII 169 is the copyright symbol. When I go to pull this out of the table a different character is pulled, I've also looked in...
  7. Serincino

    Set Console Off Question

    In my code I am printing to a file: set printer to file temp\invoices.txt set printer on set console off problem is that the text getting printed using ? still prints on the form that is active. I am trying to supress this when the set printer on is used, but the text still prints on the form...
  8. Serincino

    Problems with Poping a Browse Window

    I don't understand why this isn't working now, it works fine in another part of my program. I hope some one can help me. I have created a form that it's only purpose is to appear so that a browse window can pop into it. frmdisplay.show BROWSE FIELDS date, cpa_no, number, ck, memo, ccredit...
  9. Serincino

    Creating Containers and Adding Objects to them. Please Help!

    I'm new to this container idea in VFP. I have several objects (checkboxes, textboxes, and Labels) that I want to add to one container so that I can just hide the container when those objects need to be hidden, if one needs to be hidden they all do, and vise versa. Can some one please help me...
  10. Serincino

    Problem with Using Transform()

    I'm using transform to convert a decimal number into a string so I can print it into a messagebox. num = 4.461 nums = transform(num,[999.999]) when I print nums I get 4.460 this happens on any number with 3 decimal places or more. I'm using VFP 8.0, bu I've tested this wit FP 2.0 and it does...
  11. Serincino

    Printer System Variables

    I'm using VFP 8.0. I'm printing data from a table to create service tickets. The printer I'm printing to is an older Panasonic XP-P1150 tractor feed. The forms in the printer are 4.5 by 7 (long) inches. The windows driver setup will not allow for custom page lengths so I'm stuck with 8.5 by...
  12. Serincino

    Please Help with Printing Reports

    My app has the option to find an account in the database then print the information into a report I have created. My problem is the search and on screen display is in a form. When the report command is given, report rptptcontract record recno() to printer prompt The data being sent to the...
  13. Serincino

    Problem with Printers!!! Please Help!

    I am pulling service ticket information from several databases and placing them in a report to print the tickets. Below is my code. SET PRINTER ON prompt SELECT F SET ORDER TO ledger SELECT A SET ORDER TO number SET RELATION TO STR(number,6) INTO ledger1 SELECT D SET ORDER TO number SET...
  14. Serincino

    Help with Time()

    I have a form that needs a time stamp form since this form will be used to print a ticket. When the form loads and refreshs thisform.mytextbox.value = Time() is run. This places the time in the textbox, but the time is in military time. I've tried using set time to 12 but this still does not...
  15. Serincino

    Problems with Checkboxes

    In my app, the user moves though textboxes by entering data and then hiting enter. One of my selections is a simple checkbox. I'm curious if there is a way that when the user hits enter over it that it will not check the box, but just simply move off it to the next object that the tab order is...
  16. Serincino

    Searching a Database?

    In my app I have a search routine and form that I built. This form grabs all the database field names and populates a list box for the user to select which field they would like to search in. Unfortunately doing this requires that I have all fields indexed (creating a large index file). What I...
  17. Serincino

    Focus is getting lost

    In my current application I have a textbox that the user will enter an account number in. When the user hits <enter> the valid method runs on the test box and pulls up the information for that account number if one exists and populates the other textboxes in the form. (this form is for posting...
  18. Serincino

    Reversing an Append Blank

    I have a form that when it is called automatically opens a blank record in the database it uses (Append Blank). My question is that is a user were to accidently click the button that opens this form and then they click cancel, how do I revert the table to get ride of the blank record? I use...
  19. Serincino

    Making Lostfocus Not Run

    I have a program where the user enters in an account number and the rest of the data is filled into the form. If it is an incorrect account number the users is informed with a pop-up message and focus is returned to the account field. If they enter 0 in the textbox, then focus is automatically...
  20. Serincino

    Saving Data in Tables

    The program I am writing is in VFP 8.0 I have several forms all accessing different tables and sometimes the same tables. Non of my forms are using private data sessions and non of my controls are linked to fields in the tables they are accessing. I am entering and changing data in the tables...

Part and Inventory Search

Back
Top