Click here to Skip to main content
15,906,626 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: HELP!!! SQL Pin
toxcct12-Jul-05 6:17
toxcct12-Jul-05 6:17 
GeneralRe: HELP!!! SQL Pin
toxcct12-Jul-05 6:19
toxcct12-Jul-05 6:19 
GeneralRe: HELP!!! SQL Pin
Ray Guan12-Jul-05 20:15
Ray Guan12-Jul-05 20:15 
GeneralHELP!!!!! working with data grids Pin
Member 202519312-Jul-05 3:53
Member 202519312-Jul-05 3:53 
GeneralRe: HELP!!!!! working with data grids Pin
d.olsson12-Jul-05 4:14
d.olsson12-Jul-05 4:14 
GeneralDirectShow Applications in VB.NET Pin
Dr_Lomax12-Jul-05 1:56
Dr_Lomax12-Jul-05 1:56 
GeneralRe: DirectShow Applications in VB.NET Pin
Dr_Lomax12-Jul-05 10:50
Dr_Lomax12-Jul-05 10:50 
Generalrichtextbox transparent Pin
yohan4912-Jul-05 1:43
yohan4912-Jul-05 1:43 
hello, I have try to translate this code into vb.net but that does not function, my richtextbox is black, Can't you translate it into vb.net for me please



class TransparentControl : Control
{
public TransparentControl()
{
base.SetStyle( ControlStyles.UserPaint, true );
base.SetStyle( ControlStyles.DoubleBuffer, true );
base.SetStyle( ControlStyles.SupportsTransparentBackColor, true );
}
}

class TransparentRichTextBox : RichTextBox
{
public TransparentRichTextBox()
{
base.ScrollBars = RichTextBoxScrollBars.None;
}

override protected CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.ExStyle |= 0x20;
return cp;
}
}

override protected void OnPaintBackground( PaintEventArgs e )
{
}
}
GeneralRe: richtextbox transparent Pin
Anonymous12-Jul-05 4:30
Anonymous12-Jul-05 4:30 
GeneralValue of one field determines value of another field. Pin
macca2412-Jul-05 1:17
macca2412-Jul-05 1:17 
GeneralRe: Value of one field determines value of another field. Pin
toxcct12-Jul-05 1:39
toxcct12-Jul-05 1:39 
GeneralMaking A label and TextBox Appear and Disappear Pin
macca2412-Jul-05 0:40
macca2412-Jul-05 0:40 
GeneralRe: Making A label and TextBox Appear and Disappear Pin
seee sharp12-Jul-05 0:49
seee sharp12-Jul-05 0:49 
GeneralRe: Making A label and TextBox Appear and Disappear Pin
macca2412-Jul-05 1:05
macca2412-Jul-05 1:05 
GeneralRe: Making A label and TextBox Appear and Disappear Pin
seee sharp12-Jul-05 17:08
seee sharp12-Jul-05 17:08 
GeneralRe: Making A label and TextBox Appear and Disappear Pin
macca2412-Jul-05 22:15
macca2412-Jul-05 22:15 
Generalvb error Pin
Anonymous11-Jul-05 23:20
Anonymous11-Jul-05 23:20 
GeneralDrag n Drop in Listbox Pin
seee sharp11-Jul-05 22:45
seee sharp11-Jul-05 22:45 
Generalwed mailing Pin
kiru30611-Jul-05 21:37
kiru30611-Jul-05 21:37 
GeneralRe: wed mailing Pin
Dave Kreskowiak12-Jul-05 1:20
mveDave Kreskowiak12-Jul-05 1:20 
GeneralRe: wed mailing Pin
kiru30612-Jul-05 2:20
kiru30612-Jul-05 2:20 
GeneralCrystal Report Viewer Control Pin
Arshu78611-Jul-05 20:49
Arshu78611-Jul-05 20:49 
QuestionWhich event run when Winform be closed? Pin
rushing11-Jul-05 17:16
rushing11-Jul-05 17:16 
AnswerRe: Which event run when Winform be closed? Pin
Christian Graus11-Jul-05 18:53
protectorChristian Graus11-Jul-05 18:53 
GeneralRe: Which event run when Winform be closed? Pin
rushing11-Jul-05 22:25
rushing11-Jul-05 22:25 

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.