Click here to Skip to main content
15,889,266 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: how to capture mouse events on shapes or graphic objects Pin
eyes200714-Aug-07 4:01
eyes200714-Aug-07 4:01 
GeneralRe: how to capture mouse events on shapes or graphic objects Pin
Taylor Kobani14-Aug-07 4:35
Taylor Kobani14-Aug-07 4:35 
GeneralRe: how to capture mouse events on shapes or graphic objects Pin
eyes200714-Aug-07 4:49
eyes200714-Aug-07 4:49 
GeneralRe: how to capture mouse events on shapes or graphic objects Pin
Richard Blythe14-Aug-07 16:12
Richard Blythe14-Aug-07 16:12 
GeneralRe: how to capture mouse events on shapes or graphic objects Pin
eyes200714-Aug-07 19:43
eyes200714-Aug-07 19:43 
GeneralRe: how to capture mouse events on shapes or graphic objects Pin
Richard Blythe15-Aug-07 6:12
Richard Blythe15-Aug-07 6:12 
QuestionHow can i get IP address of my computer using Vb 6.0 Pin
koolprasad200314-Aug-07 1:52
professionalkoolprasad200314-Aug-07 1:52 
AnswerRe: How can i get IP address of my computer using Vb 6.0 Pin
Froz3n14-Aug-07 1:55
Froz3n14-Aug-07 1:55 
Dim getipaddress As String
Dim xAddr As System.Net.IPAddress
Dim vAddr As String
With System.Net.Dns.GetHostEntry(System.Net.Dns.GetHostName())
xAddr = New System.Net.IPAddress(.AddressList(0).Address)
vAddr = xAddr.ToString
End With
getipaddress = vAddr
MsgBox(getipaddress)

that's the syntax for .net but i'd imagine it would be somewhat similar in 6
GeneralRe: How can i get IP address of my computer using Vb 6.0 Pin
koolprasad200314-Aug-07 2:26
professionalkoolprasad200314-Aug-07 2:26 
GeneralRe: How can i get IP address of my computer using Vb 6.0 Pin
Froz3n14-Aug-07 2:28
Froz3n14-Aug-07 2:28 
GeneralRe: How can i get IP address of my computer using Vb 6.0 Pin
Dave Kreskowiak14-Aug-07 3:12
mveDave Kreskowiak14-Aug-07 3:12 
GeneralRe: How can i get IP address of my computer using Vb 6.0 Pin
Dave Kreskowiak14-Aug-07 3:13
mveDave Kreskowiak14-Aug-07 3:13 
AnswerRe: How can i get IP address of my computer using Vb 6.0 Pin
Taylor Kobani14-Aug-07 3:45
Taylor Kobani14-Aug-07 3:45 
AnswerRe: How can i get IP address of my computer using Vb 6.0 Pin
Vasudevan Deepak Kumar14-Aug-07 5:16
Vasudevan Deepak Kumar14-Aug-07 5:16 
AnswerRe: How can i get IP address of my computer using Vb 6.0 Pin
koolprasad200315-Aug-07 19:46
professionalkoolprasad200315-Aug-07 19:46 
QuestionFormatting Numbers Pin
Froz3n14-Aug-07 1:49
Froz3n14-Aug-07 1:49 
AnswerRe: Formatting Numbers Pin
Tom Deketelaere14-Aug-07 2:10
professionalTom Deketelaere14-Aug-07 2:10 
GeneralRe: Formatting Numbers Pin
Froz3n14-Aug-07 2:14
Froz3n14-Aug-07 2:14 
QuestionI want to compare between the dates something like that Pin
Ahmed El-Badry14-Aug-07 0:09
Ahmed El-Badry14-Aug-07 0:09 
AnswerRe: I want to compare between the dates something like that Pin
Christian Graus14-Aug-07 0:19
protectorChristian Graus14-Aug-07 0:19 
GeneralRe: I want to compare between the dates something like that Pin
jensenx1-Sep-07 19:26
jensenx1-Sep-07 19:26 
QuestionCombobox Value Bound to DB Pin
Trupti Mehta13-Aug-07 23:50
Trupti Mehta13-Aug-07 23:50 
AnswerRe: Combobox Value Bound to DB Pin
i gr814-Aug-07 1:40
i gr814-Aug-07 1:40 
GeneralRe: Combobox Value Bound to DB Pin
Trupti Mehta14-Aug-07 2:14
Trupti Mehta14-Aug-07 2:14 
GeneralRe: Combobox Value Bound to DB Pin
i gr814-Aug-07 2:28
i gr814-Aug-07 2:28 

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.