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

    Hack LBX

    The user needs to change the left margin at run time, I think I have to change the .LBX progammaticaly. Please anyone can tell me the meaning of the fields in .LBX ?
  2. MarvinR

    MSMAPI license error at runtime

    loSession = CREATEOBJECT("MSMapi.MapiSession") loMessage = CREATEOBJECT("MSMapi.MapiMessages") ... I used the above code in my application and make it a EXE, on the user's machine (WinMe and 2K Server) I added the file MsMapi32.ocx and registered it with Regsvr32, but I still got the error...
  3. MarvinR

    Direct USE vs. Map drive

    Please tell me which way is better to access a set of table in another PC: A. Use the table directly: USE \\PC-Main\Invoice\SalesInvoice.dbf SHARED or B. Map a network drive of "\\PC-Main\Invoice" than use that dbf. Thanks.
  4. MarvinR

    Picture in report

    In order not to hard-code a logo on a report I use: - a picture control in report, which the field "Picture from file" is cLogoName - cLogoName = 'ABC.bmp' It worked fine when I tested it in interactive mode, but it showed an "Invalid path or file name" error after...
  5. MarvinR

    Alias Name in Property

    How can I access a field in a DBF when the alias name is stored in a object's property ? For exemple: oo.aliasname = 'INVOICE_2001' I want to access the CUST_ID of this DBF, but obviously I can't use oo.aliasname.cust_id What way I can use so I don't need to do too much "&&quot...
  6. MarvinR

    Generic Printer Driver

    Under Window 2000/XP there are a driver for "Generic Printer" but I cannot find the same thing in Window Me, someone can tell me how to find one ?
  7. MarvinR

    Generic Printer Driver

    My Window ME does not come with a Generic Printer Driver and I found nothing on MS support site, any idea where I can find one ?
  8. MarvinR

    Path to "Desktop"

    I want to export a file to Desktop, but how can I know the exact path ?
  9. MarvinR

    Number of line each page in Report form

    Is there a way to control the number of detail line each page in a report form ? Now I change the size of footer and header to do so, but when I print it to WinFax, the page in WinFax takes more lines than printing on real paper, even I set the same paper size both in WinFax and report form.
  10. MarvinR

    Passing and Receiving Array

    The following programs work fine in command window, but it makes error when complie; the complier doesn't know VV is an array. Please tell me what's wrong. *-------------------- AA.prg --------* DIMENSION GG(2,3) GG(1,1) = 'X' GG(2,3) = 'Y' =BB(@GG) *-------------------- BB.prg --------*...
  11. MarvinR

    WinFax SDK : Two Reports in One Fax

    Is it possible to include two defferent reports (using REPORT FROM TO PRINTER) to one single fax in WinFax SDK ? I tried every way but still can't figure it out.
  12. MarvinR

    WinFax SDK

    When I run this code I only got a WinFax Pro SEND screen with preview of the report but without any Telephone No or Company name on it. And there are nothing in the OutBox. I think the report generated by REPORT FORM can't be processed by oWinFax even I used SetPrintFromApp(1). I use VFP7...
  13. MarvinR

    Easy way to zip a file

    In Window I can compress a file using my mouse to select that file than right click, than SEND TO, than COMPRESS FOLDER. How can I do the same thing using VFP7, without any help of external software like WinZip ? Any idea ?
  14. MarvinR

    Browse in Top-level form

    I call a simple browse command from a top-level form's menu (.MPR) and the browse window shows correctly over the top-level form, fine; but when this menu DO a form and then this form's method call a browse command, the browse window is showed on the foxpro system screen, not over the calling...

Part and Inventory Search

Back
Top