Bernd_Riemke

Absent Member.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2013-09-30
02:58
1376 views
Hi!
I have some C# Code and i Need it in Cobol code:
TextBox tb = sender as TextBox;
tb.SelectAll();
Can anyone help?
Best Regards
Bernd Riemke
1 Solution
Accepted Solutions
Chris Glazier

Micro Focus Expert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2013-09-30
08:07
You might also want to take a look at the Visual COBOL documentation in the section for Comparison of COBOL with other Managed Languages
Thanks..
3 Replies


Cadet 2nd Class
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2013-09-30
03:32
Visual COBOL 2.1 upd 1
Declare tb as type TextBox *> if you prefer you put this into working or local storage.
set tb to sender as TextBox
invoke tb::SelectAll()
Kind regards
Joachim Blome
Chris Glazier

Micro Focus Expert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2013-09-30
08:07
You might also want to take a look at the Visual COBOL documentation in the section for Comparison of COBOL with other Managed Languages
Thanks..


Cadet 2nd Class
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2013-09-30
16:37
There was a missing "type" in my mail. The line really should be
set tb to sender as type TextBox