Re: Use a character from another codepage

2010-01-26 Thread Jaime Vasquez
Hi, I don't think you can do that in Windows, but try with cpconvert: Cpconvert(1252,437,Chr(255)) Greetings Graham Trott wrote: Would like to use the block character from codepage 437 without changing codepages chr(219)=? and chr(255)= blank space VFP9 uses codepage 1252. I am not

Re: Excel ADO automation and dates.

2009-05-29 Thread Jaime Vasquez
/ HTH Jaime Vasquez. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives

Re: sql server and windows vista

2008-08-26 Thread Jaime Vasquez
Rafael Copquin wrote: thanks to all of you for your replies Rafael Hi Rafa, Sql 2000, 7.0 and 6.5 doesn't work with Vista, you need at least 2005 sp2 instead: http://www.microsoft.com/sql/howtobuy/sqlonvista.mspx Saludos Jaime Vasquez

Re: VFP and Office Automation (MS Excel specifically at this time)

2008-08-19 Thread Jaime Vasquez
. the old fox wiki: http://fox.wikis.com/wc.dll?Wiki~ExcelConstants or msdn: http://msdn.microsoft.com/en-us/library/aa221100(office.11).aspx http://msdn.microsoft.com/en-us/library/bb259478.aspx HTH Jaime Vasquez ___ Post Messages to: ProFox

Re: [NF] Net TV

2008-06-14 Thread Jaime Vasquez
is with VideoLan: http://www.videolan.org/doc/play-howto/en/play-howto-en.html http://forum.videohelp.com/topic259354.html http://www.engadget.com/2005/11/29/how-to-stream-almost-anything-using-vlc/ HTH Jaime Vasquez Guatemala, C.A. ___ Post Messages

Re: [NF] Momentum for Linux PCs

2008-04-05 Thread Jaime Vasquez
diference between the first 3 is the window manager, ubuntu uses gnome, kubuntu kde and xubuntu xfce, for older machines. http://lwn.net/Distributions/ HTH Jaime Vasquez. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com

Re: Strategies for keeping connection open to MySQL web database from VFP9 client

2008-02-05 Thread Jaime Vasquez
of the article: http://en.wikipedia.org/wiki/Connection_pool Cheers Jaime Vasquez. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman

Re: [NF] Foreign Search Engines

2007-11-17 Thread Jaime Vasquez
There are more than 100 googles: http://c.asselin.free.fr/french/googleworldwide.htm Greetings. Jaime Vasquez Guatemala C.A. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version

Re: Where Do Files Go When Sent to the Vista Windows Folder?

2007-10-31 Thread Jaime Vasquez
/ATF-Cleaner.exe Saludos Jaime Vasquez Guatemala C.A. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable

Re: Excel question

2007-08-22 Thread Jaime Vasquez
want to copy in every page. I just have 2 observations: If the recordset has the number of records you want, there's no need for the sencond parameter in copyfromrecordset method. The copy will be a bit faster if you set excel visible = .t. before copy the recordset. HTH Saludos, Jaime

Re: Excel question

2007-08-20 Thread Jaime Vasquez
, everything is done in memory. No need to deal with odd codepage conversions. ADO is the method Excel underestands better. Remember use the right tool for the job. :) HTH Saludos, Jaime Vasquez Guatemala C.A. ___ Post Messages to: ProFox@leafe.com

Re: Excel question

2007-08-20 Thread Jaime Vasquez
Excel 2007 has now a limit of 1048576 rows. HTH Saludos, Jaime Vasquez Guatemala C.A. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman

Re: Excel question

2007-08-20 Thread Jaime Vasquez
Ricardo Aráoz wrote: Jaime Vasquez wrote: Ricardo Aráoz wrote: My reports generate Excel files, if the report is too long (more than 64000 lines) I use different pages in the same file. I have two ways to do it, either I export up to say 15000 lines with a copy to command to a temporary excel

Re: Excel question

2007-08-20 Thread Jaime Vasquez
truncates cells to 256 characters? No, it's limited to the limit of the cell, 32767 characters. Only 1024 display in cell, all 32767 display in the formula bar. HTH Saludos, Jaime Vasquez Guatemala C.A. ___ Post Messages to: ProFox@leafe.com

Re: Excel question

2007-08-16 Thread Jaime Vasquez
object: loExcel = NewObject(Excel.application) loWorkBook = loexcel.Workbooks.Add loWorkSheet = loexcel.ActiveWorkbook.Worksheets.Add loExcel.visible = .T. loworksheet.range(A1).CopyFromRecordset(lors) copy data to excel HTH Saludos, Jaime Vasquez Guatemala C.A

Re: Help - cannot create word.application

2007-06-29 Thread Jaime Vasquez
policy or other security setting??? Help! See if your code or config.fp has SET OLEOBJECT OFF, if yes then turn to on, or you will don't be able to create automation objects. HTH Saludos, Jaime Vasquez Guatemala C.A. ___ Post Messages to: ProFox

Re: Numbers to words

2007-06-26 Thread Jaime Vasquez
Bryant wrote: Does anyone know where I can find coding to convert numbers to words for printing checks? http://users.aol.com/FoxProResources/zipfiles/num2word.zip Other userfull procedures: http://users.aol.com/FoxProResources/fpfp.htm HTH Saludos Jaime Vasquez Guatemala C.A

Re: Numbers to words

2007-06-26 Thread Jaime Vasquez
Bryant wrote: Does anyone know where I can find coding to convert numbers to words for printing checks? Forgot to add this: http://support.microsoft.com/kb/259663 HTH Saludos Jaime Vasquez Guatemala C.A. ___ Post Messages to: ProFox

Re: SQL question: How to sum ???

2007-06-21 Thread Jaime Vasquez
sum(case when discount0 then discount else 0 end) from table. HTH Saludos, Jaime Vasquez Guatemala C.A. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http

[OT] Re: Dell to start selling PCs at WalMart

2007-05-29 Thread Jaime Vasquez
that made clothes, they put the made in usa label, but all the work is done here. http://en.wikipedia.org/wiki/Maquiladora Saludos, Jaime Vasquez Guatemala C.A. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman

Re: SQL: Count() of DISTINCT codes???

2007-05-24 Thread Jaime Vasquez
, code 1) insert into codes values(Order 1, code 2) insert into codes values(Order 1, code 3) insert into codes values(Order 2, code 1) insert into codes values(Order 2, code 3) select code, count(code) from codes group by code HTH Jaime Vasquez

Re: VB to VFP

2007-05-22 Thread Jaime Vasquez
Sytze, no need to convert, see: http://fox.wikis.com/wc.dll?Wiki~GUIDGenerationCode~VFP HTH Jaime Vasquez. Sytze de Boer wrote: Thank you Stephen Here it is Option Compare Database Option Explicit Private Type Guid Data1 As Long Data2 As Integer Data3 As Integer Data4(7

Re: [NF]MSSQL Statement-- performance inconsistency?

2007-05-15 Thread Jaime Vasquez
oconn.open 'now call the sp and get the data into the recordset: set ors = oconn.execute(test_sp) do while not ors.eof debug.print ors.fields(0).value ors.movenext loop .. HTH Saludos Jaime Vasquez ___ Post

Re: My appalling ignorance - creating visual classes

2007-04-21 Thread Jaime Vasquez
/PrgToVcx.zip HTH Jaime Vasquez. Guatemala C.A. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http

Re: [NF] - AVI/MPG to DVD

2007-02-25 Thread Jaime Vasquez
HTH Jaime Vasquez. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech ** All postings, unless explicitly stated

Re: [NF] Linux Advantages

2007-02-25 Thread Jaime Vasquez
interface ip set address name=Local Area Connection static 192.168.0.100 255.255.255.0 192.168.0.1 1 Or netsh interface ip set address Local Area Connection dhcp Jaime Vasquez. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http

Re: newb questions about moving and renaming classes and forms

2007-02-21 Thread Jaime Vasquez
the .scx and .sct files at the same time. The same method aplies to any file in the project. HTH Jaime Vasquez. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list

Re: [NF] Mount an ISO CD image as a virtual CD/DVD drive?

2007-02-21 Thread Jaime Vasquez
Malcolm Greene wrote: Justin/Rick, The unsupported Microsoft tool is my favorite (Justin) Try Nero (Rick) Hi Malcom, If you choose Daemon Tools, look for the last clean version: 3.47 http://www.disc-tools.com/download/daemon347+md5sum HTH Jaime Vasquez

Re: [NF] Another app broken by IE7

2007-01-09 Thread Jaime Vasquez
Whil Hentzen (Pro*) wrote: I would love a screen shot of the 'never!' message. s Whil For your eyes pleasure: http://www.thedatafarm.com/blog/content/binary/wsftpnever.png Jaime Vasquez ___ Post Messages to: ProFox@leafe.com Subscription

Re: [NF] Riping from DishNetWork

2006-12-30 Thread Jaime Vasquez
://www.videohelp.com/guides HTH Jaime Vasquez ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech ** All postings, unless

Re: Polling App

2006-12-19 Thread Jaime Vasquez
solutions samples have a demo on how to do that with VFP code, look for it in New in VFP9 - Binding To Windows Message Events - File/Folder Shell Events. HTH Jaime Vasquez. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http

Re: Directory Size

2006-12-03 Thread Jaime Vasquez
Richard Kaye wrote: You could do something similar using ADIR() ADIR(aFiles,[*.*]) x=0 FOR y=1 TO ALEN(afiles,1) x=x+afiles[y,2] NEXT ?x Cool!, another option, Thank you. Jaime Vasquez. ___ Post Messages to: ProFox@leafe.com

Re: Directory Size

2006-12-02 Thread Jaime Vasquez
://vbnet.mvps.org/index.html?code/fileapi/getdirectorysize.htm another alternative could be to use DOS: !Dir c:\windows c:\tmp\windir.txt nI = Alines(aFolderSize, Filetostr(c:\tmp\windir.txt)) ?Folder Size: + Substr(aFolderSize(nI-1),Rat( , aFolderSize(nI - 1), 2)) HTH Saludos Jaime Vasquez

Re: Directory Size

2006-12-01 Thread Jaime Vasquez
(Scripting.FileSystemObject) oDir = ofs.GetFolder(C:\windows) ?odir.Size HTH Jaime Vasquez. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman

Re: Visual Studio 2005 Professional Edition with MSDN ProfessionalSubscription

2006-11-13 Thread Jaime Vasquez
mrgmhale wrote: I can also download previous versions of apps and O/S (not Office 2000 due to the Great Java Debacle). What was the debate with Java?, I'm still using Office 2000, without any problem. Thank You. Saludos, Jaime Vasquez Guatemala, C.A

Re: [NF] MS Office Outlook 2003 Email Sent by VFP Requires Approval ... Rats

2006-11-13 Thread Jaime Vasquez
Saludos, Jaime Vasquez Guatemala C.A. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech ** All postings, unless

Re: [OT] 1 in 5 children can't find the UK on a map.

2006-10-28 Thread Jaime Vasquez
Paul Hill wrote: http://video.google.com/videoplay?docid=-4064401188831660771 Wow! and they say that the Latin Americans are ignorant Jaime Vasquez Guatemala C.A. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http

Re: Setting Default Printer

2006-10-17 Thread Jaime Vasquez
SetDefaultPrinter IN winspool.drv STRING SetDefaultPrinter(GetPrinter()) HTH Saludos, Jaime Vasquez Guatemala, C.A. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list

Re: [NF] How to save GroupWise messages?

2006-07-12 Thread Jaime Vasquez
anything about that in the groupwise documentation. Hi Gérard, it's an OE feature, someone enabled it because it's not active by default. In OE go to Tools - Accounts - Properties - Advanced, look for Break apart messages larger than, uncheck it, accept changes. HTH Saludos, Jaime

Re: How To Know If an Internet Connection is Active

2006-06-28 Thread Jaime Vasquez
Jaime Vasquez Guatemala, C.A. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech ** All postings, unless explicitly stated

Re: [NF] How to disable Windows Genuine Advantage from phoning the mothership.

2006-06-22 Thread Jaime Vasquez
Alan Bourke wrote: http://www.theregister.co.uk/2006/06/22/wga_remove/ Oh dear .. it appears the that the above article links to is down for maintenance. After a call from MS lawyers, I'll warrant. Fifteen ways to remove WGA http://tinyurl.com/nfrgw Jaime Vasquez

Re: tab order question

2006-06-22 Thread Jaime Vasquez
Ken McGinnis wrote: Yes, that is exactly what we need. I wonder how hard that would be to create? It's already in the product: Tools - Options - Forms - Tab Ordering, Choose 'By List' Accept changes, next: View - Tab Order. HTH Jaime Vasquez Guatemala, C.A