Click here to Skip to main content
15,888,579 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionhow to buy vb6.0 and vb.net and asp.net Pin
ciacia3-Apr-07 8:54
ciacia3-Apr-07 8:54 
AnswerRe: how to buy vb6.0 and vb.net and asp.net Pin
abbss.gaurav3-Apr-07 9:14
abbss.gaurav3-Apr-07 9:14 
GeneralRe: how to buy vb6.0 and vb.net and asp.net Pin
ciacia4-Apr-07 9:44
ciacia4-Apr-07 9:44 
AnswerRe: how to buy vb6.0 and vb.net and asp.net Pin
Dave Kreskowiak3-Apr-07 9:36
mveDave Kreskowiak3-Apr-07 9:36 
Questionbinding radio buttons with currency manager??? Pin
abbss.gaurav3-Apr-07 8:30
abbss.gaurav3-Apr-07 8:30 
AnswerRe: binding radio buttons with currency manager??? Pin
Dave Kreskowiak3-Apr-07 9:40
mveDave Kreskowiak3-Apr-07 9:40 
QuestionCombo selection Pin
Anybloodyid3-Apr-07 8:10
Anybloodyid3-Apr-07 8:10 
AnswerRe: Combo selection Pin
Stigmurder3-Apr-07 8:44
Stigmurder3-Apr-07 8:44 
heres a snippet from a prog a wrote in vb6

Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long

Public Const CB_ERR = (-1)
Public Const CB_FINDSTRING = &H14C

Private Sub Combo1_Keypress(Keyascii As Integer)
Dim CB As Long
Dim Findstring As String
If Keyascii <32 Or Keyascii > 127 Then Exit Sub

If Combo1.Sellength = 0 Then
Findstring = Combo1.Text & Chr$(Keyascii)
Else
Findstring = Left$(Combo1.Text, Combo1.Selstart) & Chr$(Keyascii)
End If

CB = Sendmessage(Combo1.hwnd, CB_FINDSTRING, -1, Byval Findstring)

If CB <> CB_ERR Then
Combo1.Listindex = CB
Combo1.Selstart = Len(Findstring)
Combo1.Sellength = Len(Combo1.Text) - Combo1.Selstart
End If
Keyascii = 0
End Sub
GeneralRe: Combo selection Pin
Anybloodyid3-Apr-07 10:18
Anybloodyid3-Apr-07 10:18 
Questionimage comparison Pin
amruta_muley3-Apr-07 7:32
amruta_muley3-Apr-07 7:32 
AnswerRe: image comparison Pin
Dave Kreskowiak3-Apr-07 8:17
mveDave Kreskowiak3-Apr-07 8:17 
Questiontext box control Pin
Esmo20003-Apr-07 6:53
Esmo20003-Apr-07 6:53 
AnswerRe: text box control Pin
Stigmurder3-Apr-07 8:10
Stigmurder3-Apr-07 8:10 
AnswerRe: text box control Pin
Dave Kreskowiak3-Apr-07 8:16
mveDave Kreskowiak3-Apr-07 8:16 
GeneralRe: text box control Pin
Esmo20003-Apr-07 8:25
Esmo20003-Apr-07 8:25 
GeneralRe: text box control Pin
Dave Kreskowiak3-Apr-07 10:07
mveDave Kreskowiak3-Apr-07 10:07 
QuestionOpenURL problem Pin
Huling3-Apr-07 6:11
Huling3-Apr-07 6:11 
AnswerRe: OpenURL problem Pin
Stigmurder3-Apr-07 7:33
Stigmurder3-Apr-07 7:33 
AnswerRe: OpenURL problem Pin
Dave Kreskowiak3-Apr-07 8:15
mveDave Kreskowiak3-Apr-07 8:15 
GeneralRe: OpenURL problem Pin
Huling3-Apr-07 11:03
Huling3-Apr-07 11:03 
GeneralRe: OpenURL problem Pin
Huling3-Apr-07 11:09
Huling3-Apr-07 11:09 
GeneralRe: OpenURL problem Pin
Dave Kreskowiak3-Apr-07 12:08
mveDave Kreskowiak3-Apr-07 12:08 
GeneralRe: OpenURL problem Pin
Huling4-Apr-07 4:48
Huling4-Apr-07 4:48 
QuestionHow can i use DropDownList? Pin
mghiassi3-Apr-07 3:59
mghiassi3-Apr-07 3:59 
Questionproject Documentation(sample) Pin
paranth3-Apr-07 2:31
paranth3-Apr-07 2:31 

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.