Click here to Skip to main content
15,886,963 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: passing Custom Class to Web Service Pin
BobsAfro21-May-07 3:43
BobsAfro21-May-07 3:43 
GeneralRe: passing Custom Class to Web Service Pin
Dave Kreskowiak21-May-07 4:45
mveDave Kreskowiak21-May-07 4:45 
AnswerRe: passing Custom Class to Web Service [modified] Pin
Dave Herren21-May-07 4:53
Dave Herren21-May-07 4:53 
QuestionFind and Bind Data From MDB. Pin
NANCO21-May-07 0:56
NANCO21-May-07 0:56 
AnswerRe: Find and Bind Data From MDB. Pin
Sonia Gupta21-May-07 1:08
Sonia Gupta21-May-07 1:08 
GeneralRe: Find and Bind Data From MDB. Pin
NANCO21-May-07 3:18
NANCO21-May-07 3:18 
QuestionHow to insert combobox in datagrid by using VB.Net? Pin
Nagarjuna M20-May-07 23:26
Nagarjuna M20-May-07 23:26 
QuestionRe: How to insert combobox in datagrid by using VB.Net? [modified] Pin
Sonia Gupta20-May-07 23:41
Sonia Gupta20-May-07 23:41 
in vb.net 2003?
I was using flexgrid(vb6 control) in 2003.In the form i drag droped a combo box also.then on the cell click i am making that combobox visible right at in that cell.
for that i wote the following code.

Private Sub flxGrid_ClickEvent(ByVal sender As Object, ByVal e As System.EventArgs) Handles flxgrid.ClickEvent
Dim xPos, yPos As Integer
Try
grdCol = flxgrid.Col
grdRow = flxgrid.Row
cmbChange.Visible = False

cmbChange.Width = CInt(0.068 * flxgrid.CellWidth)
cmbChange.Height = CInt(0.068 * flxgrid.CellHeight)

xPos = (flxgrid.Location.X + CInt(0.068 * flxgrid.get_ColPos(flxgrid.Col))) - 2
yPos = (flxgrid.Location.Y + CInt(0.068 * flxgrid.get_RowPos(flxgrid.Row))) '((flxGrid.Row + 1) * 20))

cmbChange.Left = xPos
cmbChange.Top = yPos

' m_ObjClsGeneral = New Generic.clsGeneral(gStrConn)
If flxgrid.Col = 2 Then ''For Actual Shift
Call FillShifts()
cmbChange.Visible = True
ElseIf flxgrid.Col = 3 Then ''For Status

Call FillStatus()
cmbChange.Visible = True
End If
End Sub

-- modified at 5:46 Monday 21st May, 2007
AnswerRe: How to insert combobox in datagrid by using VB.Net? Pin
Dave Kreskowiak21-May-07 3:28
mveDave Kreskowiak21-May-07 3:28 
QuestionChanges in clipboard Pin
ParagGupta20-May-07 23:03
ParagGupta20-May-07 23:03 
QuestionRe: Changes in clipboard Pin
Sonia Gupta20-May-07 23:08
Sonia Gupta20-May-07 23:08 
AnswerRe: Changes in clipboard Pin
Christian Graus20-May-07 23:22
protectorChristian Graus20-May-07 23:22 
QuestionHow to solve this problem? Pin
braleping20-May-07 22:48
braleping20-May-07 22:48 
AnswerRe: How to solve this problem? Pin
Sonia Gupta20-May-07 22:55
Sonia Gupta20-May-07 22:55 
AnswerRe: How to solve this problem? Pin
Sonia Gupta20-May-07 23:16
Sonia Gupta20-May-07 23:16 
GeneralRe: How to solve this problem? Pin
Guffa21-May-07 0:11
Guffa21-May-07 0:11 
AnswerRe: How to solve this problem? Pin
Dave Kreskowiak21-May-07 3:25
mveDave Kreskowiak21-May-07 3:25 
QuestionUSER PROFILE Pin
Sonia Gupta20-May-07 21:22
Sonia Gupta20-May-07 21:22 
AnswerRe: USER PROFILE Pin
Christian Graus20-May-07 22:20
protectorChristian Graus20-May-07 22:20 
QuestionRe: USER PROFILE Pin
Sonia Gupta20-May-07 22:24
Sonia Gupta20-May-07 22:24 
AnswerRe: USER PROFILE Pin
Christian Graus20-May-07 23:21
protectorChristian Graus20-May-07 23:21 
GeneralRe: USER PROFILE Pin
Sonia Gupta20-May-07 23:24
Sonia Gupta20-May-07 23:24 
AnswerRe: USER PROFILE Pin
Dave Kreskowiak21-May-07 3:23
mveDave Kreskowiak21-May-07 3:23 
QuestionSay Good Morning when User Start his machine through Windows Service Pin
varshavmane20-May-07 21:02
varshavmane20-May-07 21:02 
AnswerRe: Say Good Morning when User Start his machine through Windows Service Pin
Sonia Gupta20-May-07 21:24
Sonia Gupta20-May-07 21:24 

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.