Problem with run app on Windows 10 64bit
Re: Problem with run app on Windows 10 64bit
I am tryed also change parameters for link to program, and now really I do not know, if helped this or change resolution from 1680 - 1600 and back
attached here is what I change :
attached here is what I change :
- Attachments
-
- w10prob.gif (34.82 KiB) Viewed 15861 times
Re: Problem with run app on Windows 10 64bit
YESVictorio wrote:I can confirm, that screen resolution is problem.
Jimmy, I found Screeenres.zip on Xbase newsgroup and there is screenres.dll, but this thread is from 2007 year. Is this you mean and how use it ?
Code: Select all
Procedure Main()
LOCAL nXRes := 0
LOCAL nYRes := 0
LOCAL nBits := 0
LOCAL nFreq := 0
// Get the current settings (as Joe said, it might return Zero values)
_GetDisplaySettings(NIL, @nXRes, @nYRes, @nBits, @nFreq)
Alert('Current Resolution: ' + ;
alltrim(str(nXRes)) + ' x ' + ;
alltrim(str(nYRes)) + ' with ' + ;
alltrim(str(nBits)) + ' bits for Colors, at ' + ;
alltrim(str(nFreq)) + 'Hz', {'Resolution Change Test'})
nXRes := 1600
nYRes := 900
nFreq := 60
// Set the display temporarily to 800x600 fullscreen
// using the original color and frequency settings
_ChangeDisplaySettings(nXRes, nYRes, .t., nBits, nFreq)
SLEEP(100)
* Alert('Current Resolution: ' + ;
* alltrim(str(nXRes)) + ' x ' + ;
* alltrim(str(nYRes)) + ' with ' + ;
* alltrim(str(nBits)) + ' bits for Colors, at a Frequenzy of ' + ;
* alltrim(str(nFreq)) + 'Hz', 'Resolution Change Test')
// Restore normal setting (optional, resets also at program termination)
_ChangeDisplaySettings()
return
greetings by OHR
Jimmy
Jimmy
Re: Problem with run app on Windows 10 64bit
There is a fix for this from Alaska, a new XPPUI1.DLL. Check your downloads at the Alaska site.
Best regards,
Tom
"Did I offend you?"
"No."
"Okay, give me a second chance."
Tom
"Did I offend you?"
"No."
"Okay, give me a second chance."
Re: Problem with run app on Windows 10 64bit
Jimmy, thank's, I will try, when client report me problem again.
Tom : I have not subscription for update, then I have old version Alaska Xbase++ 2.0 build 554.
at this moment I do not want pay for update.
Now I try Screenres.dll.
Tom : I have not subscription for update, then I have old version Alaska Xbase++ 2.0 build 554.
at this moment I do not want pay for update.
Now I try Screenres.dll.
Re: Problem with run app on Windows 10 64bit
Jimmy : please, can you tell me how can use screenres.dll ?
I still have error
- Function is not declared
- _CHANGEDISPLAYSETTINGS
and after it error
An exception (C0000005) occurred during DLLEntryPoint or DllMain in module
C:\ScreenRes.dll
In attach is my xpj and prg.
My PC OS is Windows 7 Pro 32 bit
I still have error
- Function is not declared
- _CHANGEDISPLAYSETTINGS
and after it error
An exception (C0000005) occurred during DLLEntryPoint or DllMain in module
C:\ScreenRes.dll
In attach is my xpj and prg.
My PC OS is Windows 7 Pro 32 bit
- Attachments
-
- scrresolution.zip
- (30.75 KiB) Downloaded 982 times
Re: Problem with run app on Windows 10 64bit
hi,
can't run you EXE while it is compile with Xbase++ v2.x so i try to recompile.
but it still does not run so i have to look deeper ... i come back when i have a Solution
can't run you EXE while it is compile with Xbase++ v2.x so i try to recompile.
but it still does not run so i have to look deeper ... i come back when i have a Solution
greetings by OHR
Jimmy
Jimmy
Re: Problem with run app on Windows 10 64bit
hi,
have found a ScreenRes.obj
here full Demo with OBJ, DLL remember : it MUST be VIO while GUI will not start !
have found a ScreenRes.obj
here full Demo with OBJ, DLL remember : it MUST be VIO while GUI will not start !
greetings by OHR
Jimmy
Jimmy
Re: Problem with run app on Windows 10 64bit
Jimmy, thank you very much,
with your screenres.obj demo now works.
without obj, if I understand I must include dll call
so now this help me to test, if this way can help with W10 problem.
I can't test it, because I have monitor only with 1680/1050
once again thanks for your time and help.
with your screenres.obj demo now works.
without obj, if I understand I must include dll call
so now this help me to test, if this way can help with W10 problem.
I can't test it, because I have monitor only with 1680/1050
once again thanks for your time and help.
Re: Problem with run app on Windows 10 64bit
is this the fix for the screen resolution ?Tom wrote:There is a fix for this from Alaska, a new XPPUI1.DLL. Check your downloads at the Alaska site.
I have problems trying to find anything on the alaska website...
Brian Wolfsohn
Retired and traveling around the country to music festivals in my RV.
OOPS.. Corona Virus, so NOT traveling right now...
http://www.breadmanrises.com
FB travel group: The Breadman Rises
Retired and traveling around the country to music festivals in my RV.
OOPS.. Corona Virus, so NOT traveling right now...
http://www.breadmanrises.com
FB travel group: The Breadman Rises
Re: Problem with run app on Windows 10 64bit
Hotfix #51 should be for PDR 6904 but you need a active Subscription to downloadbwolfsohn wrote:is this the fix for the screen resolution ?
I have problems trying to find anything on the alaska website...
greetings by OHR
Jimmy
Jimmy