NO

Recent Posts

Pages: [1] 2 3 ... 10
1
Dating between men and women has evolved with technology and shifting gender roles, offering more opportunities but also different challenges.
https://zeenite.com/categories/
 
The Digital Gang
Online dating apps like Tinder and Bumble make connecting easier but can have a irresistible just to too multifarious choices. Women prepare gained more charge, such as initiating conversations on Bumble, reflecting broader gender equality.
 
Challenges in Dating
Ghosting and Relaxed Dating: Quick exits and casual encounters are common, leading to confusion.
Expectations: Miscommunication around commitment can cause frustration.
Distress: Common media creates unreasonable expectations of pronouncement the perfect partner.
Gender Stereotypes: Old stereotypes round dating roles still stay alive, complicating things.
Keys to Healthful Relationships
https://zeenite.com/latest-updates/
 
Communication: Outstretched, trustworthy conversations set up trust.
Veneration and Similarity: Valuing each other as equals fosters balance.
Persistence: Bewitching set to build connections reduces pressure.
Looking Vanguard
As dating continues to evolve with technology, the fundamentals of defer to, communication, and tenacity remain basic for lasting relationships.
2
Windows questions / Re: Tree View control macros for Unicode
« Last post by WiiLF23 on Today at 05:58:29 AM »
Perhaps true but TreeView_InsertItem macro is defined in commctrl.h using SNDMSG
which then is defined windowsx.h
#define SNDMSG SendMessage
which then is defined in winuser.h
#ifdef UNICODE
#define SendMessage  SendMessageW
#define SendMessageTimeout  SendMessageTimeoutW
#define SendNotifyMessage  SendNotifyMessageW
#define SendMessageCallback  SendMessageCallbackW
#else /* !UNICODE */
so
Code: [Select]
#define TreeView_InsertItem(hwnd,lpis)  (HTREEITEM)SNDMSG((hwnd),TVM_INSERTITEM,0,(LPARAM)(LPTV_INSERTSTRUCT)(lpis))would automagically evolve to
Code: [Select]
#define TreeView_InsertItemW(hwnd,lpis)  (HTREEITEM)SendMessageW((hwnd),TVM_INSERTITEMW,0,(LPARAM)(LPTVINSERTSTRUCTW)(lpis))if the UNICODE defines are done.

So I think they are missing from PaoloC13's code.... I could be wrong but worth checking  :)
I have used Unicode treeviews albeit without the macros, but they do seem to exist in PellesC.

John Z

Thank you John Z. I have been scratching my head about this for quite some time, using ListView and TreeView macros. This makes sense for compatibility!
3
Windows questions / Re: How to convert this sh*tcode to C?
« Last post by WiiLF23 on September 30, 2024, 06:01:40 PM »
Very late to this, but this is fantastic. It looks great! I couldn't' believe it. Digging further, it appears you can add link callbacks to trigger actions after a link href is clicked within the viewport. This is useful for launching windows or managing calls within the application.

However, this binds one to the Edge eco-system, which is already aggressive in marketing and overriding associations from other browsers in the registry. No Edge, no WebView2.

Very cool! Thank you.
4
Beginner questions / Re: sizeof operator
« Last post by WiiLF23 on September 28, 2024, 06:26:34 PM »
This is more than sufficient

Code: [Select]
LVITEMW lvi = { 0 };

Unless you are working with a RECT, you dont need to input extra parameters. memset is more than enough.
5
Assembly discussions / Re: Scrolling desktop demo
« Last post by Vortex on September 22, 2024, 10:56:59 AM »
The 64-bit version :

Code: [Select]
LOCQW MACRO arglist:VARARG

LOCAL _local

    FOR arg,<arglist>

        _local TEXTEQU <LOCAL >,arg,< : QWORD>

        _local

    ENDM

ENDM
6
Announcements / This site is for english language only
« Last post by TimoVJL on September 21, 2024, 02:34:53 PM »
This site is just for english language only and any attempts to use some crazy language should remove immediately.
So keep this site clean from spammers.
7
Assembly discussions / Re: Scrolling desktop demo
« Last post by Vortex on September 18, 2024, 08:26:22 PM »
An improved version of the LOCDD macro :

Code: [Select]
LOCDD MACRO arglist:VARARG

LOCAL _local

    FOR arg,<arglist>

        _local TEXTEQU <LOCAL >,arg,< : DWORD>

        _local

    ENDM

ENDM

Code: [Select]
main PROC uses esi edi ebx

LOCDD hOldBmp
LOCDD hDC,x,y
LOCDD x2,y2,tempDC
LOCDD hWnd,hBmp
8
Assembly discussions / Re: Scrolling desktop demo
« Last post by Vortex on September 16, 2024, 09:35:42 PM »
Macro for quick local definitions :

Code: [Select]
LOCDD MACRO _name

LOCAL _local

    _local TEXTEQU <LOCAL >,_name,< : DWORD>

    _local

ENDM

Code: [Select]
main PROC uses esi edi ebx

LOCDD hDC
LOCDD x
LOCDD y
LOCDD x2
LOCDD y2
LOCDD tempDC
LOCDD hWnd
LOCDD hBmp
LOCDD hOldBmp
9
Beginner questions / Re: Declared variables ordering
« Last post by Vortex on September 13, 2024, 09:12:27 PM »
The 64-bit version :

Code: [Select]
#include <stdio.h>
#include <windows.h>

int main(int argc, char *argv[])
{
size_t x=1536;
char t=65;

        printf("x=%zu , t=%c\n",x,t);

printf("sizeof x=%zu ,sizeof t=%zu\n",sizeof(x),sizeof(t));

    return 0;
}

Output :

Code: [Select]
x=1536 , t=A
sizeof x=8 ,sizeof t=1
10
Beginner questions / Re: Declared variables ordering
« Last post by John Z on September 13, 2024, 07:57:43 AM »
Thanks Vortex,

 :( I was hoping the compiler did it . . . well I've got some rearranging to do then...

Cheers,
John Z
Pages: [1] 2 3 ... 10