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

  1. Matousek

    Do not want to show frx name while previewing report vfp6

    Do you mean you need a custom preview window? I use: Local whatCaption, m.showpicrep, m.name m.showpicrep = .T. m.name = CustomerName whatCaption = "Race Report Program - Click Close Window Icon to Return" oRepForm = Createobject("Form") With oRepForm .Caption = whatCaption...
  2. Matousek

    DEFINE WINDOW and Standalone Application

    I use this code to generate a report preview. Local whatCaption whatCaption = "Race Report Program - Click Close Window Icon to Return" oRepForm = Createobject("Form") With oRepForm .Caption = whatCaption .WindowState = 2 .Show() Endwith Repo Form "reports\" + (upickrep) &forclause...
  3. Matousek

    combo - displaycount?

    Or you could just use a select statement into this array and have foxpro do all the work for you....
  4. Matousek

    resizing forms

    I use mwresize.vcx and it seems to work fine. You just drop it on a form and type a few lines of code. Do a search on mwresize If you cannot find it I can email it.
  5. Matousek

    Alias Not Found & Can Not Access The Selected Table

    Look for a cursor that has the same name on another form or control. This happens in combo drop downs on multiple forms if the developer does not pay attention.
  6. Matousek

    Strange Behaviour on a network

    You will have to provide more information. What is the code it fails on? Proper error handling is critical to a good EXE. The error reporting tool will tell you what line, the error info, and keep it in a database for retreival later.
  7. Matousek

    Adding Graphical presentation

    Go to Mike Lewis's site and download his SIMPLECHART class. It makes charting easy. http://www.ml-consult.co.uk/foxst-23.htm I have 4 charts on one form, all updating continuously by timers. I can change the chart type instantly and many other cool things.

Part and Inventory Search

Back
Top