How do I save the user’s screen rez height and width so I can use it when they open my vb program the next time? I know i have to save it in an .ini file but have no idea how to do it. Thanks
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Save screen resolution in an .ini file (w95, w2000, vb6)
Home » Forums » AskWoody support » Productivity software by function » Visual Basic for Applications » Save screen resolution in an .ini file (w95, w2000, vb6)
- This topic has 16 replies, 6 voices, and was last updated 23 years, 2 months ago.
Viewing 2 reply threadsAuthorReplies-
WScharlotte
AskWoody LoungerMarch 31, 2002 at 6:45 pm #579582Take a look at this post for some routines that read and write to an .ini file. In that case it’s printer information, but you can adapt it for your needs.
Another alternative is to use SaveSetting and GetSetting to create and read a registry key , which is much simpler but can’t be migrated to another machine the way an .ini file can.
-
WSHoward Kaikow
AskWoody Lounger -
WSjha900
AskWoody Lounger -
WSHoward Kaikow
AskWoody Lounger -
WSBigKev
AskWoody LoungerApril 1, 2002 at 12:49 pm #579637I agree with Howard. Why store those values when the .Height and .Width properties of the Screen object return the values you need. After all, if you store them you have to retrieve them and that is a lot more work than using the Height and Width properties of the Screen object.
Regards,
Kevin Bell
-
WSjha900
AskWoody LoungerApril 1, 2002 at 4:46 pm #579666ok, yes now i see. After the user resizes their window i want to save the height and width and use the next time they open the program. I looked up code on saving to an .ini file but don’t understand it. I just want to save it somehow in my vb6 program so when the user opens the program up the window will be the same size as when they closed it. thanks for all the posts and the help
-
WSHoward Kaikow
AskWoody LoungerApril 1, 2002 at 8:45 pm #579695IT’s deeper than that.
You do not want to SAVE those values, rather, you need to have your code set up to automagically react to screen resolution changes.
The user might change the screen resolution whilst the macro is running. Whilst this may not happen often, you need to take this into account.
Look into the Resize event.
-
WSjha900
AskWoody Lounger -
WSjscher2000
AskWoody LoungerApril 2, 2002 at 1:20 am #579786Actually, I think the program needs to save both sets of values, user’s desired window size and user’s screen resolution, to make future adjustments possible. I do think it’s a good idea to save it in an .ini file. We have an application that saves screen coordinates in an Access database with all its other data, and every now and again the window will disappear offscreen due to some faulty program logic applied to extra-high resolution displays. I have to open the table in Excel to fix the data to avoid upconverting the data file to the latest version of Access. One shouldn’t have to do that; .ini file good.
-
WSHoward Kaikow
AskWoody LoungerApril 2, 2002 at 5:42 pm #580004Saving the values is of no use.
The macro has to check the resolutiion when it is running.The programmer has to include the design time resolution within the code, ie., the resolution on whatever system the code was written.
Size is then adjusted at run-time whenever the macro runs.
This topic is covered in a number of VB and Access programming books.
I know that Ken Getz covers this in his Access programming books and, I believe, that Gary Cornell addresses the issue in Visual Basic 6 from the Ground Up.
-
WSjscher2000
AskWoody LoungerApril 3, 2002 at 12:06 am #580084 -
WSHoward Kaikow
AskWoody Lounger -
WSjscher2000
AskWoody LoungerApril 3, 2002 at 4:35 am #580119I refer you to Post #129209.
-
-
-
-
WSRMittelman
AskWoody LoungerApril 4, 2002 at 4:02 pm #580532I noticed nobody actually answered your question,
rather explained why you would or wouldn’t want to do
what you want to do. Here’s a couple of routines
which should help.Private Declare Function GetPrivateProfileString Lib "kernel32" _ Alias "GetPrivateProfileStringA" (ByVal lpApplicationName As String, _ ByVal lpKeyName As Any, ByVal lpDefault As String, _ ByVal lpReturnedString As String, _ ByVal nSize As Long, ByVal lpFileName As String) As Long Private Declare Function WritePrivateProfileString Lib "kernel32" _ Alias "WritePrivateProfileStringA" (ByVal lpApplicationName As String, _ ByVal lpKeyName As Any, ByVal lpString As Any, _ ByVal lpFileName As String) As Long Function ReadIni(IniFile As String, _ Section As String, _ Key As String, _ Optional Default As String = "", _ Optional TrimSemicolon As Boolean = True, _ Optional TrimSpaces As Boolean = True) _ As String 'Reads and returns data from , ' using
and to find item. 'If item not found, is returned. 'If is not sent, or sent as ' True, any text following ";" is removed. 'If is not sent, or sent as ' True, any trailing blank spaces are removed. Dim lBufSize As Long Dim sBuffer As String Dim lSize As Long lBufSize = 2048 sBuffer = Space$(lBufSize) 'Retrieve the string lSize = GetPrivateProfileString(Section, _ Key, _ Default, _ sBuffer, _ lBufSize, _ IniFile) sBuffer = Left$(sBuffer, lSize) If TrimSemicolon And InStr(1, sBuffer, ";") > 0 Then sBuffer = Left$(sBuffer, _ InStr(1, sBuffer, ";") - 1) End If If TrimSpaces Then sBuffer = RTrim$(sBuffer) End If ReadIni = sBuffer End Function Sub WriteIni(IniFile As String, _ Section As String, _ Key As String, _ Value As String) 'Writes to , ' in , using = format. 'If doesn't exist, it is added. 'Verifies , & are ' valid, but allows blank . If Dir$(IniFile) > "" _ And Section > "" _ And Key > "" Then WritePrivateProfileString Section, Key, Value, IniFile endif End Sub Feel free to e-mail with questions.
-
WSjha900
AskWoody Lounger -
WSRMittelman
AskWoody Lounger
-
Viewing 2 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Microsoft : Edge is better than Chrome
by
Alex5723
3 hours, 20 minutes ago -
The EU launched DNS4EU
by
Alex5723
8 hours, 54 minutes ago -
Cell Phone vs. Traditional Touchtone Phone over POTS
by
280park
6 hours, 59 minutes ago -
Lost access to all my networked drives (shares) listed in My Computer
by
lwerman
14 hours, 20 minutes ago -
Set default size for pasted photo to word
by
Cyn
20 hours, 22 minutes ago -
Dedoimedo tries 24H2…
by
Cybertooth
8 hours, 28 minutes ago -
Windows 11 Insider Preview build 27871 released to Canary
by
joep517
1 day, 19 hours ago -
Windows 11 ad from Campaign Manager in Windows 10
by
Jim McKenna
1 day, 16 hours ago -
Small desktops
by
Susan Bradley
10 hours ago -
Totally disable Bitlocker
by
CWBillow
12 hours, 54 minutes ago -
Phishers extract Millions from HMRC accounts..
by
Microfix
1 day, 16 hours ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
2 days, 23 hours ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
18 hours, 2 minutes ago -
Mystical Desktop
by
CWBillow
3 days, 2 hours ago -
Meta and Yandex secretly tracked billions of Android users
by
Alex5723
2 days, 7 hours ago -
MS-DEFCON 2: Do you need that update?
by
Susan Bradley
23 hours, 50 minutes ago -
CD/DVD drive is no longer recognized
by
WSCape Sand
3 days, 17 hours ago -
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
3 days, 20 hours ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
3 days, 18 hours ago -
What is wrong with simple approach?
by
WSSpoke36
1 day, 16 hours ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
4 days, 6 hours ago -
Location, location, location
by
Susan Bradley
2 days, 20 hours ago -
Cannot get a task to run a restore point
by
CWBillow
4 days, 7 hours ago -
Frustrating search behavior with Outlook
by
MrJimPhelps
3 days, 22 hours ago -
June 2025 Office non-Security Updates
by
PKCano
4 days, 18 hours ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
7 hours, 9 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
4 days, 18 hours ago -
How start headers and page numbers on page 3?
by
Davidhs
5 days, 4 hours ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
4 days, 7 hours ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
5 days, 13 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.