Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #27.9K
Ranked #4K
~4K People Reached
Favorite Forums

5 Posted Topics

Member Avatar for lovely ari

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 …

Member Avatar for Ruzz
0
3K
Member Avatar for rajprabuit

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.

Member Avatar for jjf_kira
-1
219
Member Avatar for chirup

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]

Member Avatar for jason_debono
0
59
Member Avatar for SarahInc23

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 …

Member Avatar for jason_debono
0
156
Member Avatar for me655321

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]

Member Avatar for me655321
0
285

The End.