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 #4K
~3K People Reached
Favorite Forums
Favorite Tags
Member Avatar for spinnaret

I have an application which calls an external process. I would like this process to be open as soon as it is called. i.e. with no user interaction. This is because I would like to send Keys to it to interact. I know how crude this is but this is …

Member Avatar for eryrasa
0
2K
Member Avatar for spinnaret

OK so I have a datagridview I get information from a stored proceudre this will have duplicates How can I tidy up the code below which deletes duplciates? [code] 'Ensure there are no duplicate SchoolChilds icountcount = dgvRegionalGrid.Rows.Count - 1 iWaitTime = 10 For icount = 1 To icountcount 'Check …

Member Avatar for Teme64
0
98
Member Avatar for spinnaret

I have a datagridview on a form I want to conditionally insert a seperator between rows. [code] For iRow = 1 To dgvUserlist.rowcount If dgvUSERLIST.Item("USER", iRow).Value <> dgvUserlist.Item("USER", iRow - 1).Value Then dgvUserlist.Rows.Add(iRow) [b] DO STUFF HERE[ /B] End If Next [/code] So I want to compare the value of …

0
51
Member Avatar for spinnaret

Hello I need to remove the first character of every string in a datagridview. However when I try to use datgridview.item(x,y).value.tostring.substring I get an error because I do not know the lenghtb of the substring. Any ideas?

Member Avatar for Teme64
0
235
Member Avatar for spinnaret

Hello, Does anyone know how to pass a prameter to vb.net program that will run behind an exist vb 6 program. I have been given an instruction to write the new functionality in vb.net and integrate it with vb 6. Many Thanks S

Member Avatar for Teme64
0
113
Member Avatar for spinnaret

Hello, Does anyone know how to pass a prameter to vb.net program that will run behind an exist vb 6 program. I have been given an instruction to write the new functionality in vb.net and integrate it with vb 6. Thanks Guys S I also published this to the VB …

0
48
Member Avatar for spinnaret

I need to write a stored procedure to analyse appointments for the last 12 months. I need to get each salesperson (by ID) and for each person carry out a count of the number of appointments and count them by outcome (sale, second meeting , failure etc.) and then display …

Member Avatar for spinnaret
0
85
Member Avatar for liquoriser21

Hi everyone! How do I format the layout of the datagridview to display header titles the way I want? and how do I format the layout to display the rows in multiple color mode. Any type of help wil be appreciated Lets do what we do best!

Member Avatar for liquoriser21
0
154
Member Avatar for spinnaret

Is there any way to identify the specific instance of word that a vb.net applcation creates [code] objWord = New Microsoft.Office.Interop.Word.Application objWord.Documents.Open("C:\TestFile.rtf") objWord.Visible = True [/code] In the text above how can identify this instance of word to close it after a specific event or period of time.

Member Avatar for Teme64
0
80
Member Avatar for spinnaret
Member Avatar for Teme64
0
98
Member Avatar for spinnaret

I have a a process that loads a datset and prints it in VB.net. I need to make this available to avb6 legacy application. Does anyone know how to do this?

0
36
Member Avatar for spinnaret

Hello All, I would like to programatically set the Column borders for a datagrid based on the column Index. So I would like Columns(3) for exampe, to have a border but not Columns(1) or Columns(2). The only thing remotely like this I can find is the datagridview grid setting. But …

Member Avatar for spinnaret
0
126
Member Avatar for spinnaret

Hello All, I would like to display charts based on some conditions being fulfilled. I have pseudocoded the information. If the use of pseudocode is not acceptable please inform me and I will code it in vb. Essentially I need to display inofrmation about Multidisciplinary Teams in a number of …

0
57