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. Mukesh Khandelwal

    Foxpro to Quickbooks Online

    Hi Nigel Thanks for the reply currently my desktop app is creating Text file which includes financial entries like vouchers etc. and the same text file get imported in QuickBooks desktop version. Now we decide to use Quickbooks online and we need the same functionality to import vouchers via...
  2. Mukesh Khandelwal

    Foxpro to Quickbooks Online

    Is there anyway to import data from Foxpro to QuickBooks Online Thanks Mukesh Khandelwal
  3. Mukesh Khandelwal

    Report Preview issue

    Hi Mike/Nigel Sorry for my delayed response. Thanks for the suggested solutions. I have checked the issue at client machine it is happening when we print Foxpro report directly to "ADOBE PDF PRINTER". The solution we gave is to use "MICROSOFT Print to PDF" instead of "ADOBE" Thanks Mukesh...
  4. Mukesh Khandelwal

    Report Preview issue

    @Nigel In program, it is "Set reportbehaviour" value is 80, i am using VFP version 9 i am not using Foxypreviewer Line of code that is printing report REPORT FORM (lcReportForm) &lcClause PREVIEW WINDOW PrintPreView @Dan Screen Zoom factor is already 100% Thanks Mukesh Khandelwal
  5. Mukesh Khandelwal

    Report Preview issue

    But this happens only with this particular report. Preview other reports are ok. also print of this report is also ok, only issue is with preview of this report only Mukesh Khandelwal
  6. Mukesh Khandelwal

    Report Preview issue

    Hi I am using a standalone Executable of foxpro application. getting one issue of report preview is not coming correctly. i am attaching the image of report preview. Thanks Mukesh...
  7. Mukesh Khandelwal

    How to run VFP9 without installing Foxpro 9

    Hi all Thanks for your replies. Sometimes we need to debug application on client side and we do not want to install full Foxpro on client side. This is to run Foxpro on client side to debug any program or feature that was not working on client system. Thank you Mukesh Khandelwal
  8. Mukesh Khandelwal

    How to run VFP9 without installing Foxpro 9

    Hi i want to run VFP9.exe with required DLL's only. I tried to do the same by copying all the required files in a folder. I have copied the following files in folder VFP9 and tried to run VFP9.exe but it gives the error "Visual FoxPro cannot start. Could not load resources." gdiplus.dll...
  9. Mukesh Khandelwal

    Has anyone remembered .... ?

    I also started from dbase/foxbase and foxpro for Unix Mukesh Khandelwal
  10. Mukesh Khandelwal

    Declare parameters from form to prg file

    Hi If you are not using SET PROCEDURE command and your program file contains multiple functions then you can also use do FunctionName in utils Thanks Mukesh Khandelwal
  11. Mukesh Khandelwal

    Declare parameters from form to prg file

    Yes, Olaf is correct. instead of passing "THISFORM" as parameter, you can pass the value of MOnth and Year to your PRG file so that your program is not dependent on the FORM object. You may use the same program file as a generic process just by passing Month and Year values. Thanks Mukesh...
  12. Mukesh Khandelwal

    Declare parameters from form to prg file

    Hi You can call your program as ( Pass "THISFORM" as parameter to PRG file.) DO (lcDir)+"code\deped_newprod.prg" with Thisform Code of deped_newprod.prg Parameter oForm lcMonth = ALLTRIM(oFORM.cboMonth.VALUE) Thanks Mukesh Khandelwal
  13. Mukesh Khandelwal

    Separate two data with two different columns in a row

    you will find this class in C:\Program Files (x86)\Microsoft Visual FoxPro 9\vfpxtab.prg Mukesh Khandelwal
  14. Mukesh Khandelwal

    Is ICASE() has a limit?

    Hi i think here in ICASE you have to take same length for all Description as per rde.code like...
  15. Mukesh Khandelwal

    Separate two data with two different columns in a row

    Hi This type of question is already asked in the forum. Please check the below link https://www.tek-tips.com/viewthread.cfm?qid=1717274 https://www.foxite.com/archives/convert-row-into-column-0000298548.htm Mukesh Khandelwal
  16. Mukesh Khandelwal

    How to stop this showing on the screen ?

    Hi I think your question is how to stop this dialog from coming up when you open any table. issue command "SET CPDIALOG OFF" this will not open the Code Page dialog box when a table is opened. Thank you Mukesh Khandelwal
  17. Mukesh Khandelwal

    Problem with calculating data using different tables

    Hi I do not think this code is working correctly or is it working at all. i found following issues in it. You have assigned following variables *////////////////////////////////////VARIABLE STORAGE/////////////////////////////////////////////////////// Start=1 End=4 and on the basis of these...
  18. Mukesh Khandelwal

    Problem with calculating data using different tables

    From your post i understand that in your payroll software you have functionality to calculate arrears by giving "Start Month", "End Month" and "Employee Code". your program will search Employee table and calculate salary of every month and stores the difference in a table. and then you talked...
  19. Mukesh Khandelwal

    VFP and fillable PDF form data

    Hi Can it be done by converting PDF to word document From VFP you can automate word document (i.e. filling of all the required fields) Save the word document again into PDF file Thanks Mukesh Khandelwal Mukesh Khandelwal
  20. Mukesh Khandelwal

    Error Message Invalid Date

    Yes, Mike is correct "Invalid Date" message is not a bug. It is an error message from Foxpro when user enters incorrect date. As you are using "@ row, col get " commands for accepting values from user, You can use VALID clause along with "@ row, col" to customize/Handle error message. But if...

Part and Inventory Search

Back
Top