Visual Studio Help, can someone help with the followingcode?
Solution
Source Code:
Public Class Wallpaper_Warehouse
‘Once you double click on form, this function will generateautomatically’
‘This function will be called during form load’
‘ so we need to populate our combobox with our item’
Private Sub Wallpaper_Warehouse_Load(sender As Object, e AsEventArgs) Handles MyBase.Load
‘This is simple for loop running from 1 to 30’
‘And each iteration, we add item(i.e. value of i) in our 3combobox’
For i As Integer = 8 To 30
LengthCombo.Items.Add(i)
WidthCombo.Items.Add(i)
HeightCombo.Items.Add(i)
Next
‘This combobox need different value than other 3’
‘It need value from 30 to 40 with increment step of 0.5, so make ias decimal’
For
OR
OR