Creating Forms With Border Like Calendar Border?
Nov 15, 2010
How we can create a form with border like calendar border. I changed ControlBox to False and Text to vbnullstring. but only when FormBorderStyle is Sizable or SizableToolWindow form border apears. This form is sizable. Is there any way to create forms with this border but not sizable? I want to create form like this:[URL]
View 6 Replies
ADVERTISEMENT
Feb 3, 2011
I am trying to change every form title bar and border to green in my project. How do you change the all the forms title bar and border to green without changing other window applications title bar and border?
View 1 Replies
Aug 4, 2009
I am using vb express 2008.How I can have border around a Textbox or Label and change the color of border. Like we have different border styles and colours in MsWord and other applictions. Also how a Lable can be made transparent?
View 4 Replies
Jul 22, 2009
I want to divide the content in my application to groups each group has its own rectangle border with the group name located at the top border, i've seen it before and i'm not sure what is the correct name of this control, anyone knows what I'm talking about ? EDIT: Ok, I found the Groupbox Control but how do i use it? should i just drag other controls inside it or i should add controls directly into it?
View 2 Replies
Dec 7, 2010
how I could go about Changing the border of my Forms and the title bar of the forms. I would like to change it globally so that it would take effect on all my forms.
View 3 Replies
Feb 15, 2009
I want to do a container that seems like this: Wich containers must use?
View 1 Replies
Aug 30, 2010
I am currently working on a program that needs to execute an outside program and then remove the border from the program (The border that includes the minimize, maximize, and close buttons) and then embed it into my form. I have everything working except for removing the border. Anyone have some code to do that? I am using vb.net in VS2008.
View 5 Replies
Feb 28, 2009
i set my forms FormBorderStyle to None in vb.net.i want to assign a border line in different colour which is not inside the form.
View 1 Replies
Jan 28, 2009
Definitely data repeater is a very nice control. I can't remove the border of the data repeater control.It appears black by default. how to remove the border of the data repeater? I am using data repeater in my c# windows based application.
View 1 Replies
Nov 7, 2010
I create an app, with it when I click a button it opens a new form on a second monitor.
This works perfectly, but every first time the app start and I open the second form, on my primary screen (right side) I see the border of the second form. When I click the button again, the form is hidden, and when I click it again, it appears again but then the border is gone.
[Code]....
View 1 Replies
Feb 14, 2011
I have an image and i would like to add white border to surround it. Any idea how to do it? I have tried some method but no avail.
imageWithWhiteBorder = AppendBorder(Image.FromFile(dest), 10)
imageWithWhiteBorder.Save("C:Documents and Settingsdesktop ry.jpg")Public Function AppendBorder(ByVal original As Image, ByVal borderWidth As Integer) As Image
[code]....
View 7 Replies
Jun 11, 2011
I need the label control to be bordered in any of one colour.addition to that i need the textbox to be shape arc bended on corners
View 2 Replies
Mar 7, 2012
I need to build a custom WPF Control something like this
As I am new in WPF, I used the following code (sorry for VB.NET)
CODE:
Now
1) Is it the best way to do it, considering that I will inherit that control and need the same border on the inherited controls
2) Is it good to specify the default value for the BorderBrush (to be non-transparent), like I did?
3) Why my corners are moved with a pixel (not really right linked)?
View 3 Replies
Mar 30, 2009
In my XAML I want to dynamically generate a ListBox with the following:
[Code]...
View 3 Replies
Nov 21, 2011
I am working on an ASP.Net website and have a GridView displaying some data,in the OnRowDataBound event I am setting the border of the row for certain rows based on some criteria. This all worked fine when I was testing my pages locally, however when I put these pages within our master page (this is part of a company intranet site) the row borders disappear in IE yet display fine in firefox.
Is there anything that could be causing this? So far there is no CSS style applied that I know of as I set the border inside the event handler like so:
e.Row.BorderStyle = BorderStyle.Solid
e.Row.BackColor = Color.FromName("#fed69c")
e.Row.BorderColor = Color.FromName("Red")
[code].....
View 2 Replies
Jul 7, 2011
How do you put a blue border around a button used in a VB form? I cant seem to figure it out!
View 8 Replies
Jan 28, 2011
Is there a way to change the border color for buttons created using vb.net?
View 13 Replies
Nov 14, 2011
I want to achieve this in .NET either in WPF or VB.NET
I have a passport size photograph. In that I want to implement a fade effect on image border. The fade parameter we pass would be the pixel width and we require to fade image border such that fade depth is decided by this parameter.
Note:- I am not using any controls to hold this image. Customer will upload the images in the applications and we will modify the above required and send them through email it is going to be console application. any WPF or VB Controls to implement this.
View 1 Replies
Oct 23, 2009
I have a RichTextbox set to Border style FixedSingle.. I want to have a blue boarder around my richtextbox, but it is always gray.. How do you go about changing the border color of a RichTextBox?
Obviously this doesn't work:
RichTextBox1.bordercolor = Color.Blue
I have been googling for a while and haven't found anything useful yet...
View 2 Replies
Jan 20, 2011
I've been struggling with, how can I create a form without its border but still keep the three buttons on the right hand side (minimize, expand/contract, close)
View 5 Replies
Jan 21, 2010
There are two available in BorderStyle(namely, FinxeSingle and Fixed3D). I wanted to apply a custom dashed border to a picture box.
View 2 Replies
May 3, 2010
I am building a Windows Forms app without a border, so I have complete control over the interface. A few years ago I managed to create a VB6 app that I could drag the form using a control on it, but I cannot for the life of me remember how to do it, and Google has failed me.
View 2 Replies
Aug 5, 2010
Drawing a 3-D border should be easy enough, right? Nope. Does anyone know how to draw a border that looks exactly like TextBox's? Right now, I'm just drawing black lines at the top + left and white at the bottom + right but the bevel isn't nice and when the background color is white, the bottom + right don't show up.
View 8 Replies
Apr 11, 2010
I need to draw a border of a certain width around a new bitmap.
I want to use Graphics.DrawLines, because i may want to draw the Horizontal or Vertical borders only.
For Example:
Code:
'Add this to a button on a blank form
Dim Canvas As New Bitmap(100, 100)
Dim G As Graphics = Graphics.FromImage(Canvas)
[Code]....
Ive fiddled around with this, but i cant get the math right. What must i do to get the border of the correct width around my bitmap?
Also do i need the first "G.Dispose()"?
View 6 Replies
Feb 12, 2009
how to disable the form border, and just have 1 button when your form loads i put a button on my form and i changed the background image but i can still see the border i know how to remove the controls on the form but i wanna see just a picture like bellow..
as you can see the form doesnt have any borders and that is what it loads when you click on the program.
View 2 Replies
Oct 22, 2011
If I use a button, I can't get rid of the white border apearing around it as soon as I press it. It stays there even after until I press something else. In the button properties I declared the Flatstyle as Standard because I like that look the most.
View 9 Replies
Feb 7, 2012
How to make a border in excel from VB.net?
View 4 Replies
Apr 29, 2011
I am trying to make a form with a border like the border on the Windows Vista volume control. The form would need to be resizeable as well.
Here is a form with the ControlBox property set to false.
View 4 Replies
Dec 21, 2010
I have searched on this but I keep finding people trying to keep others from moving forms. And also nothing in the code bank.
Here is what I am making. I am making a tournament overlay program that tracks current players progress for shoutcasters (displays their name, race, score, color, ect).
I have a control panel that will change all that information on another form, the borderless one, that will "Always be on top" of the game displaying information.
View 4 Replies
Mar 23, 2008
If a form has its form border style set to None, how would you go about moving it?
I thought that this would work:
Private Sub Form1_MouseDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseDown
Me.Location = MousePosition
End Sub
but it doesn't.
View 21 Replies