No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
How do i make a Vertical Scrollbar work for a Form ? i Tried Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load VScrollBar1.Maximum = (Panel1.Height - Me.Height) + 500 VScrollBar1.SmallChange = 50 VScrollBar1.LargeChange = 100 End Sub Private Sub VScroll1_Change() Panel1.Top = 0 - VScrollBar1.Value End … | |
Greetings, If i as for example have this: This is my main window Class MainWindow Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles Button1.Click Dim Other As New Window1 Other.Show() End Sub End Class This is the window that opens when button is clicked Public Class Window1 … | |
Greetings, Id like to know what the actual differences is between WPF and Windows Forms.. When i compare those two it just seems like WPF has way more functions, such as using xaml aswell as the standard functions from Windows Forms, also seems to have many more feutures ? So … | |
Greetings, i would like to use Pictures/Images instead of text when i hover my mouse over a e.g. button.. I found this site: http://blogs.artinsoft.net/Mrojas/archive/2006/12/01/ToolTip-with-Images.aspx#comment but i got no clues on how to work with it. Is there any way simplier than this to add picture/image instead of text to a … | |
Greetings, Id like to know how it is possible, if it is possible, to load some informations from a Game to your project. Example lets say we have a skill in a game, and id like to load the informations from that skill to my project. Having a combobox with … | |
Greetings, A select case is easier to keep track of, or atleast for me it is. So why use If functions ? Don't they do basicly the same ? | |
Greetings, I want to add some numbers to a combobox, i want the numbers to be from 1-100 but instead of writing example combobox1.items.addrange({1, 2, 3, 4, 5, etc, 100}) how can i else write it ? :) TY | |
Greetings, Is it possible to make a Tooltip show a picture ? Like if i hover my mouse over a label as for example a small cut of a picture is shown ? | |
Greetings, I'm creating a calculator for a game.. However when i use the code below, i get this error message: Conversion from string "" to type 'Double' is not valid. Private Sub DualTimer_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DualTimer.Tick If BuildCombo.Text = "Main-Hand + Off-Hand" Then APSDPS3.Text … | |
Greetings, I'm a bit new at Visual Basic 2010, and i have one main problem. I want to creat a Calculator for a game, however i have issues getting it to work. When i select a setting from my main Combobox i want it to add different settings for the … |
The End.