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: fishman13
  • Content: Threads
  • Order by date
  1. 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...
  2. 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.
  3. 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.
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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.
  9. 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...
  10. 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
  11. 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...
  12. 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...
  13. 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...
  14. fishman13

    select on date value

    What could be causing a syntax error in the following select. It was working fine until I added the start_date < checkdate. Both fields are date fields. checkdate = cpermiss.user_date this.rowsource = &quot;select carrier, priority, start_date ; stop_date from insrec ...
  15. fishman13

    pageframe focus

    I have a form with a pageframe (chargeopt) and some corresponding pages in it (name = visit). On the main form I have a command button that when clicked executes the following line thisform.chargeopt.visit.setfocus() thisform.refresh() If I leave the Tabs property set to True for the...
  16. fishman13

    visible page frame

    Is there a way to make a page in a pageframe visible only if a condition is true. I have a form with a pageframe with 12 pages. I only want page 11 visible if a condition on page 1 is true. Currently I have page 11 set to disabled and then enable on the true condition.
  17. fishman13

    textbox validation

    I have a textbox that can only receive an &quot;A&quot;, &quot;B&quot; or &quot;P&quot; value with the MaxLen set to 1. I am trying to place the code to validate the input and send a message, but cannot get everything to work together. I tried in the valid event which triggered the error...
  18. fishman13

    dropping table

    I use the following procedure to build/drop/pack and recreate tables in my database. I have no problem building, packing recreating, however whan I try to drop the table I get an &quot;invalid table name&quot; message. Why can I create the table, but not drop it. Thanks. do case case...
  19. fishman13

    combo box changing data

    I have a form that I use to display the fields of a table. When I enter the form or change the repord pointer, I set the value of the controls to the value stored in the current reocrd. On of the controls is a combo box that is filled by a select from another table. The problem I have is when...
  20. fishman13

    textbox size limit

    Is there a way to set a value for the number of characters a text box can hold. I have a text box that is not tied to any control source that needs to hold up to 50 characters. Is there any way to set this limit without using 50 &quot;X&quot;s for an input mask. Thanks

Part and Inventory Search

Back
Top