Click here to Skip to main content
15,905,874 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Need Help on Custom Action Installer Pin
Dave Kreskowiak22-Oct-08 4:22
mveDave Kreskowiak22-Oct-08 4:22 
GeneralRe: Need Help on Custom Action Installer Pin
Saseendran Kombath23-Oct-08 4:15
Saseendran Kombath23-Oct-08 4:15 
QuestionHow do remove unwanted coulmns from a data grid? Pin
Arun Philip R21-Oct-08 8:09
Arun Philip R21-Oct-08 8:09 
AnswerRe: How do remove unwanted coulmns from a data grid? Pin
Wendelius21-Oct-08 8:28
mentorWendelius21-Oct-08 8:28 
QuestionRe: How do remove unwanted coulmns from a data grid? Pin
Arun Philip R21-Oct-08 8:41
Arun Philip R21-Oct-08 8:41 
AnswerRe: How do remove unwanted coulmns from a data grid? Pin
Wendelius21-Oct-08 8:50
mentorWendelius21-Oct-08 8:50 
GeneralRe: How do remove unwanted coulmns from a data grid? Pin
Arun Philip R22-Oct-08 3:22
Arun Philip R22-Oct-08 3:22 
AnswerRe: How do remove unwanted coulmns from a data grid? Pin
Arun Philip R22-Oct-08 4:00
Arun Philip R22-Oct-08 4:00 
Private Sub ofdExcelReader_FileOk(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ofdExcelReader.FileOk
Dim DataViewExcel As DataView
txtTempXls.Text = ofdExcelReader.FileName

DataViewExcel = FillDataSet()
If (DataViewExcel.Table.Rows.Count < 1) Then
MsgBox("This Sheet Is Empty. Please Select Another Sheet", MsgBoxStyle.OkOnly)
Else
dgvExcelColumn.DataSource = DataViewExcel
dgvExcelColumn.AutoResizeColumn(0)
dgvExcelColumn.AutoResizeColumn(1)
'Me.dgvExcelColumn.Columns(0).Visible = False
End If
End Sub

Mike this the code tht i use to read t excel into th grid n i am using visual studio 2005
GeneralRe: How do remove unwanted coulmns from a data grid? Pin
Wendelius22-Oct-08 7:36
mentorWendelius22-Oct-08 7:36 
AnswerRe: How do remove unwanted coulmns from a data grid? Pin
Arun Philip R6-Nov-08 6:32
Arun Philip R6-Nov-08 6:32 
GeneralRe: How do remove unwanted coulmns from a data grid? Pin
Wendelius6-Nov-08 7:02
mentorWendelius6-Nov-08 7:02 
AnswerRe: How do remove unwanted coulmns from a data grid? Pin
Anoop Brijmohun22-Oct-08 0:20
Anoop Brijmohun22-Oct-08 0:20 
GeneralRe: How do remove unwanted coulmns from a data grid? Pin
Arun Philip R22-Oct-08 3:28
Arun Philip R22-Oct-08 3:28 
GeneralRe: How do remove unwanted coulmns from a data grid? Pin
Anoop Brijmohun22-Oct-08 3:49
Anoop Brijmohun22-Oct-08 3:49 
AnswerRe: How do remove unwanted coulmns from a data grid? Pin
Arun Philip R22-Oct-08 3:58
Arun Philip R22-Oct-08 3:58 
GeneralRe: How do remove unwanted coulmns from a data grid? Pin
Anoop Brijmohun22-Oct-08 4:31
Anoop Brijmohun22-Oct-08 4:31 
AnswerRe: How do remove unwanted coulmns from a data grid? Pin
Arun Philip R22-Oct-08 4:48
Arun Philip R22-Oct-08 4:48 
GeneralRe: How do remove unwanted coulmns from a data grid? Pin
Anoop Brijmohun22-Oct-08 5:00
Anoop Brijmohun22-Oct-08 5:00 
GeneralRe: How do remove unwanted coulmns from a data grid? Pin
Jon_Boy22-Oct-08 6:29
Jon_Boy22-Oct-08 6:29 
AnswerRe: How do remove unwanted coulmns from a data grid? Pin
Arun Philip R6-Nov-08 6:36
Arun Philip R6-Nov-08 6:36 
AnswerRe: How do remove unwanted coulmns from a data grid? Pin
Dave Kreskowiak22-Oct-08 5:07
mveDave Kreskowiak22-Oct-08 5:07 
GeneralRe: How do remove unwanted coulmns from a data grid? Pin
Arun Philip R22-Oct-08 5:53
Arun Philip R22-Oct-08 5:53 
GeneralRe: How do remove unwanted coulmns from a data grid? Pin
Dave Kreskowiak22-Oct-08 11:00
mveDave Kreskowiak22-Oct-08 11:00 
AnswerRe: How do remove unwanted coulmns from a data grid? Pin
Arun Philip R6-Nov-08 6:38
Arun Philip R6-Nov-08 6:38 
QuestionMDI Parent Picturebox control always stays on top of child forms..... NEED HELP!!!! Pin
Joey Picerno21-Oct-08 5:37
Joey Picerno21-Oct-08 5:37 

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.