Click here to Skip to main content
15,915,019 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How can I use a Timer control to test how long it takes for a form to load????? Pin
nlarson118-Nov-06 9:17
nlarson118-Nov-06 9:17 
GeneralRe: How can I use a Timer control to test how long it takes for a form to load????? Pin
Joey Picerno8-Nov-06 9:48
Joey Picerno8-Nov-06 9:48 
QuestionRemove rows from datagridview Pin
cstrader2328-Nov-06 3:53
cstrader2328-Nov-06 3:53 
AnswerRe: Remove rows from datagridview Pin
nlarson118-Nov-06 4:53
nlarson118-Nov-06 4:53 
QuestionAppend IPAddess Pin
MrMacc8-Nov-06 3:28
MrMacc8-Nov-06 3:28 
AnswerRe: Append IPAddess Pin
nlarson118-Nov-06 5:00
nlarson118-Nov-06 5:00 
GeneralRe: Append IPAddess Pin
MrMacc8-Nov-06 5:10
MrMacc8-Nov-06 5:10 
GeneralRe: Append IPAddess Pin
nlarson118-Nov-06 5:29
nlarson118-Nov-06 5:29 
Pass each location into this function and append the result to the filename.

Ex:

Dim sFile as string = "downloadfile.txt"

sFile = Mid(sFile,Instrrev(sFile,".")-1) & "_" & sGetIP("www.yahoo.com") & _
Mid(sFile,Instrrev(sFile,"."))

sFile will equal "doadloadfile_209.73.186.238.txt"

Private Function sGetIP(ByVal sWebSiteName As String) As String
Dim o As System.Net.IPHostEntry = System.Net.Dns.GetHostEntry(sWebSiteName)
Return CType(o.AddressList.GetValue(0), System.Net.IPAddress).ToString.Trim
End Function

QuestionHow to send fax through internet Pin
balamurugan828-Nov-06 3:19
balamurugan828-Nov-06 3:19 
AnswerRe: How to send fax through internet Pin
Guffa8-Nov-06 12:43
Guffa8-Nov-06 12:43 
GeneralRe: How to send fax through internet Pin
Steven J Jowett12-Nov-06 23:41
Steven J Jowett12-Nov-06 23:41 
Question[Message Deleted] Pin
PREMSONBABY8-Nov-06 1:12
PREMSONBABY8-Nov-06 1:12 
AnswerRe: An application is changing my wallpaper Pin
Steven J Jowett8-Nov-06 4:54
Steven J Jowett8-Nov-06 4:54 
QuestionPrint Queue Pin
kRites8-Nov-06 0:59
kRites8-Nov-06 0:59 
AnswerRe: Print Queue Pin
Tim Carmichael8-Nov-06 7:13
Tim Carmichael8-Nov-06 7:13 
GeneralRe: Print Queue Pin
kRites8-Nov-06 21:34
kRites8-Nov-06 21:34 
GeneralRe: Print Queue Pin
Tim Carmichael9-Nov-06 4:32
Tim Carmichael9-Nov-06 4:32 
QuestionLabel Fonts Pin
Pete Newman8-Nov-06 0:44
Pete Newman8-Nov-06 0:44 
AnswerRe: Label Fonts Pin
Tamimi - Code8-Nov-06 0:58
Tamimi - Code8-Nov-06 0:58 
GeneralRe: Label Fonts Pin
Pete Newman8-Nov-06 1:29
Pete Newman8-Nov-06 1:29 
Questionfind listviewitems with keyboard entries Pin
b43r_3oo37-Nov-06 23:56
b43r_3oo37-Nov-06 23:56 
AnswerRe: find listviewitems with keyboard entries Pin
Cristina Rodriguez Garcia8-Nov-06 0:50
Cristina Rodriguez Garcia8-Nov-06 0:50 
GeneralRe: find listviewitems with keyboard entries Pin
b43r_3oo38-Nov-06 0:58
b43r_3oo38-Nov-06 0:58 
QuestionCrystal Reports changing oracle odbc connections at runtime Pin
Cristina Rodriguez Garcia7-Nov-06 23:28
Cristina Rodriguez Garcia7-Nov-06 23:28 
AnswerRe: Crystal Reports changing oracle odbc connections at runtime Pin
Cristina Rodriguez Garcia13-Nov-06 3:01
Cristina Rodriguez Garcia13-Nov-06 3:01 

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.