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 bkrike 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: fkwong
  • Content: Threads
  • Order by date
  1. fkwong

    Checking file/print status

    I have a program that will first generate a PDF file and then run another REPORT FORM command to preview the report. Is there a way to check the status of the PDF file and make sure it is completed before I continue the next command? Thanks in advance.
  2. fkwong

    FRX Output to PDF, HTML, Excel and etc.

    I am looking into third party program that will output the existing VFP report to PDF, HTML, Word, Excel and other formats. I found a software call FRX2ANY, but it require me to call its program (APP) in order to output to the format I want. I rathar have a software that I can build into the...
  3. fkwong

    Get default printer

    How can I get the default printer name (to store in a variable) without displaying the dialog using existing VFP functions? Thnaks
  4. fkwong

    How to check the existence of the object?

    I have a app that uses Winfax SDK but not all the user will have the Winfax installed. Is there a way to check the Winfax Software installation before I make the "fax" option available to them? I have the following code but it did not work when I try to create the object that is not...
  5. fkwong

    Set Printer Orientation in VFP

    Is there an easy way in VFP to set the printer orientation without user involve? I would like to force the printer to "Portrait" all the time. Thanks
  6. fkwong

    Looking for faxing SDK...

    I am looking for a good faxing SDK that I can build into my VFP6 application. Environment: Winfax is not an option and the users may/may not have MS Outlook or Outlook Express installed. Thanks in advance.
  7. fkwong

    Add ActiveX control to toolbar

    I added new ActiveX cotnrol using "Tool", "Option", "Controls" and then select from the list, then "Set default.." Somehow, the new controls did not show in the form design tool bar for me to select. Please advice.
  8. fkwong

    Fax capability

    Please recommend good fax controls (ActiveX, DLLs, etc) that I use in the VFP application to handle all types of backend modems or fax server backends. Windows OS are NT, XP and Window 98. Thanks in advance.
  9. fkwong

    Insert Control into Grid

    How do you insert and remove the checkbox control into/from the grid column? Thanks!
  10. fkwong

    Single form on desktop

    I like to create a small EXE that has only one form but I like it to display in the Window desltop without the default Foxpro screen on the backgroud. I have created an EXE but when I run it from the desktop and the form close automatically without even display anything. I usually has menu in...
  11. fkwong

    Combo from array

    I have a combo box (two columns) defined from the following array example. How do I make it when the user click on the combo box, the selection is default on the top instead of the bottom of the array? Thanks in advance. * this array is for the Add DIME arClass[20,2] arClass[1,1] = 'A'...
  12. fkwong

    Private Data Session

    For example, I have a form (form1) and a second form (form2), both of them can be called from the menu as seperate form that perform different functions. Both forms open and close tables, setting variables independently but do have some identical tables, alias and variable names. Now, I have...
  13. fkwong

    Enter key is not working...

    Please help me to troubleshoot why the ENTER key in the Pageframe form is not jumping to the next field. I have the same field setup in the simple form and it will jump to the next field. Thanks in advance.
  14. fkwong

    SET FILTER TO Question

    I set the filter for a table in a data entry form. Then, I have a need to break the filter by issuing "SET FILTER TO" command in one of the navigation button (class) to check other records in the same table. The problem I run into is the original SET FILTER condition is still exist...
  15. fkwong

    IDX and CDX

    I have a table that has both IDX and CDX. When I open the table with this command USE ABC INDEX TEST.IDX, I also see the CDX tags with DISP STAT command. Is that mean that Foxpro will use the Rushmore technology if the Query Expression matches the 'Tag' expression? Thanks in advance.
  16. fkwong

    Pageframe Question

    I have a pageframe that has five pages. If I want to swap the order of Page5 to Page4 and vice versa. Is that a easy way to do it rather tthen move all the objects? Thanks in advance.
  17. fkwong

    Combo question

    I have combo box that has two columns, e.g. 1 APPLE 2 ORANGE 3 WATERMELON When the user select "2", the Combo field saves "2", but I need the 'ORANGE' to store into other field. How can I accomplish that? Thanks in advance.
  18. fkwong

    IDX file problem in VFP6

    I got a "Record is out of range" error when I try to open a table with IDX file. I deleted the IDX file and rebuild the IDX and still have the same error. Help. Thanks
  19. fkwong

    SETFOCUS() Question

    I have a field called 'dlr_code', it has a LostEvent code block that has some logic, one of the condition is to return to the 'dlr_code' so that the user can re-enter the value. Other conditions will go to other SETFOCUS() fields in the form. I cannot put the code block in the Valid event...
  20. fkwong

    Calculate turnaround time

    How to calculate two datetime values to get a turnaround time in HH:MM. I try CTOT("12:51:54")-CTOT("08:07:13")/3600 = 4.7447 which is not correct. Thanks for your help.

Part and Inventory Search

Back
Top