No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Hi, I made you a Small eg. Hope this will help you. [CODE] Private BS As New BindingSource Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim ds As New DataSet ' Make the Connection Using con As New OleDb.OleDbConnection("PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source = c:\StockDetails.mdb") con.Open() Dim Sql …
You need to have .Net framework redistributable on the Machine you want the application to work. Normally its is done with the setup of your Application.
This is an Example. [CODE] Dim NewButton = New Button With NewButton .Name = "MyButton" .Size = New Size(25, 25) .Location = New Point(50, 50) End With ' Add the Control Me.Controls.Add(NewButton)[/CODE] This is How to Move it [CODE]Me.Controls("MyButton").Top += 15[/CODE]
Right now I’m a bit Busy, I will give you a small help to start. You need to make a Private Dictionary to store all the Sales [CODE]Private _SPCars As New Dictionary(Of String, Integer)[/CODE] Make a 2 Textbox where the User can enter the SalePerson and the Amount of Car …
Hi, In the DataGridViewProgressColumn Class you need to do this [CODE] Public Overrides Function Clone() As Object Dim newObj As DataGridViewProgressColumn = MyBase.Clone() With newObj .BarShineColor = Me.BarShineColor .BarBGColor = Me.BarBGColor .BarColor = Me.BarColor End With Return newObj End Function [/CODE]
The End.
jason_debono