devxlogo

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; <= ERRORend;

Answer:

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

lParam := LongInt(StringToFind);

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

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.