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. atlopes

    append from tab delimited - intersting effect (or bug)

    Yes, that would be a ValueSeparator, defaulting to ",".
  2. atlopes

    append from tab delimited - intersting effect (or bug)

    Thank you for pointing that out, Chris. Setting the CSVProcessor ValueDelimiter property to an empty string will treat "X"Y as a single value. The "generally accepted" practice (something that will be open to discussion, of course) to insert double quotes into "-delimited values is to duplicate...
  3. atlopes

    append from tab delimited - intersting effect (or bug)

    This is the result of the import of Chris' sample by the CSVProcessor class (the contents of Col_1 is messageboxed because the browse window represents it as a single line):
  4. atlopes

    Plotting position of text in an image in visual foxpro

    Ravi, You can use a shape to highlight any form section by working with its DrawMode property. The following demo will get you started. The coordinates of the various fields are set over the original image, but the image itself can be resized. No error handling, of course. That will be up to...
  5. atlopes

    Naming Convention of Object

    Kyle, How is loObj2 created? Is the fields object a collection? Can it be iterated, or can its members be addressed individually? For instance, loObj2.fields(0) or loObj2.fields.item(0) (or 1, if one-based), instead of using the field name? Or as a reference in a FOR EACH loop, as in FOR EACH...
  6. atlopes

    FGETS() after reading a file line, is inserting a blank character after each valid character.

    Jose, The text file is in UNICODE. If possible, FILETOSTR() the file and STRCONV() afterwards. If you must use FGETS(), you'll have to deal with the fact that the CR+LF characters marking the end of a line are also in UNICODE, taking four bytes instead of the two bytes that FGETS() expects.
  7. atlopes

    Export Foxpro 9 DBF to Dbase 5 File

    The following code will produce 0x03 files: CREATE CURSOR tmp (pk N(5), abc c(10)) INSERT INTO tmp VALUES (1, 'www') INSERT INTO tmp VALUES (2, 'xyz') COPY TO test-foxplus.dbf TYPE FOXPLUS COPY TO test-fox2.dbf TYPE FOX2 MESSAGEBOX(CAST(LEFT(FILETOSTR(GETFILE("dbf")), 1) AS W)) Adding a memo...
  8. atlopes

    Export Foxpro 9 DBF to Dbase 5 File

    GBCPastor, Run the following command, select one of the dBase 5 files your client uses, and share the result. MESSAGEBOX(CAST(LEFT(FILETOSTR(GETFILE("dbf")), 1) AS W))
  9. atlopes

    WorkbookXLSX R30

    GBCPastor, In the Init method, you have: TRY this.oXDOM = CREATEOBJECT('MSXML2.DOMDocument') CATCH TO loException * this.oXDOM = .NULL. this.oXDOM.preserveWhiteSpace = .T. &&& ADDED by SK 082924 ENDTRY It must be: TRY...
  10. atlopes

    WorkbookXLSX R30

    Can you attach your patched version of Greg's library?
  11. atlopes

    WorkbookXLSX R30

    Put the class in scope by running the following: SET CLASSLIB TO vfpxworkbookxlsx.vcx ADDITIVE Or instantiate the class using NEWOBJECT() instead: Excel = NEWOBJECT("VFPxWorkbookXLSX", "vfpxworkbookxlsx.vcx")
  12. atlopes

    WorkbookXLSX R30

    GBCPastor (and Greg), The problem comes from how the XML DOM treats spaces in text nodes. First of all, apply the patches Greg mentioned in the thread. Then, in the method Init of the VFPxWorkbookXLSX class, add a line #39 with the following contents: this.oXDOM.preserveWhiteSpace = .T...
  13. atlopes

    Strip leading characters from a string

    David, You can use LTRIM() with distinct trim characters and even strings. So, simply ? LTRIM("FA144174000", 1, "FA", "0") ? LTRIM("FA007074000", 1, "FA", "0")
  14. atlopes

    The new look....

    Frederico, Those will be the Watched Forums. I changed my Tek-Tips bookmark to https://www.tek-tips.com/watched/forums, and now my entry point in Tek-Tips is similar to what I was used to in the previous interface/system.
  15. atlopes

    curious syntax-error (problem solved)

    Chris, The VFP compiler only replaces whole defined words in [] delimited strings or regular code statements (I couldn't figure out if you were stating this or otherwise). CLEAR #DEFINE SEPCHAR - LOCAL TestDummy AS Dummy m.TestDummy = CREATEOBJECT("Dummy") ? m.TestDummy.SepCharacter ...
  16. atlopes

    curious syntax-error (problem solved)

    Most probably, SepChar is being #DEFINEd somewhere in your application. You can check this by issuing #UNDEFINE SEPCHAR just before the statement that is raising the error.
  17. atlopes

    Report Form print sizing problem

    Chris, As long as the executable declares its DPI-Awareness, the standard VFP9 report engine produces a correct output. This can be demonstrated by the code posted in the https://www.tek-tips.com/threads/report-behavior-when-sending-to-pdf.1798781/post-7453555']thread [/URL]I mentioned above.
  18. atlopes

    Report Form print sizing problem

    There are a few discussions on the issue here at TekTips and elsewhere. You may start here: https://www.tek-tips.com/viewthread.cfm?qid=1798781
  19. atlopes

    Report Form print sizing problem

    TinyNinja, Is the Windows text scale setting higher than 100%? If so, try setting it to 100% and rerunning the report. If the report is okay, you'll have to signal your application as DPI-Aware.
  20. atlopes

    Control Date/Time

    1962dez, A different question, a different thread, please. But, in anticipation of your new thread, when you say that the website is "time synchronized to (something)", do you mean it's in a different time zone?

Part and Inventory Search

Back
Top