News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

syslink

Started by ToutEnMasm, March 06, 2008, 05:14:54 PM

Previous topic - Next topic

ToutEnMasm


I try to made a syslink control.Is someone have a sample (in c++ or masm) that work ?
Microsoft one don't want to compile.

ragdog


ToutEnMasm

Hello,
Yes it is,but it used mfc and i haven't it with the vc++ express and the SDK.

ragdog

hi

i hope it is correct :8)

greets
ragdog

[attachment deleted by admin]

ToutEnMasm


Very good samples,Many thanks

ragdog

#5
here is a link with underline


greets
ragdog

edit:

2 example with Cursor

[attachment deleted by admin]

ToutEnMasm

#6
Hello,
The following sample is a real syslink control.
When clic the control send the NM_CLICK message but informations on the NMLINK structure are not returned,stay null.
The sample have all the needed definitions to work.

Answered ,SAMPLE IS UNDER





[attachment deleted by admin]

ToutEnMasm

#7
Nobodies reply,so i am the first to find an answer.
The createwindowex use the lpWindowName parameter to pass the text to the syslink control.
This text must be in html format:
Quote
<a href="http://www.microsoft.com/msj/1298/controlspy3/controlspy3.aspx">common controls</a>
begin in data
Quote
example db "<a href=",34,"http://www.microsoft.com/msj/1298/controlspy3/controlspy3.aspx/",34,">common controls</a>",13,10
in the control,we see only "common controls" as in an html page.
clicking the control send a WM_NOTIFY NM_CLICK message,url is passed in UNICODE format.
The control can display any number of url mixed with text.
Sample (corrected) is in the upperĀ  post










ragdog

hi ToutEnMasm

i have found a syslink example in masm i hope this is correct


greets
ragdog

[attachment deleted by admin]