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: *

  1. gguidarelli

    How to: Store a variable in a memo field

    Hi Lee, Only a slight variation of what you have will work. For example, try this test: transact = "123456" daterecevd = DATE() test=["<HTML> ; <H2>Order information</H2> ; <BODY>Regarding your order Ref: <B>"+ ; TRIM(transact)+"</B> which was received by us on <B> ...
  2. gguidarelli

    Error 1958 w/ object assisted repo form + no printer

    Hi Oakgrove, Have you been able to resolve this? I guess I'm feeling bad that no one's replied to your question yet. :( Maybe it's cuz not many have used the new object-assisted reporting in VFP9. Actually, we don't even have VFP9 yet. So, despite risking complete and utter embarrassment by...
  3. gguidarelli

    default print path when creating a PDF file through VB

    Hi Nikki, I know your last post is a few months old. Just in case you see this message, could I take a look at the code you mentioned? (&quot;I've also got a tool set up in Excel which creates pdfs automatically (i.e. bypassing the dialog box) from reports created in Excel. If you'd like a...
  4. gguidarelli

    how much disk space is enough?

    Thanks a lot guys for taking the time to reply. Found something on MS website. Though it says it applies to VFP3, I can only assume it's still applicable to VFP7: http://support.microsoft.com/default.aspx?scid=kb;en-us;136765 It says, regarding sorts done within an SQL: &quot;temporary files...
  5. gguidarelli

    how much disk space is enough?

    In earlier versions of Foxpro, I remember the documentation said something like this: &quot;to be safe, the amount of free disk space you'll need for temp tables created during SQL queries is about 2 to 3 times the total amount of disk space your database takes up.&quot; Assuming I remembered...
  6. gguidarelli

    Creating a Chart/Graph Front-End

    Hi. One of our developers started working on a VB form that lets users pick the graph type, which fields to include, etc. Then when they click the <Show me the graph> button, all the properties are set. BUT, we're having problems trying to handle all the different graph types and the many...
  7. gguidarelli

    VPF6 and foreign language

    Gippo, Since you mentioned Service Pack 4, you probably already know about this: http://gethelp.devx.com/techtips/vfox_pro/10min/10min0700.asp This site specifically mentions problems fixed with the Hebrew localized version in SP4. But, VFP 6.0 (Visual Studio) has a Service Pack 5. Here is...
  8. gguidarelli

    How to change table inside DBC

    Below is the resolution I used (well, pretty much. a lot of error checking code was removed). Many thanks to Dave S (DSummZZZZ) for the basic premise: PROCEDURE fixblksize PARAMETER p_dbf l_saveblock = SET(&quot;BLOCKSIZE&quot;) SET BLOCKSIZE TO 0 l_savesele = SELECT() IF NOT USED(p_dbf)...
  9. gguidarelli

    How to change table inside DBC

    Dave, Ohhhhhh.... what I had tried first was including the indexes in the copy, but it didn't like that because the indexes were built with the long names. So, I'll 1) save index info, 2) copy without indexes, 3) do as you said (close/rename), then 4) rebuild the indexes. I'll let you know...
  10. gguidarelli

    How to change table inside DBC

    (ugh...) Thanks very much for the replies. I must do this in code since the program has to be run at client sites. I inherited this app from others who are long gone, so was hoping to write code that would be able to handle the things I don't know. I mean... even though I may not know...
  11. gguidarelli

    How to change table inside DBC

    Sorry in advance if this was answered elsewhere, but I couldn't find anything like this... I have a DBC with some tables in it. Some of these tables have memo fields. I just ran into a problem with the FPT file sizes becoming HUGE. Turns out the blocksize was set to 64 (the default), and...

Part and Inventory Search

Back
Top