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!

Recent content by fishman13

  1. fishman13

    opening a printer

    Mike, I just tried that and it does bring up a printer window, however not the same window and my Foxpro reports. But the information still goes to the screen and not the printer.
  2. fishman13

    opening a printer

    I am trying to send information from a form to a printer, but cannot get the printer box displayed, or have the information go to the printer. I added messagebox commands to make sure the program is going were it is suppose to go, but it doesn't seen to work. The information is always...
  3. fishman13

    printing an array

    We have an old application that process information and writes the results to a two dimensial array set to 80 x 66. This array was then sent to a printer. Is there a way this can still be done in VFP or do we have to make a report.
  4. fishman13

    validating hour

    I have a form that has a control box used to store a time. The box is set with an input mask of 99:99. Is there a way to determine if a valid time is entered or do I need to convert the field to a date time. I was currently trying to use val(this.value), but only the hours are being checked.
  5. fishman13

    alltrim with edit box

    I am trying to scan a table and pull a field called note_line(which is 250 characters). I am then scanning through the cursor and adding all the note lines together and populating a edit box with it. The problem I am having is with trying to remove spaces at the end. After I join all the...
  6. fishman13

    hiding colums in a grid

    Is there a way to hide a column in a grid so the heading and data do not appear. I use a cursor to populate a grid with the following fields, item number, description, date and sequence number. I only use the sequence number to obtain the order and provide a unique field. However I do not...
  7. fishman13

    seek on two part key

    Michael, Just tried the allt and it still does not work. I also tried if seek (thisform.pageframe1.page1.cbo_rectype.displayvalue + ; thisform.pageframe1.page1.txt_rxqcode.value, ; search_rxinv, rxinv1) and get a error rxinv1 is not found.
  8. fishman13

    seek on two part key

    I am trying to do a seek command using a table that has a two part index. The first field is a character length 1 and the second is a character length 5. The index rxinv1 is set to only these two fields. I use this same seach logic with tables with only one condition without a problem, but...
  9. fishman13

    saving record location

    Jim, I had that logic in there and it never jumped to the current location.
  10. fishman13

    saving record location

    I have a form that displays records based on an account number. I start by using a select into cursor to get a list of only the account number of interest and sorting it by date. I have arrows keys that will scroll through the records and display the fields in text boxes. When a new record...
  11. fishman13

    ipcs error

    I am trying to run the ipcs command, but it returns the following error 0515-001 No valid name list found in /unix. Does anybody know what this error means or how to fix it. We are trying to run it on Aix version 4.3.2.0. It is happening to only one of our computers.
  12. fishman13

    windows timer

    I was looking at task schedular, but could not break it down to run every five minutes. I could only get it once per day, unless I created a new task.
  13. fishman13

    windows timer

    Does windows have a way of running a batch script every x minutes (similar to a unix cron job). We are trying to have windows ftp to another machine and pull back files automatically. We currently have a icon on the desktop that we click that does this for us, but we need it to initiate it...
  14. fishman13

    file size limit

    Does AIX version 4.3.2 have a file size limit. We have a client with a file size of 2,147,483,647, that we can no longer write to. The soft file size was set to a -1 a while ago Thanks
  15. fishman13

    select to arrays

    Hi, I am trying to figure out how to select one record from a table and access the data in an array. I am using the following select select * from balance where alltrim(account) == ; alltrim (csr_cbuff.account) into array holdbal The balance table contains account...

Part and Inventory Search

Back
Top