devxlogo

Typecast Text to LPARAM

Typecast Text to LPARAM

Question:

How do I typecast text to LPARAM? LPARAM is supposed to be an integer, but clearly the API call wants text. I’m assuming I missed some pchar>string or pointer stuff, but haven’t been able to figure out what exactly I am missing. Here is my code:

MyMSG1: TMSG;Stringtofind: pchar;beginStringtofind:='I am a string!';with mymsg1 dobeginmessage:=lb_findstring;wparam:=-1;lparam:=stringtofind; 

Answer:

Actually, it's simpler than that. Just typecast the variable as a LongInt:

lParam := LongInt(StringToFind);

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist