VS 2010 Make Windows 7 Like Buttons?
Jan 12, 2011Take a look here.. [URL] How do I make this kind of button in my apps/
View 1 RepliesTake a look here.. [URL] How do I make this kind of button in my apps/
View 1 RepliesI like to know how to make the forms buttons and text and data... auto adjust when windows Maximize or minimaze..because when its big I can see everything fine and when I restore to a smaller window the buttons are on the bottom and cant see them... Basically I want everything to look in the same position whether its a small window or big or at least that it has scroolbars if I see it small.
View 2 Replieshow cam I get/make GOOD circle buttons-like the ones used to go back and forward in windows explorer?
View 7 RepliesI want to make a deskband app that displays some text and buttons like windows media player when minimized on taskbar. What is the necessary imports / dll i need to use ?
View 1 RepliesI'm trying to make buttons that will open each of the "special folders" in Windows Vista. Here's an example:
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
Process.Start("explorer.exe", Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments))
End Sub
As you can see in the above code, the button will open the Documents folder. My problem is the only folders this method can open are the documents, pictures and music folders, while I also want to open these folders below:
Downloads
Videos
User folder (aka the folder that has the user name on it)
Computer (aka My Computer in XP)
how to do that?
So im creating a mail bomber here is the code
Imports System.Net.Mail
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)
[CODE]...
Pretty simble but im trying to make buttons that chage between [URL] and [URL]on the timer code
Dim MyMailMessage As New MailMessage()
MyMailMessage.From = New MailAddress(TextBox1.Text)
MyMailMessage.To.Add(TextBox3.Text)
[CODE]...
i have 4 different handles buttons with code how can i connect them in another "general button" that will make the 4 buttons to work with one click
View 3 RepliesIs there a better way to make a form with multiple buttons opening different things than having a form that has lots group boxes for each tab. So in the begining each box will be invisible and when you click the button the corresponding group box will become visible. Is there any other way?It will be like a background image and it'll have buttons that will mask it with invisible buttons. when the button is clicked it will open the corresponding group box.
View 5 RepliesI'm trying to create a Windows Simulator. It will do basics, of course not the whole systemWhat I have currently:esktop with full screen (Optimizes for your screen and streches it for your resolution).simple taskbar with the menu.clock at the notifcation area.Desktop refresh (Will refresh icons as Windows does).now how to.
View 6 Repliesim making some stuff using VB 2010 recently (im new to VB 2010) and well...i wanna make it into an executable file, how do i do it?
View 1 RepliesI'm working with a ListView. I wanna make listview like Windows Explorer style.
View 3 RepliesI'm using VB 2010 and simply want to have a button on the form that says Minimize.I want the form to minimize to the task bar or the notification section .I've looked at other ideas, but the code is for prior versions of VB (2003 and 2005) and some for C #Could you please email me some sample code to handle this?
View 4 RepliesI want my program to once a certain button is pushed it opens up a new picturebox on another application. I've already made the new application to be opened, but I have no idea how to link the two different applications like this.
I want it to open up basically like a messagebox
I have a piece of software with two tabs, inside each tab there are buttons (the user can add the buttons when they want). when tab1 is full tab2 should start to fill. I currently know how many buttons fit on the screen so I just say something like if buttons > 150 then start to populate tab 2 The problem i have now though is if the resolution is changed then a different amount of buttons can be displayed. so if I put my screen to 1280x720 some buttons are left of. I was thinking of detecting the resolution and then using different cases for different resolutions but this seems very inefficient im wondering if there is a different way?
View 5 RepliesSo I am having difficulty coding with radio buttons. I have 4 radio buttons in 2 different lists.
CODE:
Thought of posting one request after several days research in Google. Im currently developing small application and I would like to keep my login account as look same like Windows 8 login screen.
Can somebody help me or guide me to correct direction. Im using VB 2010 and I need to do this with winform application.
required kind of screen is attached.
1. [IMG]D:imageslogon_selection.jpg[/IMG]
2.[IMG]D:imagesSelected_logon_account.jpg[/IMG]
Can somebody send me a sample code to my E-Mail. I want to know how to make a buttons to Visual Basic. I need a source code for two buttons and a number display. One button Increases the number. Othe Decreases the number. Can you send a code as a attachment to my E-Mail.
View 5 RepliesHow do I make a connection between a button and textbox when using windows form applications. In other words, if a button is clicked on, how do I assign it to read that certain textbox where the information was entered?
View 4 RepliesDo you know of any tutorial that could help me make a custom button in vb.net. Because visual studio 2008 doesn't allow you to create buttons in circle or triangular shapes. I've tried searching and found this one but, I cannot make use of it because there are lots of errors.url...
View 1 RepliesI am trying to make a working calculator. Would like to learn about events in the process.Primative example:Sub Subroutine(ByVal sender As System.Object, ByVal e As System.EventArgs)What does the 'e' stands for?
View 1 RepliesI am currently just starting to make a game. I used graphics to create the main menu buttons, but it doesn't have a click event. So what do I do to get it to do something when I click on it.
View 6 Repliesis there a way to make an arry of buttons in vb.net in VB6.0 there is a prop of buttons name Index but not in VB.NET so if there is some way to do that,[code...]
View 2 Replieshow to make changes to the (command) buttons? I dont know working with user controls so if you can please tell me some books to read about
View 2 RepliesHow do I make hotkeys for buttons, which will activate it, like I pressed the button?
View 4 RepliesI have several textboxes in my form and a groubbox that have four radiobuttons. I want all the values of the textboxes (and the selection of the radiobuttons) to be stored in sql server. As far as the values of the textboxes in concerned, I managed to do it. But what about the selection of the radiobuttons??? This is the code I am using for the textboxes:
objConnection.Open()
objDataAdapter.InsertCommand = New SqlCommand()
objDataAdapter.InsertCommand.Connection = objConnection
[code].....
I am thinking of creating a form with buttons on the left and different datagridview tables on the right just like the screenshot I have taken. May I know which component on the toolbox can I use to in order to achieve it?group box or splitcontainer?
View 11 RepliesI am trying to make a calculator with one textbox and 16 buttons. Buttons are:(0,1,2,3,4,5,6,7,8,9,+,-,*,/,=,C). So here is code for now:
vb.net Private Sub nula_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles nula.Click
TextBox1.Text = TextBox1.Text & 0
End Sub
Private Sub jedan_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles jedan.Click
TextBox1.Text = TextBox1.Text & 1
[Code]...
When I add those numbers and operators its easy, but how make operations really work now?
How to make a control array for buttons in VB.Net? like in VB6..
is it possible that the syntax can be like this?
dim a as button
for each a as button in myForm
a.text = "hello"
next
Is it possible to make custom buttons for the forms? I know i can add imaging to the button controls, but if is it possible to really customize the buttons so they look different, like designs instead of blocks?
View 3 RepliesI come from using REAL Studio (formerly REALbasic)on the Mac + Windows.I just got MS Visual Studio and I am using the "Basic" language part of VS. in REAL Studio there is a property pane where you can select a button and make it the default button.I looked at the property pane in Visual Studio and couldn't figure out how to make one of my buttons the default button.
View 9 Replies