Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8967989
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T17:22:11+00:00 2026-06-15T17:22:11+00:00

All examples I found was C# related, but I’m unfamiliar with it. My task

  • 0

All examples I found was C# related, but I’m unfamiliar with it.
My task is to provide some kind of automation for testing. I have installer which first buttons are inside of SysListView32, as I can understand
My target is to select them, choose button by its name and click it
The last part is obvious:

GetWindowText(control, window_name, 256);
if(strcmp.....
{
do smth
}

But when it comes to SysListView32 I can’t understand how to extract its object and names in C

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T17:22:12+00:00Added an answer on June 15, 2026 at 5:22 pm

    Take a look at LVM_GETITEM. The MSDN documentation page is here: http://msdn.microsoft.com/en-us/library/windows/desktop/bb774953(v=vs.85).aspx. The documentation is actually pretty thorough.

    A short example that will retrieve the “lParam”, the image list index for the icon and the text of an item:

    LVITEM lvItem;
    TCHAR szBuffer[MAX_PATH + 1] = { 0 };
    
    lvItem.mask       = LVIF_PARAM | LVIF_IMAGE | LVIF_TEXT;
    lvItem.iItem      = iItem;
    lvItem.iSubItem   = 0;
    lvItem.pszText    = szBuffer;
    lvItem.cchTextMax = MAX_PATH;
    
    if(ListView_GetItem(m_hListView,&lvItem))
    {
        /* success! the item details are in lvItem */ 
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So far all the serialization examples I have found on the web are related
I've tried all the time calculating examples I found on this site but somehow
I have had a good trawl through related questions and implemented suggestions found, but
I have some weeks since im using CI, but now I've found some problems
I think this should be possible, but I have not found anything related to
All the tutorials and examples I've found of XSLT processing seem to assume your
I've found lots of examples of the repository pattern, all of which show the
Suppose we have abstract class A (all examples in C#) public abstract class A
i have a gridview with search option by a database table.All working fine but
Reading misc. tutorials related to SDL development I've found two different examples, doing the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.