May 01, 2024, 04:48:55 PM

News:

IonicWind Snippit Manager 2.xx Released!  Install it on a memory stick and take it with you!  With or without IWBasic!


#define

Started by Vikki, November 30, 2006, 11:41:20 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Vikki

Next problem...

I'm trying to get SendMessage to work. My first problem with this is that I get a compile error on one of my #define's

#define TCS_EX_FLATSEPARATORS &H1
#define TCM_FIRST &H1300
#define TCM_SETEXTENDEDSTYLE TCM_FIRST+52

on the last item I get an unsupported operation error

I looked through the help and saw that there are places in there that show adding two things together so I'm not sure what I'm doing wrong.

When I try to use the SendMessage function I get an undeclared function error...I'll leave it there right now because I do have one other issue but that might be solved by solving this issue. :)

LarryMc

try this

#define TCM_SETEXTENDEDSTYLE (TCM_FIRST+52)
LarryMc
Larry McCaughn :)
Author of IWB+, Custom Button Designer library, Custom Chart Designer library, Snippet Manager, IWGrid control library, LM_Image control library

ExMember001


Vikki

Thanks guys! Both solutions make that work! weehoo!  ;D