MikeH Well-Known Member Licensed User Longtime User Oct 11, 2017 #1 I have these requesters in a little app I use in both Win7 and WinXP. As you can see, in WinXP they display correctly, but in Win7 they are too tall. Does anyone know whats going wrong? WinXP: Win7: Attachments ScreenXP.png 55.5 KB · Views: 318 Screen7.PNG 25.1 KB · Views: 324
I have these requesters in a little app I use in both Win7 and WinXP. As you can see, in WinXP they display correctly, but in Win7 they are too tall. Does anyone know whats going wrong? WinXP: Win7:
Erel B4X founder Staff member Licensed User Longtime User Oct 11, 2017 #2 How are you creating these dialogs? Upvote 0
MikeH Well-Known Member Licensed User Longtime User Oct 11, 2017 #3 Erel said: How are you creating these dialogs? Click to expand... B4X: Dim res As Int = fx.InputList(MainForm, items, "", "Choose IP (192.168.0.?)", 0) Upvote 0
Erel said: How are you creating these dialogs? Click to expand... B4X: Dim res As Int = fx.InputList(MainForm, items, "", "Choose IP (192.168.0.?)", 0)
Erel B4X founder Staff member Licensed User Longtime User Oct 11, 2017 #4 This is how it looks here in Windows 7: B4X: Dim res As Int = fx.InputList(MainForm, Array(1, 2, 3, 4), "", "Choose IP (192.168.0.?)", 0) Are you testing it on a real computer? Upvote 0
This is how it looks here in Windows 7: B4X: Dim res As Int = fx.InputList(MainForm, Array(1, 2, 3, 4), "", "Choose IP (192.168.0.?)", 0) Are you testing it on a real computer?
MikeH Well-Known Member Licensed User Longtime User Oct 11, 2017 #5 Erel said: Are you testing it on a real computer? Click to expand... Yes, a real computer. Im suspecting Java, no reason just a hunch. I'll try other WIn7 computers. Upvote 0
Erel said: Are you testing it on a real computer? Click to expand... Yes, a real computer. Im suspecting Java, no reason just a hunch. I'll try other WIn7 computers.
Erel B4X founder Staff member Licensed User Longtime User Oct 11, 2017 #6 Might be related to the set DPI. Upvote 0
MikeH Well-Known Member Licensed User Longtime User Oct 11, 2017 #7 Erel said: Might be related to the set DPI. Click to expand... Wouldn't that also affect the width? Its as if extra CRLF are being inserted after every line. Upvote 0
Erel said: Might be related to the set DPI. Click to expand... Wouldn't that also affect the width? Its as if extra CRLF are being inserted after every line.
Erel B4X founder Staff member Licensed User Longtime User Oct 11, 2017 #8 It is just something that you can check. I don't know whether it is related or not. Upvote 0
MikeH Well-Known Member Licensed User Longtime User Oct 11, 2017 #9 Erel said: It is just something that you can check. I don't know whether it is related or not. Click to expand... Yes, DPI is affecting it. Thanks Erel. Upvote 0
Erel said: It is just something that you can check. I don't know whether it is related or not. Click to expand... Yes, DPI is affecting it. Thanks Erel.