Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Corin93

    Displaying Label's Text Vertically

    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
  2. Corin93

    SetWindowsHookEx and WM_PAINT

    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...
  3. Corin93

    SetWindowsHookEx and WM_PAINT

    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...
  4. Corin93

    Calling a procedure easily in 52 different buttons

    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...

Part and Inventory Search

Back
Top