This is an old bug, and is related to ClearType.
Pitfalls of transparent rendering of anti-aliased fonts
http://blogs.msdn.com/b/oldnewthing/archive/2006/06/14/630864.aspx
Yes, my second link was supposed to be that one, I made a mistake and pasted the first link again, but got the title right. :)
I never had to try these, just saved the links for future reference.
Carlos
Really late to this party, but these are my notes regarding this problem, for future reference:
How Autodisconnect Works in Windows NT and Windows 2000
http://support.microsoft.com/?scid=kb%3Ben-us%3B138365&x=11&y=14
Mapped Drive Connection to Network Share May Be Lost...
@Mike:
There is no typo, maybe my explanation was a bit lacking:
The whole idea is to have a VFP function and a DLL declare using exactly the same name.
When you make a call to the VFP function/DLL declare for the first time, the VFP function is called.
The VFP function declares the DLL...
There is a much simpler way to do this:
Function apiCoCreateGuid(pguid)
Declare Integer CoCreateGuid In Ole32 As apiCoCreateGuid;
String @pguid
Return apiCoCreateGuid(@m.pguid)
Endfunc
This method relies in the fact that declared DLL functions take precedence over VFP functions with the...
You should avoind using macro subst if possible:
LOCAL lcDeleted
m.lcDeleted = Set("DELETED")
Set Deleted On
*!* Do something
If m.lcDeleted = "OFF" then
Set Deleted Off
Endif
A little late, but maybe this class can help you:
http://www.ctl32.com.ar/ctl32_ftp_help.asp
Check out the following properties:
InternetAccessType
InternetProxyName
Carlos Alloatti
A little late maybe, but you could use this class:
http://www.ctl32.com.ar/ctl32_progressbar.asp
It creates a real Windows common controls progressbar, full themes compliance, and works just like the NET progress bar, you can learn how to use it by reading the NET progress bar help, or the...
Use SYS(1500):
Sys(1500, '_MED_CUT', '_MEDIT')
Sys(1500, '_MED_COPY', '_MEDIT')
Sys(1500, '_MED_PASTE', '_MEDIT')
Sys(1500, '_MED_CLEAR', '_MEDIT')
Sys(1500, '_MED_SLCTA', '_MEDIT')
Also, to enable/disable menu options, you can do a check like this:
If Pemstatus(Thisform.ActiveControl...
If you are using a Top Level Form, that form will display outside the main VFP screen in all versions of Windows.
If you want a status bar in a top level form, you may want to check out http://www.ctl32.com.ar/ctl32_statusbar.asp
Carlos Alloatti
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.