Description:
32-bit Windows programming interfaces.
|
|
|
Search substring in to string
|
| |
Hi
I compile with MinGW program console write in C.
What function Win32 API, to use for search substring in to string?
Thanks in advance
Regards
|
|
Why is a groupbox built from a Button control ?
|
| |
Hello All,
Just this week my eye fell on something that I can not quite figure out: A
GroupBox is a Button control with the BS_GROUPBOX style set. As a groupbox
it does not seem to respond to keypresses or mouseclicks. It behaves like
its a static control.
So, why didn't they just use a Static control for it instead ? Or have I... more »
|
|
An editbox with history. Is there a standard solution available ?
|
| |
Hello All,
Is there a standard solution to adding history to a single-line editbox ?
-- Background:
I thought it would be nice to add a history to a single-line editbox, so I
could quickly recover previously entered lines and than apply changes.
After some googleing on the subject (win32 editbox history) and finding... more »
|
|
Freeing memory doesn't show the released memory in taskmgr
|
| |
Hello Group,
i'm using malloc() to allocate some memory. My (ugly) testcode look's
like this:
char* mymy[6];
for (int i = 0; i < 5; ++i) {
mymem = GetProcessMemUsage(NULL);
cout << "ALLOC: RAM USED: " << ByteConv(mymem,
ByteConv_KiloBytes) << endl;
mymy[i] = (char*)malloc(65535);
Sleep(3000);... more »
|
|
WIN XP Support
|
| |
Hi all,
I am just working with my winXP laptop and i am very satisfied, so I
see no reason to switch to candy-like win8.
As MS ends support soon, might it be possible to set up a private firm
or organisation who provide security fixes and patches for an annual
fee? Or is there so much internal MS knowledge needed that an outside... more »
|
|
SysMonthCal32: no keyboard navigation ?
|
| |
Hello All,
I've got a SysMonthCal32 component on a dialog, and can tab to it
(WS_TABSTOP) using the keyboard. The problem is that although it accepts
focus I can't, using the keyboard, seem to navigate to any of its
sub-components / change anything.
My question: what do I need, using XP sp3, to enable keyboard control within... more »
|
|
Drag'n'Drop between ListViews
|
| |
Hi,
I'm trying to implement a Drag'n'Drop between two controls on the same or different Windows, but in the same application (Windows 7 Desktop).
So far it works fine.
Unfortunately, the image underneath the cursor, created by ListView_CreateDragImage(), disappears at the border of the control.... more »
|
|
who passes all four arguments to winmain(...)
|
| |
Hello Group,
I am just a beginner in learning win32 api. The winmain
int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
takes 4 arguments. When I run this programme in visual studio, I am... more »
|
|
|