Hi all,
I think I have a wish list item that we all could use. I would like to see PowerBasic add some keywords/features that allow get/set of ANY data type to and from edit controls.
Also I would like to see the following
Replaced by...
I hope that makes sense.
------------------
Cheers
[This message has been edited by mark smit (edited January 29, 2001).]
I think I have a wish list item that we all could use. I would like to see PowerBasic add some keywords/features that allow get/set of ANY data type to and from edit controls.
Code:
control set byte cbhndl,%IDEDIT,n (dim n as byte) control get byte cbhndl,%IDEDIT to n (dim n as byte) control set long cbhndl,%IDEDIT,n (dim n as long) control get long cbhndl,%IDEDIT to n (dim n as long) control set string cbhndl,%IDEDIT,n$ (dim n as string) control get string cbhndl,%IDEDIT to n$ (dim n as string) control set asciiz cbhndl,%IDEDIT,n$ (dim n as asciiz) control get asciiz cbhndl,%IDEDIT to n$ (dim n as asciiz) dialog send cbhndl,%WM... dialog post cbhndl,%WM... (need this one added) dialog set text cbhndl,... (these also) dialog get text cbhndl,...
Code:
callback function end function
Code:
callback end callback function end function
------------------
Cheers
[This message has been edited by mark smit (edited January 29, 2001).]
Comment