Articles   Members Online:
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to Passing String Parameters to WinAPI Functions Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
27-Dec-02
Category
Object Pascal-Strings
Language
Delphi All Versions
Views
95
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Lou Adler

I'm using the Winexec command and trying to use a string as the argument, but 
Winexec takes only a Pchar as its argument. I can't figure out how to put a regular 
string into a Pchar, or how to make a Pchar 'point' to a character string.

Answer:

WinAPI calls can be pretty confusing, huh? Let's say you have a function called 
WinAPICall that takes a PChar as an argument. Here are a couple of ways to make the 
call:

First Method (This will only work for Delphi 2.0 and above, which supports casting):

WinAPICall(PChar(MyStringVal));

Second Method:

1   procedure CallWinApiCall(S: string);
2   var
3     Val: string;
4     pVal: PChar;
5   begin
6     Val := S;
7     {Initialize memory for the PChar}
8     GetMem(pVal, Length(Val));
9   
10    {Copy the contents of Val to PChar}
11    pVal := StrPCopy(pVal, Val);
12    WinAPICall(pVal);
13  
14    {This next step is ABSOLUTELY necessary}
15    FreeMem(pVal, Length(Val));
16  end;


In any case, that should do it for you pretty nicely.

			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC