Hi, Recently , I making a plug-in for dbpro.
I learned about Applying C Style Functions To DLL String Table.
But If Functions looks like this
HWND CPGUIRICH::RichEdit_Create_Window( char Title[128] , int CtrlAttribute ,
int ID , int X , int Y , int Width , int Height ,
HWND HSetToWindow )
{
//Rich Edit Window Data
HWND HRichEditWnd;
HINSTANCE m_hInst = NULL;
//Create Rich Edit Window
HRichEditWnd = CreateWindow( RICHEDIT_CLASS , Title , CtrlAttribute ,
X , Y , Width , Height ,
HSetToWindow , (HMENU)ID ,
m_hInst , NULL
);
//Return Window Reference
return HRichEditWnd;
}
How I apply Above Functions?
When I Written Like
"PGUI CREATE RICHEDIT
[DSLLLLLLD%CPGUIRICH::RichEdit_Create_Window%D"
,It Didn't Work.

Umm... I Really Solve This Problem. Help Me Plz!
Knowledge Is Well-Known Wisdom.
So Wisdom Is Very Absolute.