Click here to Skip to main content
15,894,825 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: line printing problem (Dos printer) Pin
Dave Kreskowiak7-Jan-05 15:09
mveDave Kreskowiak7-Jan-05 15:09 
Generalsave and retrieve files Pin
len_ems5-Jan-05 18:59
len_ems5-Jan-05 18:59 
GeneralRe: save and retrieve files Pin
Ritesh12346-Jan-05 2:46
Ritesh12346-Jan-05 2:46 
GeneralRe: save and retrieve files Pin
len_ems6-Jan-05 16:03
len_ems6-Jan-05 16:03 
GeneralRe: save and retrieve files Pin
T Manjaly6-Jan-05 13:36
T Manjaly6-Jan-05 13:36 
GeneralRe: save and retrieve files Pin
len_ems6-Jan-05 16:12
len_ems6-Jan-05 16:12 
GeneralPrevent right click on the combobox or textbox Pin
Mekong River5-Jan-05 17:20
Mekong River5-Jan-05 17:20 
GeneralRe: Prevent right click on the combobox or textbox Pin
Tom John5-Jan-05 21:58
Tom John5-Jan-05 21:58 
Quick and easy TextBox1.ContextMenu = New ContextMenu, otherwise you will have to inherit from the TextBox and Override the WndProc method. To intercept the paste:

Public Class MyTextBox
    Inherits System.Windows.Forms.TextBox

    Protected Overrides Sub WndProc(ByRef m As Message)

        'Call base method if not the paste message
        If m.Msg <> &H302 Then MyBase.WndProc(m)

    End Sub

End Class
Hope this helps

Tom
GeneralRe: Prevent right click on the combobox or textbox Pin
T Manjaly6-Jan-05 13:38
T Manjaly6-Jan-05 13:38 
GeneralPassing parameters into Exe Pin
kobezt085-Jan-05 13:45
kobezt085-Jan-05 13:45 
GeneralRe: Passing parameters into Exe Pin
T Manjaly6-Jan-05 13:39
T Manjaly6-Jan-05 13:39 
GeneralRe: Passing parameters into Exe Pin
kobezt086-Jan-05 15:30
kobezt086-Jan-05 15:30 
GeneralCode for Project Pin
bdobruna5-Jan-05 8:20
bdobruna5-Jan-05 8:20 
GeneralRe: Code for Project Pin
Anonymous5-Jan-05 9:18
Anonymous5-Jan-05 9:18 
GeneralRe: Code for Project Pin
bdobruna5-Jan-05 12:19
bdobruna5-Jan-05 12:19 
GeneralRe: Code for Project Pin
Colin Angus Mackay5-Jan-05 9:43
Colin Angus Mackay5-Jan-05 9:43 
GeneralRe: Code for Project Pin
J4amieC5-Jan-05 22:47
J4amieC5-Jan-05 22:47 
GeneralRe: Code for Project Pin
Edbert P6-Jan-05 10:46
Edbert P6-Jan-05 10:46 
GeneralAccessing other code base file in VB.NET Pin
fibman5-Jan-05 7:27
fibman5-Jan-05 7:27 
GeneralRe: Accessing other code base file in VB.NET Pin
T Manjaly5-Jan-05 10:04
T Manjaly5-Jan-05 10:04 
GeneralWindows Service Automatic Start Pin
Todd_S5-Jan-05 7:15
Todd_S5-Jan-05 7:15 
GeneralRe: Windows Service Automatic Start Pin
Barathan6-Jan-05 2:14
Barathan6-Jan-05 2:14 
GeneralRe: Windows Service Automatic Start Pin
Todd_S7-Jan-05 8:03
Todd_S7-Jan-05 8:03 
GeneralCF .Net Update Database from Dataset Datatable Pin
careysc5-Jan-05 5:03
careysc5-Jan-05 5:03 
GeneralAltering contents of a string Pin
SimesK5-Jan-05 4:55
sussSimesK5-Jan-05 4:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.