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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by StefanFoerner

  1. StefanFoerner

    VFP to doesn't launch Ms Word's mailmerge

    Hi, what version is the Word app installed? 32 Bit? 64 Bit? a VFP-App is 32 Bit and can only launch a 32 Bit Word app Regards, Stefan
  2. StefanFoerner

    GETWORDCOUNT () IN VFP 6.0 ?

    Get Computer Name using WMI: FUNCTION wmi_GetComputerName() LOCAL wmiObj LOCAL compsObj LOCAL compObj LOCAL compName compName = "" wmiObj = GETOBJECT( "winmgmts://./root/cimv2" ) compsObj = wmiObj.ExecQuery( "Select * from Win32_ComputerSystem" )...
  3. StefanFoerner

    Windows Fluent Design: Blur the Window Background of Your VFP Forms (Windows 10 / 11)

    Hi everyone, Push Your VFP App to the next Level: Blur / Acrylic Blur - the VFP developer can use this free DLL WindowComposition.dll to blur every window background under Windows 10 and 11 !!! Just like e.g. the left side of the Setting Windows or the Taskbar of Windows 10 / 11 !!! The DLL...
  4. StefanFoerner

    Transparency: Make the Window Background of Your VFP Forms transparent (Windows XP ... 10 / 11)

    Hi Mike, I assume Chriss is right in everything he wrote if you set Desktop = .T., VFP makes the window internally a top level window - not shown in the Taskbar that's why your code now also works with Windows 7 I believe it even works with Windows 2000, XP and Vista ... Regards, Stefan
  5. StefanFoerner

    Transparency: Make the Window Background of Your VFP Forms transparent (Windows XP ... 10 / 11)

    Hi Mike, ok, sounds absolutely amazing :-) Regards, Stefan
  6. StefanFoerner

    Transparency: Make the Window Background of Your VFP Forms transparent (Windows XP ... 10 / 11)

    Hi Chriss, for me IsTopLevelWindow( hWnd ) always returns 1 = .T. any combinations of ShowWindow = 0, 1, 2 and Destop = .F., .T. => always 1 = .T. ????????? Regards, Stefan
  7. StefanFoerner

    Transparency: Make the Window Background of Your VFP Forms transparent (Windows XP ... 10 / 11)

    Hi Mike, please remember to check the setting Desktop = .T. Regards, Stefan
  8. StefanFoerner

    Transparency: Make the Window Background of Your VFP Forms transparent (Windows XP ... 10 / 11)

    Hi Chriss, hi Mike, - Addendum: when ShowWindow = 0 or ShowWindow = 1, You must set Desktop = .T. Regards, Stefan
  9. StefanFoerner

    Transparency: Make the Window Background of Your VFP Forms transparent (Windows XP ... 10 / 11)

    Hi Chriss, thankx for hints and the links! My post still has some new information: - how to make the transparent background clickable - how to make the transparent background clickable through - how Visual FoxPro renders controls to the background Just tested my Form with transparent...
  10. StefanFoerner

    Transparency: Make the Window Background of Your VFP Forms transparent (Windows XP ... 10 / 11)

    Hi Mike, nice function :-) SetLayeredWindowAttributes: https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setlayeredwindowattributes Windows 8: The WS_EX_LAYERED style is supported for top-level windows and child windows. Previous Windows versions support WS_EX_LAYERED...
  11. StefanFoerner

    Transparency: Make the Window Background of Your VFP Forms transparent (Windows XP ... 10 / 11)

    Hi everyone, how it works: 1) set the Backcolor of Your Form to colorKey 2) make Your Form a Layered Window 3) set the colorKey of this Layered Window: this makes the Background transparent :-) #DEFINE GWL_EXSTYLE -20 #DEFINE WS_EX_LAYERED 0x00080000 #DEFINE LWA_COLORKEY 0x1 FUNCTION...
  12. StefanFoerner

    ProgressTaskbar: Show Your own ProgressBar in the Windows Taskbar (Windows 7 / 8 / 8.1 / 10 / 11)

    Hi Chriss, WOW! Thankx for this information :-) Regards, Stefan
  13. StefanFoerner

    ProgressTaskbar: Show Your own ProgressBar in the Windows Taskbar (Windows 7 / 8 / 8.1 / 10 / 11)

    Hi Chris, please try: DECLARE INTEGER SetProgressTaskbar IN PROGRESSTASKBAR.DLL; LONG hWnd,; && <= LONG !!! INTEGER valueVal,; INTEGER maxVal,; INTEGER stateVal VFP Help: INTEGER 32-bit integer LONG 32-bit long integer - I really don't know what should be the difference between...
  14. StefanFoerner

    ProgressTaskbar: Show Your own ProgressBar in the Windows Taskbar (Windows 7 / 8 / 8.1 / 10 / 11)

    Thankx for Your feedback I hope everyone has fun with this feature :-) Regards, Stefan I have started developing with Visual FoxPro in 1997 under and for all Windows versions: Windows 95 Windows 98 Windows 2000 Windows Me Windows XP Windows Vista Windows 7 Windows 8 Windows 8.1 Windows 10...
  15. StefanFoerner

    I have a grid control on m0y form.

    Hi Ravindra Patil, please put the following code into the BeforeRowColChange event of Your grid: LPARAMETERS nColIndex WITH THIS IF nColIndex = .ColumnCount .ActivateCell( .ActiveRow + 1, 1 ) ENDIF ENDWITH Regards, Stefan

Part and Inventory Search

Back
Top