Project Home
Project Home
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - Text box fail to update..: (1 Item)
   
Text box fail to update..  
Hello,

I am developing an application in which I am using PtMultiTextModifyText() to continuously update my TextBox.

But I found it is unable to update the TextBox.
I tried to use PtHold() and PtRelease(),but still I failed.

I think i am not using PtHold and PtRelease in a right way.

Please tell me is there any basic example of how to use PtHold ().

Following is not working as per desierable,Please let me know where i m going wrong
my code:

while(1) {
for (i=0;i<500:i++) /*loop to consume more time*/
PtHold();

PtMultiTextModifyText(ABW_PtMultiText1,NULL,NULL,-1,Hello,5,NULL,NULL);

for (i=0;i<500:i++) /*to bring hold count to zero*/
PtRelease();

}//while