Search found 16 matches: spi

Return to advanced search

Re: Problem with Vtaskbar of Paco

perhaps I resolved it there is an error on font if I set the font run ok sample : oVmenu:oFonttitle:= oFontsample if I not set the font on object ...the class call a function if ::oFontTitle == nil      hFont := CreaFCapt()      lDestroyFont := .t.   else      hFont := ::oFontTitle:hFont   e...
by Silvio.Falconi
Mon Jan 25, 2016 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Vtaskbar of Paco
Replies: 1
Views: 453

Re: FindWindow in a server

If I open exe in this way it works
FOPEN( "cic_spi.exe" , FO_READWRITE )

in this way not
FOPEN( "cic_spi.exe" , FO_EXCLUSIVE )

because I can open exe even if it is already running

Best regards
Marco
by MarcoBoschi
Mon Feb 09, 2015 12:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FindWindow in a server
Replies: 9
Views: 1201

Help needed

Hi all, srv_spi.exe is a software written by me in xharbour/fivewin. It runs in one of my customer's windows server. http://www.marcoboschi.it/public/visual_studio.jpg This dialog sometimes appears and a web application written by other developers running on the same server stops wor...
by MarcoBoschi
Tue Oct 08, 2013 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help needed
Replies: 7
Views: 1429

Re: Re:

Enrico, http://www.codeproject.com/KB/vista/VGGlassIntro/dlgclocklogo.png I think it can be done this way using c++    if ( !IsThemeNull() )        GetThemeSysFont ( TMT_MSGBOXFONT, &lf );    else        {        NONCLIENTMETRICS ncm = { sizeof&#...
by Bayron
Tue Feb 01, 2011 11:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: height of taskbar
Replies: 11
Views: 3280

Re: High contrast screen for non blind user - Antonio ?

Hi all, is there any C guru able to convert this VB6 call SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, ByVal lpvParam As Any, ByVal fuWinIni As Long) As Long into xharbour code ? I need to know the SPI_GETHIGHCONTRA...
by Marco Turco
Tue Sep 22, 2009 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: High contrast screen for non blind user - Antonio ?
Replies: 9
Views: 2714

Re: High contrast screen for non blind user - Antonio ?

If you need your app to automatically check for any change in window display setting and behave accordingly, then the code given in the below given site may be of useful to you. http://www.vbaccelerator.com/home/vb/Tips/Detecting_Windows_Settings_Changes/article.asp VB 6 Code 'Declar...
by anserkk
Thu Sep 17, 2009 10:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: High contrast screen for non blind user - Antonio ?
Replies: 9
Views: 2714

Re: High contrast screen for non blind user - Antonio ?

Do you already have a xharbour wrapper for this dll function ? Sorry, I don't have. :( Definitely Guru's here in this wonderful forum will be able to help you out. Here's a VB.NET Code Header: Declared in Winuser.h; include Windows.h. 'API declarations Public Const HCF_HIGHCONTRASTON As Integer = 1...
by anserkk
Thu Sep 17, 2009 10:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: High contrast screen for non blind user - Antonio ?
Replies: 9
Views: 2714

Re: High contrast screen for non blind user - Antonio ?

Windows software can check for the high contrast setting by calling the SystemParametersInfo function with the SPI_GETHIGHCONTRAST value. Applications should query and support this value during initialization and when processing WM_COLORCHANGE messages. Use this structure when you call the SystemPar...
by anserkk
Thu Sep 17, 2009 9:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: High contrast screen for non blind user - Antonio ?
Replies: 9
Views: 2714

Re: OSVersion

#define SPI_GETPLATFORMNAME 260

EMG
by Enrico Maria Giordano
Thu Jul 30, 2009 2:42 pm
 
Forum: FiveWin for Pocket PC
Topic: OSVersion
Replies: 2
Views: 558

OSVersion

Hola a Todos Necesito saber si estoy correindo en WM5 o WM6. Como puedo conocer el OSVersion? Dado que lo siguiente me regresa correctamente la OEM Info: HB_FUNC(GETOEMINFO){WCHAR wszMachineName[128];SystemParametersInfo(SPI_GETOEMINFO, sizeof(wszMachineName), &w...
by Arturo Lopesoria
Tue Jul 28, 2009 11:37 pm
 
Forum: FiveWin para Pocket PC
Topic: OSVersion
Replies: 3
Views: 701

OSVersion

Hello All I need to know if application is running Under WM5 or WM6. How can we Get OSVersion? I already try this: Already running OK: HB_FUNC(GETOEMINFO){WCHAR wszMachineName[128];SystemParametersInfo(SPI_GETOEMINFO, sizeof(wszMachineName), &wszMachineName, 0...
by Arturo Lopesoria
Tue Jul 28, 2009 11:29 pm
 
Forum: FiveWin for Pocket PC
Topic: OSVersion
Replies: 2
Views: 558

Antonio, The EXE is now showing the main Appplication screen. I created an equivalent and dummy (function name and return only) for functions written in C so we could compile to create an executable. The EXE is now flashing the main window but exits immediately. The following is an error code when I...
by xhbcoder
Thu May 08, 2008 4:48 pm
 
Forum: FiveWin for CA-Clipper
Topic: Converting POS application to xHarbour + FWH
Replies: 50
Views: 15569

Me respondo a mi mismo: HB_FUNC(ISEMULATOR) { WCHAR wszMachineName[128]; SystemParametersInfo(SPI_GETOEMINFO, sizeof(wszMachineName), &wszMachineName, 0); hb_retl( strcmp( wszMachineName,L"Microsoft DeviceEmulator" ) == 0 ) ; } HB_FUNC(GETOEMINFO) { WCHAR wszMachineName[128]; SystemParametersInf...
by tsales
Mon Jan 28, 2008 12:33 pm
 
Forum: FiveWin para Pocket PC
Topic: Saber si una palicacion se ejecuta en el emulador
Replies: 2
Views: 778

Hello Antonio I have now found the solution . Now I have to set the quality of the signature . I found an old messagge send by you regarding this : " You may try to fine tune the mouse speed using SystemParametersInf() and the SPI_SETMOUSE flag. Also check mouse_event()" How it is possible to do thi...
by Maurizio
Tue Sep 05, 2006 4:43 pm
 
Forum: FiveWin for Pocket PC
Topic: Signatures
Replies: 11
Views: 3025

Randal,

You may try to fine tune the mouse speed using SystemParametersInfo() and the SPI_SETMOUSE flag. Also check mouse_event().
by Antonio Linares
Fri May 26, 2006 6:33 am
 
Forum: FiveWin for Pocket PC
Topic: Signatures
Replies: 2
Views: 1035
Next

Return to advanced search