Click here to Skip to main content
15,897,371 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: how could an image be captured from an avi file in vb.net? Pin
Christian Graus9-Feb-07 23:40
protectorChristian Graus9-Feb-07 23:40 
Questionurgent help needed in DataGrid & ComboBox Pin
costavo9-Feb-07 22:44
costavo9-Feb-07 22:44 
AnswerRe: urgent help needed in DataGrid & ComboBox Pin
Christian Graus9-Feb-07 22:56
protectorChristian Graus9-Feb-07 22:56 
GeneralRe: urgent help needed in DataGrid & ComboBox Pin
costavo9-Feb-07 22:59
costavo9-Feb-07 22:59 
GeneralRe: urgent help needed in DataGrid & ComboBox Pin
Christian Graus9-Feb-07 23:10
protectorChristian Graus9-Feb-07 23:10 
QuestionRe: urgent help needed in DataGrid & ComboBox Pin
costavo9-Feb-07 23:13
costavo9-Feb-07 23:13 
AnswerRe: urgent help needed in DataGrid & ComboBox Pin
Christian Graus9-Feb-07 23:27
protectorChristian Graus9-Feb-07 23:27 
GeneralRe: urgent help needed in DataGrid & ComboBox Pin
costavo9-Feb-07 23:34
costavo9-Feb-07 23:34 
''The SQL select Command
Private Sub conn()
dt = ProfileDAO.ExecuteStrDt("SELECT [ComputerName], [Comming], [Leaving], [TotalTime], [IncludeTotalTime], [OverTime],[overtimeckh] FROM [HR].[dbo].[WorkingHours] )
DGtimeS.DataSource = dt
End Sub
' I am Accessing the db without problems
' the comboBox is also connected to db and retriving data without problems
Private Sub ttt1()
Dim FullName1 As String
Dim i As Integer


dt = ProfileDAO.ExecuteStrDt("Select EmployeeID, FirstName, fatherName, LastName from Employees order by FirstName")

Me.CmbEmployees.Items.Clear()
With CmbEmployees
For i = 0 To dt.Rows.Count - 1
FullName1 = dt.Rows(i)(1) & " " & dt.Rows(i)(2) & " " & dt.Rows(i)(3)
.Items.Add(New Mylist(FullName1, dt.Rows(i)(0)))
Next

End With

End Sub
'what i want is to connect the combo box and the data grid
'vb 2003 & sql 2000
is that possible
& if u give me ur email i may send u code of the app


GeneralRe: urgent help needed in DataGrid & ComboBox Pin
Christian Graus9-Feb-07 23:38
protectorChristian Graus9-Feb-07 23:38 
QuestionRe: urgent help needed in DataGrid & ComboBox Pin
costavo9-Feb-07 23:42
costavo9-Feb-07 23:42 
AnswerRe: urgent help needed in DataGrid & ComboBox Pin
Christian Graus9-Feb-07 23:45
protectorChristian Graus9-Feb-07 23:45 
Generalurgent help needed in DataGrid & ComboBox Pin
costavo10-Feb-07 0:01
costavo10-Feb-07 0:01 
QuestionHow can I insert row in excel by vb.net? Pin
jeam_yang9-Feb-07 22:38
jeam_yang9-Feb-07 22:38 
AnswerRe: How can I insert row in excel by vb.net? Pin
Christian Graus9-Feb-07 22:57
protectorChristian Graus9-Feb-07 22:57 
GeneralRe: How can I insert row in excel by vb.net? Pin
jeam_yang10-Feb-07 21:28
jeam_yang10-Feb-07 21:28 
GeneralRe: How can I insert row in excel by vb.net? Pin
Christian Graus10-Feb-07 21:56
protectorChristian Graus10-Feb-07 21:56 
QuestionVery Long Integers Pin
The ANZAC9-Feb-07 22:35
The ANZAC9-Feb-07 22:35 
AnswerRe: Very Long Integers Pin
Christian Graus9-Feb-07 22:58
protectorChristian Graus9-Feb-07 22:58 
AnswerRe: Very Long Integers Pin
arcticbrew10-Feb-07 10:53
arcticbrew10-Feb-07 10:53 
QuestionDatagrid with checkbox? Pin
.NetRams9-Feb-07 22:23
.NetRams9-Feb-07 22:23 
AnswerRe: Datagrid with checkbox? Pin
Christian Graus9-Feb-07 22:58
protectorChristian Graus9-Feb-07 22:58 
Questioncrystal reports connection thru vb6 Pin
RSDT9-Feb-07 18:10
RSDT9-Feb-07 18:10 
QuestionHow to fill data/items in datagrid column with button(dropdown list) [modified] Pin
RSDT9-Feb-07 18:01
RSDT9-Feb-07 18:01 
QuestionColoring rows in DatagridView Pin
charchabil039-Feb-07 12:37
charchabil039-Feb-07 12:37 
AnswerRe: Coloring rows in DatagridView Pin
Star Vega10-Feb-07 4:52
Star Vega10-Feb-07 4:52 

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.