|
|
-
Yesterday I bought a new jacket, who cares? To me....
It seems good, isn't it?, look it closer!.
Yeahhh!, nothing runs like a Fox!! :-), and The Fox Is Back!
The RetroFox.com
----------------------- Espartaco Palma SysOp www.PortalFox.com México, D.F
|
-
-
-
-
-
-
This is an automatic ticketing maching ...
Ok, Press CTRL+ALT+SPR... But, How??, this machine as any other automatic machine doesn't have a public keyboard!!
It was taken at Puebla, Mexico, in a bus station.
|
-
Some people are desagree with the way (or no-way) to know what or how is the licence of the product to buy, it's typical that you only know what's the licence when you already bought the product, so, it's a little bit more difficult (in Latinamerica is wrost) to return it if you are not agree.
That's why Microsft is offering the EULA as a freely download, so you can read it before buy it (and if you want it, send to your lawyer(s)), now you can download it in the following link:
--- Microsoft Visual FoxPro EULA (Download .ZIP file)---
Versión en español en el siguiente:
--- Microsoft VFP EULA --- http://weblogs.golemproject.com/esparta/posts/4600.aspx
---------------------------- Espartaco Palma SysOp www.PortalFox.com México D.F.
|
-
Today I've received the MSDN Flash Latinamerican edition, and I look the promotion/publicity to Visual FoxPro:

So, Microsoft Latinamerican continue working to promote the tool I (we?) use to develop our applications, some times we forgot sooo quickly ;-)
Versión en español en el siguiente:
--- Microsoft sigue promoviendo VFP en Latinoamérica --- http://weblogs.golemproject.com/esparta/posts/4486.aspx
---------------------------- Espartaco Palma SysOp www.PortalFox.com México D.F
|
-
-
Since Abril 11 I've adding my bookmarks into del.icio.us community, at this time I have a little bit more than 420 links, those at differents themes, the most importants are about VFP and .NET issues.
The past week I found (via del.icio.us main page) an application which give us an improve del.icio.us interface, it used AJAX technology. The application is called del.icio.us Director, I will describe in one word: AMAZING:
The new interface is just great!, is a kind of DHTML with steroids!, I have to mention that the differents sections are reloaded without reload the whole page, just the needed.
Version en español en Golemproject:
--- Del.icio.us Director, AJAX en acción --- http://weblogs.golemproject.com/esparta/posts/4192.aspx
---------------------------- Espartaco Palma SysOp www.PortalFox.com México D.F
|
-
Microsoft has complete the process to bought an antivirus company (which I never heard about it), and has published oficially at some of their websites:
--- Microsoft Completes Acquisition of Enterprise Security Provider Sybari Software ---http://www.microsoft.com/presspass/press/2005/jun05/06-21SybariCompletePR.mspx
The Sybari's products are focus to the security in messaging services, it will apply inmediatly to Exchange 2003, this will help to avoid the problems with viruses, worms and spam.
Via Channel 9
|
-
Microsoft has release the update for VFPCOM utility which complains with VFP9, if you are still using it try this new release:
--- VFPCOM Utility for VFP9 ---
From MSDN Downloads...
Overview Extend Visual FoxPro interoperability with other COM and ADO components with the VFPCOM Utility. This utility is a COM server that provides additional functionality when you use ADO and access COM events with your Visual FoxPro 9.0 applications. For installation instructions and more details on the issues that have been addressed, consult the VFPCOM Utility readme file (vfpcom.htm)
---------------------------- Espartaco Palma SysOp www.PortalFox.com México D.F.
|
-
Checking the MSDN Just Published RSS ( | http://msdn.microsoft.com/rss.xml | ) , I was shocking about what was I seen!!

Test for RSS 2, By krash, the Office Solution Development. I didn't know about MS do this kind of "test".
---------------------------- Espartaco Palma SysOp www.PortalFox.com México D.F.
|
-
Following the recomedations found in the MSKB Article: How to check for MDAC Version? "MDAC Version: " + NVL(GetMDACVersion(),"Not installed")
FUNCTION GetMDACVersion
LOCAL lcRetValue
lcRetValue = .NULL.
#DEFINE HKEY_LOCAL_MACHINE -2147483646
TRY
oReg = NEWOBJECT("registry",HOME(1)+"ffc\registry.vcx")
lcKey = "Software\Microsoft\DataAccess"
IF oReg.OpenKey(lcKey,HKEY_LOCAL_MACHINE,.F.) = 0
lcSubKey = "Version" &&Or "FullInstallVer"
IF oReg.GetKeyValue(lcSubKey,@lcRetValue) # 0
lcRetValue = .NULL.
ENDIF
oReg.CloseKey()
ENDIF
CATCH TO oError
lcRetValue = .NULL.
FINALLY
RELEASE oReg
ENDTRY
RETURN lcRetValue
ENDFUNC
This code was a reply in a thread at the microsoft newsgroup of visual foxpro (spanish edition), it was also published at PortalFox.com, Luis María Guayán incorpore another solutions based at API calls (mine also has), the difference with my implementation was in the fact it was based on the use of OOP paradigm and using the Fox Foundation Classes.
--- Detectar si MDAC está instalado y qué versión (spanish) --- http://www.portalfox.com/article.php?sid=1631
---------------------------- Espartaco Palma SysOp www.PortalFox.com México D.F.
|
|
|