- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
12 Posted Topics
try this [CODE] Dim j As String j = Me.GridDomains.CurrentRow.Index Dim i As Integer = Integer.Parse(j) Me.lbdomainid.Text = GridDomains.Item(0, i).Value [/CODE] hope this helps you
if you have a look at this thread i solved it will provide the answers your looking for [url]http://www.daniweb.com/software-development/vbnet/threads/357136[/url] think this should help
hey everyone need to set focus onto a text box when the tab key is pressed because at the moment the focus jumps all over the place lol any help greatly appreciated
Can anyone help with this i am trying to populate a combobox with the returned values of an SQL statement from an access database the statement returns the values that i want but don't know how to pass the values into the combobox. SQL statement SELECT DISTINCT Stock_Name FROM Stock …
not sure if i completely follow your concept but this jumps out in your for loop so try this [CODE] For ndx = 0 To tcode.Count - 1 If ttype = "B" Then tshares = tshares+ tshares ElseIf ttype = "S" Then tshares = tshares - tshares End If Next[/CODE] …
sounds like a hard drive failure might need to replace it
hi can i assume this is the code you are using to update the database[CODE] Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Me.Validate() Me.ContactBindingSource.EndEdit() Me.TableAdapterManager.UpdateAll(Me.Assignment10DataSet) MsgBox("Saved") End Sub[/CODE] if so then this is actually the code that updates your database but if you have made …
try something like this [CODE] datagridview1.rows.add() dim row AS integer = datagridview1.rows.count -1 while row > 0 'if you have more cells in the row simple copy and paste the line below and change the cell ' number datagridview1.rows(row).cell(0).value = datagridview1.rows(row-1).cell(0).value datagridview1.rows(row).cell(1).value = datagridview1.rows(row-1).cell(1).value row = row -1 End While …
try system preferences>printer&Fax>options&suppliers>utility you should find the settings for duplex printing in this hope this helps
As far as am aware it is as simple as right clicking the icon in the applications folder and selecting move to trash. you can find this in FINDER >applications incase you are unsure how to get right click as i don't know what type of mac you are using …
when you say remember an activation serial do you mean just while the program is running or once entered to be held as activated and each time you start the program after the initial time it is set to be activated e.g. like windows does? if you mean like windows …
The End.
hercx