Click here to Skip to main content
15,891,607 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionVS 2005, Crystal reports replaces chars when exporting to PDF. Pin
Jaggernaut31-Jan-07 20:28
Jaggernaut31-Jan-07 20:28 
QuestionHow to pass parameter from one asp application to another Pin
manasram31-Jan-07 20:25
manasram31-Jan-07 20:25 
AnswerRe: How to pass parameter from one asp application to another Pin
Christian Graus31-Jan-07 22:22
protectorChristian Graus31-Jan-07 22:22 
AnswerRe: How to pass parameter from one asp application to another Pin
shreekar31-Jan-07 23:56
shreekar31-Jan-07 23:56 
GeneralRe: How to pass parameter from one asp application to another Pin
Christian Graus1-Feb-07 0:18
protectorChristian Graus1-Feb-07 0:18 
GeneralRe: How to pass parameter from one asp application to another Pin
shreekar1-Feb-07 0:26
shreekar1-Feb-07 0:26 
Questionsearching through a datagridview by searching on what the user types Pin
steve_rm31-Jan-07 15:48
steve_rm31-Jan-07 15:48 
AnswerRe: searching through a datagridview by searching on what the user types Pin
priya_p23331-Jan-07 16:16
priya_p23331-Jan-07 16:16 
hi steve,
following code may help u.

' ''-------------------Selecting searchText
Private Sub txtSearchEname_KeyPress(ByVal sender As Object, ByVal e As
System.Windows.Forms.KeyPressEventArgs) Handles txtSearch2.KeyPress

Dim strSearch As String
Dim i As Integer
If txtSearch2.Text = "" Then
Exit Sub
End If
strSearch = txtSearch2.Text
If Asc(e.KeyChar()) = 13 Then
For i = 0 To DgvEmpList.RowCount - 1
If (UCase(Trim(DgvEmpList.Item(2, i).Value)) Like "*" & (UCase(Trim(strSearch)))
& "*") Then
DgvEmpList.Rows(rowSelected).Selected = False
DgvEmpList.Rows(i).Selected = True
rowSelected = i
End If
Next

End If
End Sub

priya

AnswerRe: searching through a datagridview by searching on what the user types Pin
steve_rm31-Jan-07 20:54
steve_rm31-Jan-07 20:54 
QuestionRe: searching through a datagridview by searching on what the user types Pin
priya_p2335-Feb-07 17:11
priya_p2335-Feb-07 17:11 
AnswerRe: searching through a datagridview by searching on what the user types Pin
steve_rm7-Feb-07 5:56
steve_rm7-Feb-07 5:56 
QuestionRecieving keys pressed by user Pin
A*****31-Jan-07 15:04
A*****31-Jan-07 15:04 
AnswerRe: Recieving keys pressed by user Pin
Christian Graus31-Jan-07 16:26
protectorChristian Graus31-Jan-07 16:26 
QuestionHow to put unicode character or webdings charater to datagird header? Pin
lucyzhu31-Jan-07 13:57
lucyzhu31-Jan-07 13:57 
QuestionOpening a project Pin
josedariom31-Jan-07 13:24
josedariom31-Jan-07 13:24 
AnswerRe: Opening a project Pin
Ray Cassick31-Jan-07 13:30
Ray Cassick31-Jan-07 13:30 
GeneralRe: Opening a project [modified] Pin
josedariom31-Jan-07 13:35
josedariom31-Jan-07 13:35 
GeneralRe: Opening a project Pin
Ray Cassick31-Jan-07 13:44
Ray Cassick31-Jan-07 13:44 
GeneralRe: Opening a project Pin
josedariom31-Jan-07 14:01
josedariom31-Jan-07 14:01 
GeneralRe: Opening a project Pin
Christian Graus31-Jan-07 14:43
protectorChristian Graus31-Jan-07 14:43 
GeneralRe: Opening a project Pin
josedariom31-Jan-07 14:51
josedariom31-Jan-07 14:51 
GeneralRe: Opening a project Pin
Christian Graus31-Jan-07 16:26
protectorChristian Graus31-Jan-07 16:26 
QuestionPrinting a document in VB.NET 2005 Pin
harveyhanson31-Jan-07 11:18
harveyhanson31-Jan-07 11:18 
QuestionHow to tell if another application is active or not. [modified] Pin
rnamro31-Jan-07 9:54
rnamro31-Jan-07 9:54 
AnswerRe: How to tell if another application is active or not. Pin
shreekar1-Feb-07 0:07
shreekar1-Feb-07 0:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.