Click here to Skip to main content
15,916,702 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Application won't quit Pin
PaleyX21-Jun-04 11:58
PaleyX21-Jun-04 11:58 
QuestionCheck internet connection??? Pin
mythinky17-Jun-04 22:22
mythinky17-Jun-04 22:22 
AnswerRe: Check internet connection??? Pin
Dave Kreskowiak18-Jun-04 3:17
mveDave Kreskowiak18-Jun-04 3:17 
Generalwildcard string searches Pin
dmbf1b517-Jun-04 17:01
dmbf1b517-Jun-04 17:01 
GeneralData form wizard Pin
tabarta17-Jun-04 16:03
tabarta17-Jun-04 16:03 
GeneralRe: Data form wizard Pin
Dave Kreskowiak18-Jun-04 2:51
mveDave Kreskowiak18-Jun-04 2:51 
GeneralRe: Data form wizard Pin
tabarta22-Jun-04 14:37
tabarta22-Jun-04 14:37 
Generalmailto urlencode problem Pin
skoizumi2911017-Jun-04 10:14
sussskoizumi2911017-Jun-04 10:14 
I have hyperlink inside of my body, however whenever I launch outlook in the following way I don't have hyperlink but just simple text. I don't know if it is the function i am using for encoding or just shellexecute doesn't support.

strmail = "mailto:" & URLEncode(strEmailAddress) & "?Subject=" URLEncode(strsubject) & "&Body=" & URLEncode(strBody)

ShellExecute 0, "open", strmail , vbNull, vbNull, SW_SHOWNORMAL

Public Function URLEncode(URL As String) As String
Dim i As Long
For i = 1 To Len(URL)
Select Case Asc(UCase(Mid(URL, i, 1)))
Case Asc("A") To Asc("Z")
URLEncode = URLEncode & Mid(URL, i, 1)
Case Else
URLEncode = URLEncode & "%" & _
Right("00" & Hex(Asc(Mid(URL, i, 1))), 2)
End Select
Next
End Function

After the launching and see the source code I have <> converted to < and >. I think this is problem but i don't know how to fix this.


shin
Questiondeserializing xmlfile to array? Pin
mrdance17-Jun-04 8:14
mrdance17-Jun-04 8:14 
AnswerRe: deserializing xmlfile to array? Pin
Dave Kreskowiak17-Jun-04 8:22
mveDave Kreskowiak17-Jun-04 8:22 
GeneralRe: deserializing xmlfile to array? Pin
mrdance17-Jun-04 8:56
mrdance17-Jun-04 8:56 
GeneralRe: deserializing xmlfile to array? Pin
mrdance17-Jun-04 23:57
mrdance17-Jun-04 23:57 
GeneralRe: deserializing xmlfile to array? Pin
Dave Kreskowiak18-Jun-04 2:49
mveDave Kreskowiak18-Jun-04 2:49 
GeneralRe: deserializing xmlfile to array? Pin
mrdance18-Jun-04 4:55
mrdance18-Jun-04 4:55 
GeneralRe: deserializing xmlfile to array? Pin
Dave Kreskowiak18-Jun-04 12:25
mveDave Kreskowiak18-Jun-04 12:25 
GeneralRe: deserializing xmlfile to array? Pin
mrdance19-Jun-04 12:52
mrdance19-Jun-04 12:52 
GeneralDebugging Problem in Halvorson's Book Pin
tanstaafl2817-Jun-04 7:24
tanstaafl2817-Jun-04 7:24 
GeneralRe: Debugging Problem in Halvorson's Book Pin
Dave Kreskowiak17-Jun-04 7:45
mveDave Kreskowiak17-Jun-04 7:45 
GeneralRe: Debugging Problem in Halvorson's Book Pin
tanstaafl2817-Jun-04 8:38
tanstaafl2817-Jun-04 8:38 
GeneralRe: Debugging Problem in Halvorson's Book Pin
Steven Campbell18-Jun-04 3:18
Steven Campbell18-Jun-04 3:18 
GeneralRe: Debugging Problem in Halvorson's Book Pin
tanstaafl2818-Jun-04 6:35
tanstaafl2818-Jun-04 6:35 
GeneralFTP implementation Pin
hmshmsm17-Jun-04 4:12
hmshmsm17-Jun-04 4:12 
GeneralRe: FTP implementation Pin
Dave Kreskowiak17-Jun-04 4:24
mveDave Kreskowiak17-Jun-04 4:24 
GeneralRe: FTP implementation Pin
Dave Kreskowiak17-Jun-04 4:30
mveDave Kreskowiak17-Jun-04 4:30 
GeneralRe: FTP implementation Pin
hmshmsm17-Jun-04 4:57
hmshmsm17-Jun-04 4:57 

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.