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 Mike Lewis 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: freddiekg
  • Order by date
  1. freddiekg

    How to put a menu in a "ShowWindow=2" Top level form

    Dear all, My VFP call a "ShowWindow=2" Top level form when started, and is working fine until I try to put a menu in the form, by calling a menu (DO menu.mpr) in the Init section. Now, the form don't even show up but the EXE is still active and I have to kill the application in the Window...
  2. freddiekg

    Information in VFP report disappeared after preview

    Than you very very much :) Regards, Fred
  3. freddiekg

    Information in VFP report disappeared after preview

    Dear all, The "REPORT FORM emailarc TO PRINTER" is working everytime. But "REPORT FORM emailarc PREV" is NOT working everytime. The problem are as follow: (1) Sometime, the preview report is good but once I click on the preview screen, the information (data) in the report is missing and...
  4. freddiekg

    Information in VFP report disappeared after preview

    Hi Keith, The "REPORT FORM emailarc PREVIEW" command will create a report for user to PREVIEW. And while in the VFP preview screen, it also have a "print button" for the user to send the output to the printer, which is all basic VFP stuffs. However, my problem is when I click the preview...
  5. freddiekg

    Information in VFP report disappeared after preview

    Hi Keith, The following is the code. The report's data is from a cursor, and the user preview the report, then they can print the report by clicking the printer button in the preview screen. It is a very simple thing right? SELECT * ; FROM (epath)+"fmail!emailarc" ; INTO CURSOR...
  6. freddiekg

    Information in VFP report disappeared after preview

    Dear all, I have a simple grid (data from a cursor) in a VFP form. I allowed the user to click on the record in the grid and it will generate a report to preview that selected record. So it actually do another SELECT statement to create a new cursor before calling the REPORT statement. Pretty...
  7. freddiekg

    How to point to a specific email in Outlook with EntryID

    Dear Nigel, Thanks for your help, but I got an error when I ran the code, I got an "OLE IDispatch exception code 4096 from Microsoft Office Outlook: Could not open the item. Try again." at the 3rd line of your code below. loOutlook = CREATEOBJECT("outlook.application") loNS =...
  8. freddiekg

    How to point to a specific email in Outlook with EntryID

    Dear all, I have a DBF that stores all the emails' fields (entryid, sendername...etc.). The VFP app that I build so far can display those fields in a grid and also let the user query the results by certain criteria (e.g. sendername, receivedtime...etc.) Now, I like to add a new feature for...
  9. freddiekg

    Multiple lines field from Oracle 10g

    Dear all, I cannot append properly a XLS or CSV files into DBF that created from a Oracle 10g database. The problem is one of the field has multi-line information like the following. The field type is Varchar2(160). 1-10-60/3,"SURYODAYA",BEGUMPET, HYDERABAD-500 016, A.P.,INDIA The single...
  10. freddiekg

    Is it possible to disable printing while Preview VFP report?

    Dear all, I like to control the printing of the hardcopy reports. All users are allow to preview the reports but only certain users that have higher security access can actually preview and print the reports. Is this possible? Thanks in advance. Freddie
  11. freddiekg

    How to open Outlook with specific .PST and folder

    Dear all, I like to create a button in a form that will open a Outlook application with a specific outlook .PST file (e.g. c:\test\testoutlook.pst) and also default to a specific folder (e.g. John Doe) that is under the "Personal Folders". Is that possible? Thanks for your help in advance. Freddie
  12. freddiekg

    How to capture the windows login id and password with VFP

    Dear JRB-Bldr, Thanks for your input. I think is better for me to create a user.dbf with password to access the VFP application. Do you know any method or existing object out there that I can use to encrypt the passwords in the DBF? Regards, Freddie
  13. freddiekg

    How to capture the windows login id and password with VFP

    Dear all, If is possible, I try to use the Windows login id and password for my application security. Is there any sample VFP module out there for this function (application security) so that I don't have to write from scratch? Thanks in advance. Regards, Freddie
  14. freddiekg

    Not enough room to print Long Memo field in a report

    Dear all, Sorry for the problems. I will be more careful next time. Thanks a lot for all the inputs. Regards, Freddie
  15. freddiekg

    Need to move emails to a alternate .pst file and etc.

    Dear JRB-Bldr, Thanks for your input. I try to do the following tasks and would like your input and help: (1) Extract outlook emails from the "Archive" folder and store the informtion in a DBF file. (Completed) (2) Recreate the output, "emails look alike" page from the stored records in...
  16. freddiekg

    Need to move emails to a alternate .pst file and etc.

    Dear all, With all your helps. I can now store all the emails information in the "Archive" folder into DBF using the outlook.application object. Those archived emails will be deleted or moved to a remote server. My question is is it possible to write a VFP program automatically move those...
  17. freddiekg

    Not enough room to print Long Memo field in a report

    Dear all, With your helps and inputs, now, I can store all the emails information in the "Archive" folders into DBF. Those archived emails will be deleted or moved to a remote server. My question is is it possible to write a VFP program automatically move those archived email to a different...
  18. freddiekg

    How to extract Outlook email information from a specific Inbox?

    Dear all, I was able to extract the Outlook email information into a DBF from the Outlook "Archive" folder, and also able to reproduce the 'email' look alike output without the original formating attributes. It will be cool if I can reproduce the email just like the originals. Is it possible...
  19. freddiekg

    Need suggestions on VPN

    Dear all, I have a project that use Visual FoxPro application as front-end client and the backend database is FoxPro's DBC and DBF. The requirement is the database will be stored at a remote file server (in other country) that loaded with Window Server 2008. We will have full access of the...
  20. freddiekg

    Not enough room to print Long Memo field in a report

    Dear everyone, I have a memo field that has various length, it could be just one line or as long as 500 lines of information that should print out as a multiple pages report. Currently, I put the memo field at the "Detail" band and it cannot print all the information for the long memo. How...

Part and Inventory Search

Back
Top