I'm very new to C so please bear with me. I am trying to use C (not C++) to create a window with a listview. That's it. Problem is I can't find any C-based tutorials or example code (it's all VB, C++, C#) that compiles in Microsoft Visual C++ 2010 Express. This is a personal project just for fun but I'm really stumped.
This sample: http://ralf.stormbind.net/netenum-0.1/netenum-0.1.c
Gives many compiler errors that don't make sense, i.e. there aren't any missing semicolons:
netenum-0.1.c(235): error C2054: expected '(' to follow 'inline'
netenum-0.1.c(236): error C2085: 'list_add' : not in formal parameter list
netenum-0.1.c(236): error C2143: syntax error : missing ';' before '{'
netenum-0.1.c(243): error C2054: expected '(' to follow 'inline'
netenum-0.1.c(244): error C2085: 'Refresh_Properties' : not in formal parameter list
netenum-0.1.c(244): error C2143: syntax error : missing ';' before '{'
netenum-0.1.c(521): warning C4013: 'Refresh_Properties' undefined; assuming extern returning int
Using what I do know of C, I shamelessly chopped that code down into a sample that DOES compile:
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <commctrl.h>
#include <string.h>
#include <Lm.h>
HINSTANCE m_hInstance = NULL;
HWND m_hWnd = NULL;
HWND m_hWnd_ListComputers = NULL;
HWND m_hWnd_ListProperies = NULL;
LVCOLUMN Column;
LVITEM Item;
LPSTR Property = "TESTTESTTEST";
LPSTR Value = "TESTTESTTEST";
static void InitApplication();
static void InitInstance(int nCmdShow) ;
static LRESULT CALLBACK MainWndProc(HWND, UINT, WPARAM, LPARAM);
static void list_add (LVITEM *pItem, LPSTR Property, LPSTR Value);
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow )
{
MSG msg;
m_hInstance = hInstance;
InitApplication();
InitInstance(nCmdShow);
while (GetMessage(&msg, NULL, 0, 0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return 0;
}
static void InitApplication()
{
WNDCLASSEX wcx;
wcx.cbSize = sizeof(wcx);
wcx.style = CS_HREDRAW | CS_VREDRAW;
wcx.lpfnWndProc = MainWndProc;
wcx.cbClsExtra = 0;
wcx.cbWndExtra = 0;
wcx.hInstance = m_hInstance;
wcx.hIcon = LoadIcon(NULL, IDI_APPLICATION);
wcx.hCursor = LoadCursor(NULL, IDC_ARROW);
wcx.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
wcx.lpszMenuName = NULL;
wcx.lpszClassName = "WNDCLASSW32NetEnum";
wcx.hIconSm = (HICON)LoadImage(m_hInstance,
MAKEINTRESOURCE(5),
IMAGE_ICON,
GetSystemMetrics(SM_CXSMICON),
GetSystemMetrics(SM_CYSMICON),
LR_DEFAULTCOLOR);
RegisterClassEx(&wcx);
}
static void InitInstance(int nCmdShow)
{
HWND hwnd;
hwnd = CreateWindow(
"WNDCLASSW32NetEnum",
"W32NetEnum",
WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT,
CW_USEDEFAULT,
CW_USEDEFAULT,
CW_USEDEFAULT,
(HWND) NULL,
(HMENU) NULL,
m_hInstance,
(LPVOID) NULL);
m_hWnd = hwnd;
ShowWindow(hwnd, nCmdShow);
UpdateWindow(hwnd);
}
static void InitControls (HWND hWnd)
{
m_hWnd_ListComputers = CreateWindowEx (
WS_EX_CLIENTEDGE,
WC_LISTVIEW,
"",
WS_CHILD | LVS_REPORT | LVS_EDITLABELS | WS_VISIBLE,
0, 0,
200, 200,
hWnd,
0,
m_hInstance,
NULL);
ListView_SetExtendedListViewStyleEx (m_hWnd_ListComputers, 0, LVS_EX_FULLROWSELECT);
memset (&Column, 0, sizeof(Column));
Column.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
Column.cx = 250;
Column.pszText = "Name";
ListView_InsertColumn(m_hWnd_ListComputers, 1, &Column);
Column.pszText = "Comment";
ListView_InsertColumn(m_hWnd_ListComputers, 2, &Column);
Item.pszText = "TESTTESTTEST";
ListView_InsertItem (m_hWnd_ListComputers, &Item);
ListView_SetItemText (m_hWnd_ListComputers, Item.iItem, 1, "TESTTESTTEST");
m_hWnd_ListProperies = CreateWindowEx (
WS_EX_CLIENTEDGE,
WC_LISTVIEW,
"",
WS_CHILD | LVS_REPORT | LVS_EDITLABELS | WS_VISIBLE,
0, 0,
100, 100,
hWnd,
0,
m_hInstance,
NULL);
ListView_SetExtendedListViewStyleEx (m_hWnd_ListProperies, 0, LVS_EX_FULLROWSELECT);
memset (&Column, 0, sizeof(Column));
Column.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
Column.cx = 250;
Column.pszText = "Property";
ListView_InsertColumn(m_hWnd_ListProperies, 1, &Column);
Column.pszText = "Value";
ListView_InsertColumn(m_hWnd_ListProperies, 2, &Column);
list_add (&Item, "TESTTESTTEST", "TESTTESTTEST");
}
static void list_add (LVITEM *pItem, LPSTR Property, LPSTR Value)
{
pItem->pszText = Property;
ListView_InsertItem (m_hWnd_ListProperies, pItem);
ListView_SetItemText (m_hWnd_ListProperies, pItem->iItem, 1, Value);
++pItem->iItem;
}
static LRESULT CALLBACK MainWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch (uMsg)
{
case WM_CREATE:
InitControls(hWnd);
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
}
return DefWindowProc(hWnd, uMsg, wParam, lParam);
}
I have read various MSDN articles about Window classes and I'm pretty sure that's doing the right thing--passing hWnd to m_hWnd_ListComputers and m_hWnd_ListProperies as the parent window.
But the result is the hwnd window with no listview content:
http://img259.imageshack.us/img259/9716/failxz.jpg
The goal is just a window that looks like this (though less columns, no buttons, no tabs, and no checkboxes):
http://www.knowdotnet.com/articles/PrintListViewDemoForm.jpg