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 SkipVought 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: jfherring
  • Order by date
  1. jfherring

    Convert Form file to Text

    Here's one: http://www.universalthread.com/wconnect/wc.dll?FournierTransformation~2,54,Forum=5,28,426 John
  2. jfherring

    How to launch a Web Browser from VFP

    You also need to release it when you are done. You can use the following, which I believe works for whatever you default browser is (IE, Netscape, whatever) I think. Anyway, here is the code: oShell = CREATEOBJECT( 'WScript.Shell' ) oShell.Run( "http://www.tek-tips.com" ) oShell =...
  3. jfherring

    COM Server prevents application window from coming to front!

    Jon, There is an example on the UT that supposedly works, you could also try SetActiveWindow(), look it up in the API. Good Luck John Herring
  4. jfherring

    Using OLE to Save an Excel Workbook(sheet) as different type

    For Excel2000, use -4158 for a tab delimited text file. **oExcel.ActiveSheet.SaveAs("C:\myfile.txt", -4158) one way to figure out what the constants are is to record a macro in Excel, do what you want to do, then look at the macro in the VBA editor. If you step into it ('f8'), when...
  5. jfherring

    CREATING EXCEL CHATS

    Jonscott8, Thanks for the info. I did find a .h file with excel constants defined in it, which I #INCLUDE 'd in my prg and that did the trick. Need a copy? John
  6. jfherring

    CREATING EXCEL CHATS

    Just wondering if you have a header file, or where I can find what the VBA Excel constants are defined as. For example, I am trying o do the same thing, except with a pie chart. The line of code: objExcel.ActiveChart.ChartType = xlColumnClustered does not work, xlColumnClustered is not...
  7. jfherring

    Wide reports

    somewhere on your system (probably C:\Program Files\Microsoft Visual Studio\Vfp98\Filespec) there are some examples of what I think you want to do, i.e. there are 2 reports, 60frx1.frx and 60frx2.frx. you maight want to run those and see if they are a good example for you, then check out the...
  8. jfherring

    Exporting Visual Reports

    yeah, check out www.amyuni.com, I think they have some info on it. Or if you got the money to spend, just buy the full version of Acrobat, then you can just choose acrobat as your printer and it will print to PDF. Good Luck.
  9. jfherring

    Suggestions for a good instruction book on 6.0

    There is also "The Hacker's Guide", that is a good one, I think it is still available at http://www.hentzenwerke.com. By the way, LOVE the handle ('93 YJ)
  10. jfherring

    Copy Of GenRepoX

    www.universalthread.com, in the files section, under report utilities
  11. jfherring

    HELP! I can't run my report over the network!

    actually, I'm pretty sure you can delete everything in that field if you are not sure what you are looking at. Of course, if you have it set up to print landscape instead of portrait, or any other non-default print settings, you will probably want to retain those. Good luck!
  12. jfherring

    How To Max Main Window

    no problem! good luck with the project!
  13. jfherring

    How To Max Main Window

    sorry for the post, had to register myself and log back on as a programmer :)
  14. jfherring

    HELP! I can't run my report over the network!

    sorry, had to register myself on this service and come back on! :)
  15. jfherring

    HELP! I can't run my report over the network!

    open the report as a table (i.e. "use myreport.frx) in the first record, there is a memo field called "expr". you need to delete the contents of the memo field, it holds all of your printer specific information. good luck!
  16. jfherring

    How To Max Main Window

    Use this code in your main program: ZOOM WINDOW SCREEN MAX

Part and Inventory Search

Back
Top