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!

Search results for query: *

  • Users: EC1
  • Content: Threads
  • Order by date
  1. EC1

    VFP9 Executable problem

    Hello, I want to install an executable on a server. Server : Windows 2007 32 bit. I use my install procedure i made several years ago, just to install all the necessary Foxpro dll's, ... . When i start up my exe the system is asking for an .fxp program. Is there something that i forgot...
  2. EC1

    Excel Question

    How can i change the rowheight off all cells? (VFP7 SP1) ExcelObject = CREATEOBJECT'Excel.Application') * WITH oExcelObject .Application.Workbooks.Add .APPLICATION.DisplayAlerts = 0 .Worksheets(3).DELETE .Worksheets(2).DELETE .APPLICATION.DisplayAlerts = 1...
  3. EC1

    menu manager internal consistancy error

    hello, i am using VFP7.0 SP1. Sometimes, when the user is working with the application, the user gets the above message. I can not reproduce the error. I already rebuild the executable, regenerate the menu. Is there any help? Thanks!
  4. EC1

    EXCEL problem

    Hi, how can i loop into an existing excel file? Something like scan-endscan. thank you
  5. EC1

    Grid

    Hi all, i am creating a grid on a form. If the user clicks on the header of a column, i want to execute a procedure. What do i have to do? See syntax below. thanks With Thisform .AddObject("gridz","grid") ENDWITH * With Thisform.gridz .enabled = .t. .visible = .t...
  6. EC1

    EXCEL problem

    hi, i want to create one excel file (2000) within FOXPRO 7 oExcelObject = CREATEOBJECT('Excel.Application') . . . WITH oExcelSheet.Range("A1") .value='THIS IS A TEST' .interior.Color=RGB(192,192,192) .Font.Name = "Courier New&quot...
  7. EC1

    Adding attachment to mail

    Hi, this is the code i use to send mail from VFP. Can i add attachment to the mail? Thanks cSubject = "Mail using VFP" cAddress = "name@site.be" cBody = "Eddy : this is a mail from foxpro" DO doMail WITH cSubject,cAddress,cBody...
  8. EC1

    GRID

    Is it possible to create a grid where the height of each row can change, depending on the contents of the row? Thanks

Part and Inventory Search

Back
Top