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: *

  • Users: fishman13
  • Order by date
  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...
  16. fishman13

    table joins to on grid

    I have two table, one for charges and one for payments. The tables are related by a transaction number. I would like to join these two tables and display certain columns in a standard grid. On such field would be the date, in the charge table is it called cdate and in the payment table it is...
  17. fishman13

    sum of fields

    Thanks I have it working, but I have one small problem with the display of the fields. I am placing them onto a form for a summary using read only text boxes. However if the amount returned does not contain any change (100.00) I can only get the text box to show 100 . How can I prevent (or...
  18. fishman13

    sum of fields

    I am trying to get a balance of invoices that are current, over 30 days, over 60 days and greater then 90 days. I am using four sum commands to temporary variables and them displaying these cariables in a label caption. The total sum is displayed below. My question(s) are is there a way to...
  19. fishman13

    select on date value

    It appears to be the lenght of the row source string. I added another condition and received the syntax error again. I then replace the select carrier, priority, start_date, stop_date from insrec with select * from insrec and the syntax error did not appear...
  20. fishman13

    select on date value

    I have changed the select to the following and it is working checkdate = cpermiss.user_date acctval=thisform.txt_acct.value this.rowsource = "select carrier, priority, start_date ; stop_date from insrec ; where insrec.account == acctval...

Part and Inventory Search

Back
Top