How about creating using a bitmap to display the text on?
Create your bitmap, and use graphics.DrawString to put your text into it. You can then use bitmap.RotateFlip to make your text run vertically, and then assign that bitmap to the control?
Perhaps to the Label's Image property?
Corin
After some refinement, it now calls the MessageCallback function once and once only, no matter what else happens to the form:
Imports System.Convert
Imports System.Drawing.Imaging
Imports System.Runtime.InteropServices
Imports System.Reflection
Imports System.Drawing
Imports System.Threading...
Hi all,
I'm trying to write an application that will detect screen updates and send them across to a monitor station. It's effectively like a VNC application, but the supervisors here want to recieve more information than VNC provides, for training and monitoring purposes.
So, what I'm...
You don't even have to manually add the "Handles btn1.click, btn2.click, <etc>" code for each one:
In a startup routine you can use AddHandler to bind the event for each button on the fly:
Public sub AddEventHandlers()
For Each ctrl As Control In Me.Controls
If TypeOf ctrl Is...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.