Lance,
What do you think of the following additions to PBDLL...
1. reimpliment SHARED variables to combat GLOBAL worries. What I mean is bring the SHARED idea from PBDOS to PBDLL. Each sub or function that contains the same named variables followed by the key word SHARED will share the same memory address. (hope that makes sense).
2. Extend DDT to allow sub classing of windows messages. This would allow the programmer to break up the windows proc. into smaller chunks. here is an example...
3. Do you think that my other suggestion for "CONTROL SET|GET INT" will be included in the current release fixes if any? or will this be a "NEW FEATURE" for PBDLL7?
-------------
Cheers
What do you think of the following additions to PBDLL...
1. reimpliment SHARED variables to combat GLOBAL worries. What I mean is bring the SHARED idea from PBDOS to PBDLL. Each sub or function that contains the same named variables followed by the key word SHARED will share the same memory address. (hope that makes sense).
2. Extend DDT to allow sub classing of windows messages. This would allow the programmer to break up the windows proc. into smaller chunks. here is an example...
Code:
callback function OnInitDialog as long rem in here we can use all the DDT variables rem CBMSG,CBCTL,CBCTLMSG,CBWPARAM,CBLPARAM, etc... end function callback function OnDestroy as long rem in here we can use all the DDT variables rem CBMSG,CBCTL,CBCTLMSG,CBWPARAM,CBLPARAM, etc... end function callback function DlgProc as long select case cbmsg case %WM_INITDIALOG call OnInitDialog case %WM_DESTROY call OnDestroy end select end function
3. Do you think that my other suggestion for "CONTROL SET|GET INT" will be included in the current release fixes if any? or will this be a "NEW FEATURE" for PBDLL7?
-------------
Cheers
Comment