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 wOOdy-Soft 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 Shevshenko

  1. Shevshenko

    import wizard

    When I tried to do it with the import command first I have to create a database to include the table in it (I want it in an independent table)and after doing this it gives me a table with fields named 'A' 'B' 'C' 'D' .....etc So I must change the label of all the fields (I have 55 fields in the...
  2. Shevshenko

    import wizard

    When I try to import data from an xls 2000 file using the import wizard and on clicking the finish button I have the error message N°1748 that says I have to run the '30update.prg' file. I can't find this file anywhere !! So if someone can help me to resolve this problem because I have big...
  3. Shevshenko

    Adding a Check box to a List box:

    Why you want to use checkbox "so that the user can select multiple tables at a time" ?? You can use a listbox with only one column that contains the names of tables and putting the multiselect's property of the listbox to .T. and than the user can select multiple tables at a time by...
  4. Shevshenko

    Report Page Number

    I used this in all my reports and it works correctly. I put this in the valid event of the command button that prints the reports.
  5. Shevshenko

    Report Page Number

    You can do it like this Create a variable named 'nTotalPages' for example and put it in your Report Public nTotalPages REPORT FORM Myreport.Frx NOCONSOLE nTotalPages = _pageno REPORT ForM Myreport.Frx 'Preview' or 'To Printer' ... when you print your report the 2nd time to Preview or to file...
  6. Shevshenko

    Problem with Grid.Activatecell

    Vfp 6.0 SP5 On Win98SE I have a grid based on an alias in which I insert a number of rows (ie 100 products).The last grid's column is the serial number of the product which is not inserted with the insert instruction.So after that I put the mouse cursor on the last column of the first row and I...
  7. Shevshenko

    Problem of order when using group by in SELECT INTO

    I use VFP6 and I have a problem of order when I create a temporary table using SELECT INTO Statement. The table Lignebl conatains the products of an invoice and I want to select the lines using GROUP BY Lignebl.Ligart which is the productid to SUM the quantities of them.And I want the result in...

Part and Inventory Search

Back
Top