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
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
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
-
Office gets current release
by
Susan Bradley
3 hours, 27 minutes ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
19 hours, 59 minutes ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
4 hours, 30 minutes ago -
Stop the OneDrive defaults
by
CWBillow
20 hours, 47 minutes ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
1 day, 6 hours ago -
X Suspends Encrypted DMs
by
Alex5723
1 day, 8 hours ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
1 day, 9 hours ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
1 day, 9 hours ago -
OpenAI model sabotages shutdown code
by
Cybertooth
1 day, 10 hours ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
22 hours, 37 minutes ago -
Enabling Secureboot
by
ITguy
1 day, 5 hours ago -
Windows hosting exposes additional bugs
by
Susan Bradley
1 day, 18 hours ago -
No more rounded corners??
by
CWBillow
1 day, 14 hours ago -
Android 15 and IPV6
by
Win7and10
1 day, 3 hours ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
2 days, 6 hours ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
2 days, 9 hours ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
2 days, 3 hours ago -
Windows Update orchestration platform to update all software
by
Alex5723
2 days, 16 hours ago -
May preview updates
by
Susan Bradley
2 days, 4 hours ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
1 day, 19 hours ago -
Just got this pop-up page while browsing
by
Alex5723
2 days, 8 hours ago -
KB5058379 / KB 5061768 Failures
by
crown
2 days, 5 hours ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
1 day, 8 hours ago -
At last – installation of 24H2
by
Botswana12
3 days, 8 hours ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
5 hours, 59 minutes ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
3 days, 20 hours ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
1 day, 18 hours ago -
Limited account permission error related to Windows Update
by
gtd12345
4 days, 9 hours ago -
Another test post
by
gtd12345
4 days, 10 hours ago -
Connect to someone else computer
by
wadeer
11 hours, 19 minutes 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.