11-12-2008, 23:41
|
Gunasekaran

Joined on 05-07-2008
Chennai,India
Posts 174
|
Re: How change the API Dialog Caption using VB.net
|
 
 
|
|
|
I have used the following code to call the API dialog..... And used " Dim ret As Integer = L_DlgSetString(533, "MyDilaog")" to change the dlg caption into "MyDilaog" But its not working ,
**************************************************************** Dim hobj As New REMAPHUEDLGPARAMS() hobj.pBitmap = ptr hobj.uStructSize = Marshal.SizeOf(hobj) Dim hobj_ptr As IntPtr = Marshal.AllocHGlobal(Marshal.SizeOf(hobj)) Marshal.StructureToPtr(hobj, hobj_ptr, False) Dim nRet As Integer = L_DlgInit(1) Dim ret As Integer = L_DlgSetString(533, "CyPacs") Dim nnRet As Integer = L_DlgRemapHue(hwnd_intptr, hobj_ptr) ************************************************************************** Please correct me if I went wrong somwhere in my code
Thanks and Regards Guna
|
|
|
|
|
Report
|
|
|
|